Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_log_interface.cpp38 struct ModeImpl { struct
39 ModeImpl *Next; argument
44 static ModeImpl SentinelModeImpl{
46 static ModeImpl *ModeImpls = &SentinelModeImpl;
47 static const ModeImpl *CurrentMode = nullptr;
72 for (ModeImpl *it = ModeImpls; it != &SentinelModeImpl; it = it->Next) { in __xray_log_register_mode()
76 auto *NewModeImpl = static_cast<ModeImpl *>(InternalAlloc(sizeof(ModeImpl))); in __xray_log_register_mode()
87 for (ModeImpl *it = ModeImpls; it != &SentinelModeImpl; it = it->Next) { in __xray_log_select_mode()