Searched refs:function_name (Results 1 - 24 of 24) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_suppressions.cpp87 const char *function_name = cur->info.function; local
88 if (!function_name) {
92 if (suppression_ctx->Match(function_name, kInterceptorViaFunction,
/freebsd-13-stable/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, argument
72 if (function_name) {
73 info->function = internal_strdup(function_name);
/freebsd-13-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeSummary.cpp147 const char *function_name,
151 if (function_name)
152 m_function_name.assign(function_name);
146 ScriptSummaryFormat(const TypeSummaryImpl::Flags &flags, const char *function_name, const char *python_script) argument
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Darchive_private.h144 #define archive_check_magic(a, expected_magic, allowed_states, function_name) \
147 (allowed_states), (function_name)); \
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception_win.h41 const char *function_name, uptr new_function,
H A Dinterception_win.cpp914 // format: "<module> . <function_name>" that is stored into the
916 char function_name[256]; local
918 if (funtion_name_length >= sizeof(function_name) - 1)
921 _memcpy(function_name, func, funtion_name_length);
922 function_name[funtion_name_length] = '\0';
923 char* separator = _strchr(function_name, '.');
928 void* redirected_module = GetModuleHandleA(function_name);
957 const char *function_name, uptr new_function,
999 if (strcmp(funcname, function_name) == 0)
955 OverrideImportedFunction(const char *module_to_patch, const char *imported_module, const char *function_name, uptr new_function, uptr *orig_old_func) argument
/freebsd-13-stable/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.cpp233 // <function_name>
235 // <function_name>
318 // <function_name>
326 char *function_name = nullptr; local
327 str = ExtractToken(str, "\n", &function_name);
328 CHECK(function_name);
329 if (function_name[0] == '\0') {
331 InternalFree(function_name);
347 info->function = function_name;
380 str = ExtractToken(str, "\n", &local.function_name);
[all...]
H A Dsanitizer_symbolizer.cpp72 InternalFree(local.function_name);
H A Dsanitizer_symbolizer.h82 char *function_name = nullptr; member in struct:__sanitizer::LocalInfo
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeSummary.h358 const char *function_name,
367 void SetFunctionName(const char *function_name) { argument
368 if (function_name)
369 m_function_name.assign(function_name);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DStackFrameRecognizer.cpp107 ConstString function_name = symctx.GetFunctionName(); local
125 if (!llvm::is_contained(entry.symbols, function_name))
129 if (!entry.symbol_regexp->Execute(function_name.GetStringRef()))
H A DThreadPlanStepInRange.cpp407 const char *function_name = sc.GetFunctionName().AsCString(); local
409 if (function_name == nullptr)
411 else if (strstr(function_name, target_name) == nullptr)
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp96 std::vector<BreakpointOptions *> &bp_options_vec, const char *function_name,
100 error = SetBreakpointCommandCallbackFunction(bp_options, function_name,
95 SetBreakpointCommandCallbackFunction( std::vector<BreakpointOptions *> &bp_options_vec, const char *function_name, StructuredData::ObjectSP extra_args_sp) argument
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.cpp365 llvm::StringRef function_name(symbol->GetName().GetCString());
374 function_name.startswith("std::__1::function<");
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h349 const char *function_name, StructuredData::ObjectSP extra_args_sp);
355 const char *function_name,
366 virtual bool GetScriptedSummary(const char *function_name, argument
353 SetBreakpointCommandCallbackFunction( BreakpointOptions *bp_options, const char *function_name, StructuredData::ObjectSP extra_args_sp) argument
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp1274 ConstString function_name; local
1279 if (!FindFunctionInModule(function_name, llvm_module_up.get(),
1286 LLDB_LOGF(log, "Found function %s for %s", function_name.AsCString(),
1324 function_name, exe_ctx.GetTargetSP(), sc,
1336 function_name.AsCString());
1402 function_name.AsCString());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h188 bool GetScriptedSummary(const char *function_name, lldb::ValueObjectSP valobj,
249 const char *function_name,
H A DScriptInterpreterPython.cpp1196 BreakpointOptions *bp_options, const char *function_name,
1201 oneliner += function_name;
1204 GetMaxPositionalArgumentsForCallable(function_name);
1228 function_name, max_args);
1195 SetBreakpointCommandCallbackFunction( BreakpointOptions *bp_options, const char *function_name, StructuredData::ObjectSP extra_args_sp) argument
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp269 const char *function_name = local
272 if (function_name && avoid_regex->Execute(function_name)) {
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_report.cpp203 Printf(" %s in %s %s:%d\n", local.name, local.function_name,
/freebsd-13-stable/contrib/googletest/googlemock/test/
H A Dgmock-spec-builders_test.cc2123 const std::string& function_name) {
2129 EXPECT_THAT(output.c_str(), HasSubstr(function_name));
2132 static_cast<void>(function_name);
2121 VerifyOutput(const std::string& output, bool should_print, const std::string& expected_substring, const std::string& function_name) argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DLocalizationChecker.cpp609 #define LSF_INSERT(function_name) LSF.insert(&Ctx.Idents.get(function_name));
/freebsd-13-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp1606 ConstString function_name(name);
1607 module->FindFunctions(function_name, CompilerDeclContext(),
3355 ConstString function_name(m_options.m_str.c_str());
3356 target->GetImages().FindFunctions(function_name, eFunctionNameTypeAuto,

Completed in 305 milliseconds