Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/compiler-rt/lib/rtsan/
H A Drtsan_suppressions.cpp84 const char *function_name = cur->info.function; in IsStackTraceSuppressed() local
85 if (!function_name) in IsStackTraceSuppressed()
89 if (suppression_ctx->Match(function_name, call_stack_flag, &s)) in IsStackTraceSuppressed()
96 bool __rtsan::IsFunctionSuppressed(const char *function_name) { in IsFunctionSuppressed() argument
106 return suppression_ctx->Match(function_name, flag_name, &s); in IsFunctionSuppressed()
H A Drtsan_suppressions.h21 bool IsFunctionSuppressed(const char *function_name);
/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/compiler-rt/lib/asan/
H A Dasan_suppressions.cpp75 const char *function_name = cur->info.function; in IsAddrSuppressed() local
76 if (!function_name) { in IsAddrSuppressed()
81 if (suppression_ctx->Match(function_name, suppression, &s)) { in IsAddrSuppressed()
/freebsd/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception_win.cpp1323 char function_name[256]; in InternalGetProcAddress() local
1325 if (funtion_name_length >= sizeof(function_name) - 1) { in InternalGetProcAddress()
1330 _memcpy(function_name, func, funtion_name_length); in InternalGetProcAddress()
1331 function_name[funtion_name_length] = '\0'; in InternalGetProcAddress()
1332 char* separator = _strchr(function_name, '.'); in InternalGetProcAddress()
1335 function_name); in InternalGetProcAddress()
1340 void* redirected_module = GetModuleHandleA(function_name); in InternalGetProcAddress()
1343 function_name); in InternalGetProcAddress()
1385 const char *function_name, uptr new_function, in OverrideImportedFunction() argument
1427 if (_strcmp(funcname, function_name) == 0) in OverrideImportedFunction()
H A Dinterception_win.h41 const char *function_name, uptr new_function,
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_libcdep.cpp346 char *function_name = nullptr; in ParseSymbolizePCOutput() local
347 str = ExtractToken(str, "\n", &function_name); in ParseSymbolizePCOutput()
348 CHECK(function_name); in ParseSymbolizePCOutput()
349 if (function_name[0] == '\0') { in ParseSymbolizePCOutput()
351 InternalFree(function_name); in ParseSymbolizePCOutput()
367 info->function = function_name; in ParseSymbolizePCOutput()
407 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/lldb/source/DataFormatters/
H A DTypeSummary.cpp173 const char *function_name, in ScriptSummaryFormat() argument
179 if (function_name) { in ScriptSummaryFormat()
180 m_function_name.assign(function_name); in ScriptSummaryFormat()
181 m_script_formatter_name = function_name; in ScriptSummaryFormat()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStackFrameRecognizer.cpp167 ConstString function_name = symctx.GetFunctionName(entry.symbol_mangling); in GetRecognizerForFrame() local
170 if (!llvm::is_contained(entry.symbols, function_name)) in GetRecognizerForFrame()
174 if (!entry.symbol_regexp->Execute(function_name.GetStringRef())) in GetRecognizerForFrame()
H A DThreadPlanStepInRange.cpp388 const char *function_name = sc.GetFunctionName().AsCString(); in DefaultShouldStopHereCallback() local
390 if (function_name == nullptr) in DefaultShouldStopHereCallback()
392 else if (strstr(function_name, target_name) == nullptr) in DefaultShouldStopHereCallback()
/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/DataFormatters/
H A DTypeSummary.h383 const char *function_name,
393 void SetFunctionName(const char *function_name) { in SetFunctionName()
394 if (function_name) in SetFunctionName()
395 m_function_name.assign(function_name); in SetFunctionName()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h467 InterruptionReport(std::string function_name, std::string description) in InterruptionReport() argument
468 : m_function_name(std::move(function_name)), in InterruptionReport()
473 InterruptionReport(std::string function_name,
477 InterruptionReport(std::string function_name, const char *format, in InterruptionReport() argument
480 function_name, in InterruptionReport()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dsource_location23 constexpr const char* function_name() const noexcept;
79 _LIBCPP_HIDE_FROM_ABI constexpr const char* function_name() const noexcept {
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h325 const char *function_name, StructuredData::ObjectSP extra_args_sp);
330 const char *function_name, in SetBreakpointCommandCallbackFunction() argument
340 virtual bool GetScriptedSummary(const char *function_name, in GetScriptedSummary() argument
351 virtual bool FormatterCallbackFunction(const char *function_name, in FormatterCallbackFunction() argument
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp159 const char *function_name, StructuredData::ObjectSP extra_args_sp) { in SetBreakpointCommandCallbackFunction() argument
162 error = SetBreakpointCommandCallbackFunction(bp_options, function_name, in SetBreakpointCommandCallbackFunction()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h190 bool GetScriptedSummary(const char *function_name, lldb::ValueObjectSP valobj,
195 bool FormatterCallbackFunction(const char *function_name,
270 BreakpointOptions &bp_options, const char *function_name,
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.h100 BreakpointOptions &bp_options, const char *function_name,
H A DScriptInterpreterLua.cpp356 BreakpointOptions &bp_options, const char *function_name, in SetBreakpointCommandCallbackFunction() argument
359 std::string oneliner = llvm::formatv(fmt_str, function_name).str(); in SetBreakpointCommandCallbackFunction()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.cpp434 llvm::StringRef function_name(symbol->GetName().GetCString()); in GetStepThroughTrampolinePlan() local
443 function_name.starts_with("std::__1::function<"); in GetStepThroughTrampolinePlan()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp1493 ConstString function_name; in DoPrepareForExecution() local
1498 if (!FindFunctionInModule(function_name, llvm_module_up.get(), in DoPrepareForExecution()
1504 LLDB_LOGF(log, "Found function %s for %s", function_name.AsCString(), in DoPrepareForExecution()
1542 function_name, exe_ctx.GetTargetSP(), sc, in DoPrepareForExecution()
1558 function_name.AsCString()); in DoPrepareForExecution()
1620 function_name.AsCString()); in DoPrepareForExecution()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp715 ConstString function_name, LanguageType language_type) const { in NameMatchesLookupInfo() argument
717 if (!function_name) in NameMatchesLookupInfo()
721 if (m_name == function_name) in NameMatchesLookupInfo()
730 Mangled::GetManglingScheme(function_name) != Mangled::eManglingSchemeNone; in NameMatchesLookupInfo()
731 ConstString demangled_function_name = function_name; in NameMatchesLookupInfo()
733 Mangled mangled_function_name(function_name); in NameMatchesLookupInfo()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectType.cpp1607 const char *function_name = type_name.AsCString(); in AddSummary() local
1609 if (interpreter && !interpreter->CheckObjectExists(function_name)) { in AddSummary()
1613 function_name); in AddSummary()
2268 const char *function_name = type_name.AsCString(); in AddSynth() local
2270 if (interpreter && !interpreter->CheckObjectExists(function_name)) { in AddSynth()
2274 function_name); in AddSynth()

12