Home
last modified time | relevance | path

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

12

/freebsd-13.1/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-13.1/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.cpp329 char *function_name = nullptr; in ParseSymbolizePCOutput() local
330 str = ExtractToken(str, "\n", &function_name); in ParseSymbolizePCOutput()
331 CHECK(function_name); in ParseSymbolizePCOutput()
332 if (function_name[0] == '\0') { in ParseSymbolizePCOutput()
334 InternalFree(function_name); in ParseSymbolizePCOutput()
350 info->function = function_name; in ParseSymbolizePCOutput()
383 str = ExtractToken(str, "\n", &local.function_name); in ParseSymbolizeFrameOutput()
H A Dsanitizer_symbolizer.cpp72 InternalFree(local.function_name); in Clear()
H A Dsanitizer_symbolizer.h82 char *function_name = nullptr; member
/freebsd-13.1/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-13.1/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception_win.cpp916 char function_name[256]; in InternalGetProcAddress() local
918 if (funtion_name_length >= sizeof(function_name) - 1) in InternalGetProcAddress()
921 _memcpy(function_name, func, funtion_name_length); in InternalGetProcAddress()
922 function_name[funtion_name_length] = '\0'; in InternalGetProcAddress()
923 char* separator = _strchr(function_name, '.'); in InternalGetProcAddress()
928 void* redirected_module = GetModuleHandleA(function_name); in InternalGetProcAddress()
957 const char *function_name, uptr new_function, in OverrideImportedFunction() argument
999 if (strcmp(funcname, function_name) == 0) in OverrideImportedFunction()
H A Dinterception_win.h41 const char *function_name, uptr new_function,
/freebsd-13.1/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.cpp390 const char *function_name = sc.GetFunctionName().AsCString(); in DefaultShouldStopHereCallback() local
392 if (function_name == nullptr) in DefaultShouldStopHereCallback()
394 else if (strstr(function_name, target_name) == nullptr) in DefaultShouldStopHereCallback()
/freebsd-13.1/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-13.1/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-13.1/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-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp111 const char *function_name, StructuredData::ObjectSP extra_args_sp) { in SetBreakpointCommandCallbackFunction() argument
114 error = SetBreakpointCommandCallbackFunction(bp_options, function_name, in SetBreakpointCommandCallbackFunction()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.cpp366 llvm::StringRef function_name(symbol->GetName().GetCString()); in GetStepThroughTrampolinePlan() local
375 function_name.startswith("std::__1::function<"); in GetStepThroughTrampolinePlan()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h394 const char *function_name, StructuredData::ObjectSP extra_args_sp);
399 const char *function_name, in SetBreakpointCommandCallbackFunction() argument
410 virtual bool GetScriptedSummary(const char *function_name, in GetScriptedSummary() argument
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.h97 BreakpointOptions &bp_options, const char *function_name,
H A DScriptInterpreterLua.cpp337 BreakpointOptions &bp_options, const char *function_name, in SetBreakpointCommandCallbackFunction() argument
340 std::string oneliner = llvm::formatv(fmt_str, function_name).str(); in SetBreakpointCommandCallbackFunction()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp1340 ConstString function_name; in PrepareForExecution() local
1345 if (!FindFunctionInModule(function_name, llvm_module_up.get(), in PrepareForExecution()
1352 LLDB_LOGF(log, "Found function %s for %s", function_name.AsCString(), in PrepareForExecution()
1390 function_name, exe_ctx.GetTargetSP(), sc, in PrepareForExecution()
1402 function_name.AsCString()); in PrepareForExecution()
1468 function_name.AsCString()); in PrepareForExecution()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h199 bool GetScriptedSummary(const char *function_name, lldb::ValueObjectSP valobj,
260 BreakpointOptions &bp_options, const char *function_name,
H A DScriptInterpreterPython.cpp1267 BreakpointOptions &bp_options, const char *function_name, in SetBreakpointCommandCallbackFunction() argument
1272 oneliner += function_name; in SetBreakpointCommandCallbackFunction()
1275 GetMaxPositionalArgumentsForCallable(function_name); in SetBreakpointCommandCallbackFunction()
1299 function_name, max_args); in SetBreakpointCommandCallbackFunction()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp267 const char *function_name = in ElideMixedSourceAndDisassemblyLine() local
270 if (function_name && avoid_regex->Execute(function_name)) { in ElideMixedSourceAndDisassemblyLine()
/freebsd-13.1/contrib/googletest/googlemock/test/
H A Dgmock-spec-builders_test.cc2123 const std::string& function_name) { in VerifyOutput() argument
2129 EXPECT_THAT(output.c_str(), HasSubstr(function_name)); in VerifyOutput()
2132 static_cast<void>(function_name); in VerifyOutput()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DLocalizationChecker.cpp609 #define LSF_INSERT(function_name) LSF.insert(&Ctx.Idents.get(function_name)); argument
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_report.cpp215 Printf(" %s in %s %s:%d\n", local.name, local.function_name, in PrintStackAllocations()

12