Home
last modified time | relevance | path

Searched refs:internal_strcmp (Results 1 – 25 of 36) sorted by relevance

12

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_printer.cpp82 if (!internal_strcmp(function, "__libc_mutex_init")) in DemangleFunctionName()
84 if (!internal_strcmp(function, "__libc_mutex_lock")) in DemangleFunctionName()
98 if (!internal_strcmp(function, "__libc_cond_init")) in DemangleFunctionName()
100 if (!internal_strcmp(function, "__libc_cond_signal")) in DemangleFunctionName()
104 if (!internal_strcmp(function, "__libc_cond_wait")) in DemangleFunctionName()
132 if (!internal_strcmp(function, "__libc_thr_once")) in DemangleFunctionName()
134 if (!internal_strcmp(function, "__libc_thr_self")) in DemangleFunctionName()
136 if (!internal_strcmp(function, "__libc_thr_exit")) in DemangleFunctionName()
140 if (!internal_strcmp(function, "__libc_thr_equal")) in DemangleFunctionName()
178 if (0 == internal_strcmp(format, "DEFAULT")) in RenderFrame()
[all …]
H A Dsanitizer_flag_parser.h55 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 Dsanitizer_symbolizer_posix_libcdep.cpp295 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 Dsanitizer_symbolizer.cpp112 if (last_match_ && !internal_strcmp(last_match_, str)) in GetOwnedCopy()
118 if (!internal_strcmp(storage_[i], str)) { in GetOwnedCopy()
H A Dsanitizer_suppressions.cpp99 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 Dsanitizer_file.cpp111 if (!path || internal_strcmp(path, "stderr") == 0) { in SetReportPath()
113 } else if (internal_strcmp(path, "stdout") == 0) { in SetReportPath()
H A Dsanitizer_symbolizer_libcdep.cpp367 if (0 == internal_strcmp(info->function, "??")) { in ParseSymbolizePCOutput()
371 if (info->file && 0 == internal_strcmp(info->file, "??")) { in ParseSymbolizePCOutput()
490 return !internal_strcmp(ProcessName, SymbolizerName); in IsSameModule()
H A Dsanitizer_symbolizer_report.cpp92 return internal_strcmp(flag, "always") == 0 || in ColorizeReports()
93 (internal_strcmp(flag, "auto") == 0 && ReportSupportsColors()); in ColorizeReports()
H A Dsanitizer_libc.h56 int internal_strcmp(const char *s1, const char *s2);
H A Dsanitizer_libignore.cpp64 internal_strcmp(lib->real_name, mod.full_name()) == 0)) in OnLibraryLoaded()
H A Dsanitizer_symbolizer_markup.cpp81 internal_strcmp(module.full_name(), renderedModule.full_name) == 0; in ModulesEq()
H A Dsanitizer_flag_parser.cpp168 if (internal_strcmp(name, flags_[i].name) == 0) in run_handler()
H A Dsanitizer_libc.cpp125 int internal_strcmp(const char *s1, const char *s2) { in internal_strcmp() function
H A Dsanitizer_procmaps_mac.cpp439 0 == internal_strcmp(segment.filename, modules->back().full_name())) { in DumpListOfModules()
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_log_interface.cpp73 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 Dxray_fdr_logging.cpp194 DCHECK(internal_strcmp(__xray_log_get_current_mode(), "xray-fdr") == 0); in fdrIterator()
745 !internal_strcmp(flags()->xray_mode, "xray-fdr")) { in fdrLogDynamicInitializer()
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_suppressions.cpp114 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 Dtsan_rtl_report.cpp64 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 DFuzzerInterceptors.cpp87 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 Dhwasan_globals.cpp71 internal_strcmp(name, "LLVM") != 0) { in HwasanGlobalsFor()
/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.cpp155 if (internal_strcmp(SrcModule, DstModule)) in __ubsan_handle_cfi_bad_type()
H A Dubsan_type_hash_itanium.cpp278 TI2->name()[0] != '*' && !internal_strcmp(TI1->name(), TI2->name()); in checkTypeInfoEquality()
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_linux.cpp145 if (internal_strcmp(info->dlpi_name, "[vdso]") == 0) in FindFirstDSOCallback()
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common_mac.cpp156 if (!internal_strcmp(range.name, name)) continue; in ProcessGlobalRegions()
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cpp282 internal_strcmp(segment.filename, "[heap]") == 0) && in InitDataSeg()

12