Home
last modified time | relevance | path

Searched refs:function_name (Results 1 – 25 of 35) sorted by relevance

12

/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_suppressions.cpp87 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 Dsanitizer_win_dll_thunk.h56 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 Dsanitizer_symbolizer_libcdep.cpp241 // <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 Dsanitizer_symbolizer.cpp86 InternalFree(local.function_name); in Clear()
H A Dsanitizer_symbolizer.h106 char *function_name = nullptr;
86 char *function_name = nullptr; global() member
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize.cpp62 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 DStackFrameRecognizer.cpp111 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 DThreadPlanStepInRange.cpp387 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 Dinterception_win.cpp1041 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 Dinterception_win.h41 const char *function_name, uptr new_function,
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeSummary.cpp149 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 DTypeSummary.h358 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 Darchive_private.h150 #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 DDebugger.h455 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 Dsource_location23 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 DScriptInterpreter.h343 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 DScriptInterpreter.cpp154 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 DScriptInterpreterPythonImpl.h185 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 DCPPLanguageRuntime.cpp368 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 DClangExpressionParser.cpp1318 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 DScriptInterpreterLua.h99 BreakpointOptions &bp_options, const char *function_name,
H A DScriptInterpreterLua.cpp343 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 DModule.cpp733 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 DCommandObjectType.cpp1587 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 Dhwasan_report.cpp228 !(local.function_name && internal_strlen(local.function_name)) && in PrintStackAllocations()
310 best_beg + local.size, local.function_name, location.data()); in PrintStackAllocations()

12