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

References

projects/compiler-rt/include/xray/xray_log_interface.h
  231 XRayLogRegisterStatus __xray_log_register_mode(const char *Mode,
  244 XRayLogRegisterStatus __xray_log_select_mode(const char *Mode);
projects/compiler-rt/lib/xray/xray_basic_logging.cpp
  472   auto RegistrationResult = __xray_log_register_mode("xray-basic", Impl);
  473   if (RegistrationResult != XRayLogRegisterStatus::XRAY_REGISTRATION_OK &&
  479     auto SelectResult = __xray_log_select_mode("xray-basic");
  480     if (SelectResult != XRayLogRegisterStatus::XRAY_REGISTRATION_OK) {
projects/compiler-rt/lib/xray/xray_fdr_logging.cpp
  734   auto RegistrationResult = __xray_log_register_mode("xray-fdr", Impl);
  735   if (RegistrationResult != XRayLogRegisterStatus::XRAY_REGISTRATION_OK &&
  744     auto SelectResult = __xray_log_select_mode("xray-fdr");
  745     if (SelectResult != XRayLogRegisterStatus::XRAY_REGISTRATION_OK &&
projects/compiler-rt/lib/xray/xray_log_interface.cpp
   63 XRayLogRegisterStatus
   68     return XRayLogRegisterStatus::XRAY_INCOMPLETE_IMPL;
   74       return XRayLogRegisterStatus::XRAY_DUPLICATE_MODE;
   81   return XRayLogRegisterStatus::XRAY_REGISTRATION_OK;
   84 XRayLogRegisterStatus
   93       return XRayLogRegisterStatus::XRAY_REGISTRATION_OK;
   96   return XRayLogRegisterStatus::XRAY_MODE_NOT_FOUND;
projects/compiler-rt/lib/xray/xray_profiling.cpp
  503   auto RegistrationResult = __xray_log_register_mode("xray-profiling", Impl);
  504   if (RegistrationResult != XRayLogRegisterStatus::XRAY_REGISTRATION_OK) {