Home
last modified time | relevance | path

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

/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/
H A Dxray_log_interface.cc39 struct ModeImpl { struct
40 ModeImpl *Next; argument
45 static ModeImpl SentinelModeImpl{
47 static ModeImpl *ModeImpls = &SentinelModeImpl;
48 static const ModeImpl *CurrentMode = nullptr;
73 for (ModeImpl *it = ModeImpls; it != &SentinelModeImpl; it = it->Next) { in __xray_log_register_mode()
77 auto *NewModeImpl = static_cast<ModeImpl *>(InternalAlloc(sizeof(ModeImpl))); in __xray_log_register_mode()
88 for (ModeImpl *it = ModeImpls; it != &SentinelModeImpl; it = it->Next) { in __xray_log_select_mode()