Home
last modified time | relevance | path

Searched refs:_format (Results 1 – 3 of 3) sorted by relevance

/xnu-12377.81.4/bsd/netinet6/
H A Desp.h103 #define ESP_ASSERT(_cond, _format, ...) \ argument
106 panic("%s:%d " _format, __FUNCTION__, __LINE__, ##__VA_ARGS__); \
112 #define _esp_log(_level, _format, ...) \ argument
113 log(_level, "%s:%d " _format, __FUNCTION__, __LINE__, ##__VA_ARGS__)
114 #define esp_log_err(_format, ...) _esp_log(LOG_ERR, _format, ##__VA_ARGS__) argument
115 #define esp_log_default(_format, ...) _esp_log(LOG_NOTICE, _format, ##__VA_ARGS__) argument
116 #define esp_log_info(_format, ...) _esp_log(LOG_INFO, _format, ##__VA_ARGS__) argument
118 #define _esp_packet_log(_level, _format, ...) \ argument
119 ipseclog((_level, "%s:%d " _format, __FUNCTION__, __LINE__, ##__VA_ARGS__))
120 #define esp_packet_log_err(_format, ...) _esp_packet_log(LOG_ERR, _format, ##__VA_ARGS__) argument
/xnu-12377.81.4/iokit/Kernel/
H A DIONVRAM.cpp1499 version = OSNumber::withNumber(_format->getVersion(), 32); in start()
1502 if (_format->getSystemUsed()) { in start()
1505 …if (!_systemService || !_systemService->init(gAppleSystemVariableGuid, _format->getSystemPartition… in start()
1530 …if (!_commonService || !_commonService->init(gAppleNVRAMGuid, _format->getSystemPartitionActive())… in start()
1596 _format = IONVRAMV3Handler::init(this, image, size); in initImageFormat()
1597 require_action(_format, skip, panic("IONVRAMV3Handler creation failed\n")); in initImageFormat()
1599 _format = IONVRAMCHRPHandler::init(this, image, size); in initImageFormat()
1600 require_action(_format, skip, panic("IONVRAMCHRPHandler creation failed\n")); in initImageFormat()
1603 status = _format->unserializeVariables(); in initImageFormat()
1606 status = _format->getVarDict(localVariables); in initImageFormat()
[all …]
/xnu-12377.81.4/iokit/IOKit/
H A DIONVRAM.h90 IODTNVRAMFormatHandler *_format; variable