/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_stacktrace_printer.cpp | 82 if (!internal_strcmp(function, "__libc_mutex_init")) in DemangleFunctionName() 84 if (!internal_strcmp(function, "__libc_mutex_lock")) in DemangleFunctionName() 86 if (!internal_strcmp(function, "__libc_mutex_trylock")) in DemangleFunctionName() 88 if (!internal_strcmp(function, "__libc_mutex_unlock")) in DemangleFunctionName() 90 if (!internal_strcmp(function, "__libc_mutex_destroy")) in DemangleFunctionName() 92 if (!internal_strcmp(function, "__libc_mutexattr_init")) in DemangleFunctionName() 94 if (!internal_strcmp(function, "__libc_mutexattr_settype")) in DemangleFunctionName() 96 if (!internal_strcmp(function, "__libc_mutexattr_destroy")) in DemangleFunctionName() 98 if (!internal_strcmp(function, "__libc_cond_init")) in DemangleFunctionName() 100 if (!internal_strcmp(function, "__libc_cond_signal")) in DemangleFunctionName() [all …]
|
H A D | sanitizer_flag_parser.h | 55 if (internal_strcmp(value, "0") == 0 || in ParseBool() 56 internal_strcmp(value, "no") == 0 || in ParseBool() 57 internal_strcmp(value, "false") == 0) { in ParseBool() 61 if (internal_strcmp(value, "1") == 0 || in ParseBool() 62 internal_strcmp(value, "yes") == 0 || in ParseBool() 63 internal_strcmp(value, "true") == 0) { in ParseBool() 89 if (internal_strcmp(value, "2") == 0 || in Parse() 90 internal_strcmp(value, "exclusive") == 0) { in Parse()
|
H A D | sanitizer_symbolizer.cpp | 112 if (last_match_ && !internal_strcmp(last_match_, str)) in GetOwnedCopy() 118 if (!internal_strcmp(storage_[i], str)) { in GetOwnedCopy()
|
H A D | sanitizer_symbolizer_posix_libcdep.cpp | 295 internal_strcmp(module_name, addr2line_pool_[i]->module_name())) { in SendCommand() 305 CHECK_EQ(0, internal_strcmp(module_name, addr2line->module_name())); in SendCommand() 427 } else if (!internal_strcmp(binary_name, "atos")) { in ChooseExternalSymbolizer() 435 } else if (!internal_strcmp(binary_name, "addr2line")) { in ChooseExternalSymbolizer()
|
H A D | sanitizer_suppressions.cpp | 99 if (0 == internal_strcmp(cur.type, type) && TemplateMatch(cur.templ, str)) { in Match() 167 if (0 == internal_strcmp(type, suppression_types_[i])) in HasSuppressionType()
|
H A D | sanitizer_file.cpp | 113 if (!path || internal_strcmp(path, "stderr") == 0) { in SetReportPath() 115 } else if (internal_strcmp(path, "stdout") == 0) { in SetReportPath()
|
H A D | sanitizer_symbolizer_libcdep.cpp | 367 if (0 == internal_strcmp(info->function, "??")) { 371 if (info->file && 0 == internal_strcmp(info->file, "??")) { 490 return !internal_strcmp(ProcessName, SymbolizerName); in SendCommand()
|
H A D | sanitizer_symbolizer_report.cpp | 96 return internal_strcmp(flag, "always") == 0 || in ColorizeReports() 97 (internal_strcmp(flag, "auto") == 0 && ReportSupportsColors()); in ColorizeReports()
|
H A D | sanitizer_libc.h | 56 int internal_strcmp(const char *s1, const char *s2);
|
H A D | sanitizer_libignore.cpp | 64 internal_strcmp(lib->real_name, mod.full_name()) == 0)) in OnLibraryLoaded()
|
H A D | sanitizer_symbolizer_markup.cpp | 81 internal_strcmp(module.full_name(), renderedModule.full_name) == 0; in ModulesEq()
|
H A D | sanitizer_flag_parser.cpp | 168 if (internal_strcmp(name, flags_[i].name) == 0) in run_handler()
|
H A D | sanitizer_libc.cpp | 125 int internal_strcmp(const char *s1, const char *s2) { in internal_strcmp() function
|
H A D | sanitizer_procmaps_mac.cpp | 439 0 == internal_strcmp(segment.filename, modules->back().full_name())) { in DumpListOfModules()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/ |
H A D | xray_log_interface.cpp | 73 if (!internal_strcmp(Mode, it->Mode)) in __xray_log_register_mode() 88 if (!internal_strcmp(Mode, it->Mode)) { in __xray_log_select_mode() 149 if (CurrentMode == nullptr || internal_strcmp(CurrentMode->Mode, Mode) != 0) in __xray_log_init_mode() 170 if (CurrentMode == nullptr || internal_strcmp(CurrentMode->Mode, Mode) != 0) in __xray_log_init_mode_bin()
|
H A D | xray_fdr_logging.cpp | 189 DCHECK(internal_strcmp(__xray_log_get_current_mode(), "xray-fdr") == 0); in fdrIterator() 740 !internal_strcmp(flags()->xray_mode, "xray-fdr")) { in fdrLogDynamicInitializer()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_suppressions.cpp | 114 if (0 == internal_strcmp(stype, kSuppressionNone)) in IsSuppressed() 122 if (0 == internal_strcmp(stype, kSuppressionRace) && stack->frames != nullptr) in IsSuppressed() 133 if (0 == internal_strcmp(stype, kSuppressionNone)) in IsSuppressed()
|
H A D | tsan_rtl_report.cpp | 64 if (last2 && 0 == internal_strcmp(last2, "main")) { in StackStripMain() 68 } else if (last && 0 == internal_strcmp(last, "__tsan_thread_start_func")) { in StackStripMain() 72 } else if (last && (0 == internal_strcmp(last, "__do_global_ctors_aux") || in StackStripMain() 73 0 == internal_strcmp(last, "__libc_csu_init") || in StackStripMain() 74 0 == internal_strcmp(last, "__libc_start_main"))) { in StackStripMain()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerInterceptors.cpp | 87 static int internal_strcmp(const char *s1, const char *s2) { in internal_strcmp() function 177 return internal_strcmp(s1, s2); in strcmp()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_globals.cpp | 71 internal_strcmp(name, "LLVM") != 0) { in HwasanGlobalsFor()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/ |
H A D | ubsan_handlers_cxx.cpp | 155 if (internal_strcmp(SrcModule, DstModule)) in __ubsan_handle_cfi_bad_type()
|
H A D | ubsan_type_hash_itanium.cpp | 278 TI2->name()[0] != '*' && !internal_strcmp(TI1->name(), TI2->name()); in checkTypeInfoEquality()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_linux.cpp | 138 if (internal_strcmp(info->dlpi_name, "[vdso]") == 0) in FindFirstDSOCallback()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/ |
H A D | lsan_common_mac.cpp | 156 if (!internal_strcmp(range.name, name)) continue; in ProcessGlobalRegions()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/dd/ |
H A D | dd_interceptors.cpp | 282 internal_strcmp(segment.filename, "[heap]") == 0) && in InitDataSeg()
|