/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_suppressions.cpp | 87 const char *function_name = cur->info.function; in IsStackTraceSuppressed() local 88 if (!function_name) { in IsStackTraceSuppressed() 92 if (suppression_ctx->Match(function_name, kInterceptorViaFunction, in IsStackTraceSuppressed()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_win_dll_thunk.h | 56 static const char function_name[] = #name; \ 57 for (const char* ptr = &function_name[0]; *ptr; ++ptr) \ 71 static const char function_name[] = #name; \ 72 for (const char* ptr = &function_name[0]; *ptr; ++ptr) \
|
H A D | sanitizer_symbolizer_libcdep.cpp | 241 // <function_name> 243 // <function_name> in ReachedEndOfOutput() 333 // <function_name> in ParseSymbolizePCOutput() 341 char *function_name = nullptr; in ParseSymbolizePCOutput() 342 str = ExtractToken(str, "\n", &function_name); in ParseSymbolizePCOutput() 343 CHECK(function_name); in ParseSymbolizePCOutput() 344 if (function_name[0] == '\0') { in ParseSymbolizePCOutput() 346 InternalFree(function_name); in ParseSymbolizePCOutput() 362 info->function = function_name; in ParseSymbolizePCOutput() 402 str = ExtractToken(str, "\n", &local.function_name); in ParseSymbolizeFrameOutput() 331 char *function_name = nullptr; ParseSymbolizePCOutput() local [all...] |
H A D | sanitizer_symbolizer.cpp | 86 InternalFree(local.function_name); in Clear()
|
H A D | sanitizer_symbolizer.h | 106 char *function_name = nullptr; 86 char *function_name = nullptr; global() member
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_symbolize.cpp | 62 static void AddFrame(void *ctx, const char *function_name, const char *file, in AddFrame() argument 72 if (function_name) { in AddFrame() 73 info->function = internal_strdup(function_name); in AddFrame()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | StackFrameRecognizer.cpp | 111 ConstString function_name = symctx.GetFunctionName(); in GetRecognizerForFrame() local 132 if (!llvm::is_contained(entry.symbols, function_name)) in GetRecognizerForFrame() 136 if (!entry.symbol_regexp->Execute(function_name.GetStringRef())) in GetRecognizerForFrame()
|
H A D | ThreadPlanStepInRange.cpp | 387 const char *function_name = sc.GetFunctionName().AsCString(); in DefaultShouldStopHereCallback() local 389 if (function_name == nullptr) in DefaultShouldStopHereCallback() 391 else if (strstr(function_name, target_name) == nullptr) in DefaultShouldStopHereCallback()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/interception/ |
H A D | interception_win.cpp | 1041 char function_name[256]; in InternalGetProcAddress() local 1043 if (funtion_name_length >= sizeof(function_name) - 1) in InternalGetProcAddress() 1046 _memcpy(function_name, func, funtion_name_length); in InternalGetProcAddress() 1047 function_name[funtion_name_length] = '\0'; in InternalGetProcAddress() 1048 char* separator = _strchr(function_name, '.'); in InternalGetProcAddress() 1053 void* redirected_module = GetModuleHandleA(function_name); in InternalGetProcAddress() 1082 const char *function_name, uptr new_function, in OverrideImportedFunction() argument 1124 if (strcmp(funcname, function_name) == 0) in OverrideImportedFunction()
|
H A D | interception_win.h | 41 const char *function_name, uptr new_function,
|
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
H A D | TypeSummary.cpp | 149 const char *function_name, in ScriptSummaryFormat() argument 153 if (function_name) in ScriptSummaryFormat() 154 m_function_name.assign(function_name); in ScriptSummaryFormat()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
H A D | TypeSummary.h | 358 const char *function_name, 367 void SetFunctionName(const char *function_name) { in SetFunctionName() 368 if (function_name) in SetFunctionName() 369 m_function_name.assign(function_name); in SetFunctionName()
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_private.h | 150 #define archive_check_magic(a, expected_magic, allowed_states, function_name) \ argument 153 (allowed_states), (function_name)); \
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | Debugger.h | 455 InterruptionReport(std::string function_name, std::string description) in InterruptionReport() argument 456 : m_function_name(std::move(function_name)), in InterruptionReport() 461 InterruptionReport(std::string function_name, 465 InterruptionReport(std::string function_name, const char *format, in InterruptionReport() argument 468 function_name, in InterruptionReport()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | source_location | 23 constexpr const char* function_name() const noexcept; 76 _LIBCPP_HIDE_FROM_ABI constexpr const char* function_name() const noexcept {
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | ScriptInterpreter.h | 343 const char *function_name, StructuredData::ObjectSP extra_args_sp); 348 const char *function_name, in SetBreakpointCommandCallbackFunction() argument 360 virtual bool GetScriptedSummary(const char *function_name, in GetScriptedSummary() argument 371 virtual bool FormatterCallbackFunction(const char *function_name, in FormatterCallbackFunction() argument
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | ScriptInterpreter.cpp | 154 const char *function_name, StructuredData::ObjectSP extra_args_sp) { in SetBreakpointCommandCallbackFunction() argument 157 error = SetBreakpointCommandCallbackFunction(bp_options, function_name, in SetBreakpointCommandCallbackFunction()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
H A D | ScriptInterpreterPythonImpl.h | 185 bool GetScriptedSummary(const char *function_name, lldb::ValueObjectSP valobj, 190 bool FormatterCallbackFunction(const char *function_name, 264 BreakpointOptions &bp_options, const char *function_name,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ |
H A D | CPPLanguageRuntime.cpp | 368 llvm::StringRef function_name(symbol->GetName().GetCString()); in GetStepThroughTrampolinePlan() local 377 function_name.starts_with("std::__1::function<"); in GetStepThroughTrampolinePlan()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangExpressionParser.cpp | 1318 ConstString function_name; in DoPrepareForExecution() local 1323 if (!FindFunctionInModule(function_name, llvm_module_up.get(), in DoPrepareForExecution() 1330 LLDB_LOGF(log, "Found function %s for %s", function_name.AsCString(), in DoPrepareForExecution() 1368 function_name, exe_ctx.GetTargetSP(), sc, in DoPrepareForExecution() 1380 function_name.AsCString()); in DoPrepareForExecution() 1444 function_name.AsCString()); in DoPrepareForExecution()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/ |
H A D | ScriptInterpreterLua.h | 99 BreakpointOptions &bp_options, const char *function_name,
|
H A D | ScriptInterpreterLua.cpp | 343 BreakpointOptions &bp_options, const char *function_name, in SetBreakpointCommandCallbackFunction() argument 346 std::string oneliner = llvm::formatv(fmt_str, function_name).str(); in SetBreakpointCommandCallbackFunction()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | Module.cpp | 733 ConstString function_name, LanguageType language_type) const { in NameMatchesLookupInfo() argument 735 if (!function_name) in NameMatchesLookupInfo() 739 if (m_name == function_name) in NameMatchesLookupInfo() 748 Mangled::GetManglingScheme(function_name) != Mangled::eManglingSchemeNone; in NameMatchesLookupInfo() 749 ConstString demangled_function_name = function_name; in NameMatchesLookupInfo() 751 Mangled mangled_function_name(function_name); in NameMatchesLookupInfo()
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectType.cpp | 1587 const char *function_name = type_name.AsCString(); in AddSummary() local 1589 if (interpreter && !interpreter->CheckObjectExists(function_name)) { in AddSummary() 1593 function_name); in AddSummary() 2248 const char *function_name = type_name.AsCString(); in AddSynth() local 2250 if (interpreter && !interpreter->CheckObjectExists(function_name)) { in AddSynth() 2254 function_name); in AddSynth()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_report.cpp | 228 !(local.function_name && internal_strlen(local.function_name)) && in PrintStackAllocations() 310 best_beg + local.size, local.function_name, location.data()); in PrintStackAllocations()
|