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.cpp88 const char *function_name = cur->info.function; in IsStackTraceSuppressed() local
89 if (!function_name) { in IsStackTraceSuppressed()
93 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.cpp341 char *function_name = nullptr; in ParseSymbolizePCOutput() local
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()
H A Dsanitizer_symbolizer.cpp86 InternalFree(local.function_name); in Clear()
H A Dsanitizer_symbolizer.h106 char *function_name = nullptr; 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.cpp1032 char function_name[256]; in InternalGetProcAddress() local
1034 if (funtion_name_length >= sizeof(function_name) - 1) in InternalGetProcAddress()
1037 _memcpy(function_name, func, funtion_name_length); in InternalGetProcAddress()
1038 function_name[funtion_name_length] = '\0'; in InternalGetProcAddress()
1039 char* separator = _strchr(function_name, '.'); in InternalGetProcAddress()
1044 void* redirected_module = GetModuleHandleA(function_name); in InternalGetProcAddress()
1073 const char *function_name, uptr new_function, in OverrideImportedFunction() argument
1115 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.cpp146 const char *function_name, in ScriptSummaryFormat() argument
150 if (function_name) in ScriptSummaryFormat()
151 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.h148 #define archive_check_magic(a, expected_magic, allowed_states, function_name) \ argument
151 (allowed_states), (function_name)); \
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h462 InterruptionReport(std::string function_name, std::string description) in InterruptionReport() argument
463 : m_function_name(std::move(function_name)), in InterruptionReport()
468 InterruptionReport(std::string function_name,
472 InterruptionReport(std::string function_name, const char *format, in InterruptionReport() argument
475 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.h385 const char *function_name, StructuredData::ObjectSP extra_args_sp);
390 const char *function_name, in SetBreakpointCommandCallbackFunction() argument
402 virtual bool GetScriptedSummary(const char *function_name, in GetScriptedSummary() argument
413 virtual bool FormatterCallbackFunction(const char *function_name, in FormatterCallbackFunction() argument
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp138 const char *function_name, StructuredData::ObjectSP extra_args_sp) { in SetBreakpointCommandCallbackFunction() argument
141 error = SetBreakpointCommandCallbackFunction(bp_options, function_name, in SetBreakpointCommandCallbackFunction()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h197 bool GetScriptedSummary(const char *function_name, lldb::ValueObjectSP valobj,
202 bool FormatterCallbackFunction(const char *function_name,
262 BreakpointOptions &bp_options, const char *function_name,
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.cpp367 llvm::StringRef function_name(symbol->GetName().GetCString()); in GetStepThroughTrampolinePlan() local
376 function_name.starts_with("std::__1::function<"); in GetStepThroughTrampolinePlan()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp1315 ConstString function_name; in PrepareForExecution() local
1320 if (!FindFunctionInModule(function_name, llvm_module_up.get(), in PrepareForExecution()
1327 LLDB_LOGF(log, "Found function %s for %s", function_name.AsCString(), in PrepareForExecution()
1365 function_name, exe_ctx.GetTargetSP(), sc, in PrepareForExecution()
1377 function_name.AsCString()); in PrepareForExecution()
1441 function_name.AsCString()); in PrepareForExecution()
/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.cpp1620 const char *function_name = type_name.AsCString(); in AddSummary() local
1622 if (interpreter && !interpreter->CheckObjectExists(function_name)) { in AddSummary()
1626 function_name); in AddSummary()
2361 const char *function_name = type_name.AsCString(); in AddSynth() local
2363 if (interpreter && !interpreter->CheckObjectExists(function_name)) { in AddSynth()
2367 function_name); in AddSynth()
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_report.cpp225 !(local.function_name && internal_strlen(local.function_name)) && in PrintStackAllocations()
271 local_beg, local_end, local.function_name, location.data()); in PrintStackAllocations()

12