Home
last modified time | relevance | path

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

/xnu-10063.141.1/bsd/netinet6/
H A Desp.h101 #define ESP_ASSERT(_cond, _format, ...) \ argument
104 panic("%s:%d " _format, __FUNCTION__, __LINE__, ##__VA_ARGS__); \
110 #define _esp_log(_level, _format, ...) \ argument
111 log(_level, "%s:%d " _format, __FUNCTION__, __LINE__, ##__VA_ARGS__)
112 #define esp_log_err(_format, ...) _esp_log(LOG_ERR, _format, ##__VA_ARGS__) argument
113 #define esp_log_default(_format, ...) _esp_log(LOG_NOTICE, _format, ##__VA_ARGS__) argument
114 #define esp_log_info(_format, ...) _esp_log(LOG_INFO, _format, ##__VA_ARGS__) argument
116 #define _esp_packet_log(_level, _format, ...) \ argument
117 ipseclog((_level, "%s:%d " _format, __FUNCTION__, __LINE__, ##__VA_ARGS__))
118 #define esp_packet_log_err(_format, ...) _esp_packet_log(LOG_ERR, _format, ##__VA_ARGS__) argument
/xnu-10063.141.1/iokit/Kernel/
H A DIONVRAM.cpp1350 version = OSNumber::withNumber(_format->getVersion(), 32); in start()
1353 if (_format->getSystemUsed()) { in start()
1356 …if (!_systemService || !_systemService->init(gAppleSystemVariableGuid, _format->getSystemPartition… in start()
1381 …if (!_commonService || !_commonService->init(gAppleNVRAMGuid, _format->getSystemPartitionActive())… in start()
1445 _format = IONVRAMV3Handler::init(this, image, size, _varDict); in initImageFormat()
1446 require_action(_format, skip, panic("IONVRAMV3Handler creation failed\n")); in initImageFormat()
1448 _format = IONVRAMCHRPHandler::init(this, image, size, _varDict); in initImageFormat()
1449 require_action(_format, skip, panic("IONVRAMCHRPHandler creation failed\n")); in initImageFormat()
1452 _format->unserializeVariables(); in initImageFormat()
1474 _format->setController(controller); in registerNVRAMController()
[all …]
/xnu-10063.141.1/iokit/IOKit/
H A DIONVRAM.h90 IODTNVRAMFormatHandler *_format; variable