reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/xray/xray_log_interface.cpp
   39   ModeImpl *Next;
   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) {
   76   auto *NewModeImpl = static_cast<ModeImpl *>(InternalAlloc(sizeof(ModeImpl)));
   76   auto *NewModeImpl = static_cast<ModeImpl *>(InternalAlloc(sizeof(ModeImpl)));
   87   for (ModeImpl *it = ModeImpls; it != &SentinelModeImpl; it = it->Next) {