Home
last modified time | relevance | path

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

/xnu-8796.141.3/bsd/netinet6/
H A Desp_chachapoly.c73 #define ESP_ASSERT(_cond, _format, ...) … argument
76 panic("%s:%d " _format, __FUNCTION__, __LINE__, ##__VA_ARGS__); \
82 #define _esp_log(_level, _format, ...) \ argument
83 log(_level, "%s:%d " _format, __FUNCTION__, __LINE__, ##__VA_ARGS__)
84 #define esp_log_err(_format, ...) _esp_log(LOG_ERR, _format, ##__VA_ARGS__) argument
85 #define esp_log_default(_format, ...) _esp_log(LOG_NOTICE, _format, ##__VA_ARGS__) argument
87 #define _esp_packet_log(_level, _format, ...) \ argument
88 ipseclog((_level, "%s:%d " _format, __FUNCTION__, __LINE__, ##__VA_ARGS__))
89 #define esp_packet_log_err(_format, ...) _esp_packet_log(LOG_ERR, _format, ##__VA_ARGS__) argument
/xnu-8796.141.3/iokit/Kernel/
H A DIONVRAM.cpp1282 version = OSNumber::withNumber(_format->getVersion(), 32); in start()
1285 if (_format->getSystemUsed()) { in start()
1288 …if (!_systemService || !_systemService->init(gAppleSystemVariableGuid, _format->getSystemPartition… in start()
1313 …if (!_commonService || !_commonService->init(gAppleNVRAMGuid, _format->getSystemPartitionActive())… in start()
1376 _format = IONVRAMV3Handler::init(this, image, size, _varDict); in initImageFormat()
1377 require_action(_format, skip, panic("IONVRAMV3Handler creation failed\n")); in initImageFormat()
1379 _format = IONVRAMCHRPHandler::init(this, image, size, _varDict); in initImageFormat()
1380 require_action(_format, skip, panic("IONVRAMCHRPHandler creation failed\n")); in initImageFormat()
1383 _format->unserializeVariables(); in initImageFormat()
1405 _format->setController(controller); in registerNVRAMController()
[all …]
/xnu-8796.141.3/iokit/IOKit/
H A DIONVRAM.h90 IODTNVRAMFormatHandler *_format; variable