| /freebsd-12-stable/sys/arm/amlogic/aml8726/ |
| D | aml8726_ccm.c | 82 char *function_name; in aml8726_ccm_configure_gates() local 98 function_name = functions; in aml8726_ccm_configure_gates() 102 if (strncmp(f->name, function_name, len) == 0) in aml8726_ccm_configure_gates() 109 len, function_name); in aml8726_ccm_configure_gates() 113 while (*function_name && len) { in aml8726_ccm_configure_gates() 114 function_name++; in aml8726_ccm_configure_gates() 118 function_name++; in aml8726_ccm_configure_gates()
|
| D | aml8726_pinctrl.c | 186 char *function_name; in aml8726_pinctrl_configure_pins() local 197 (void **)&function_name); in aml8726_pinctrl_configure_pins() 206 if (strncmp(f->name, function_name, len) == 0) in aml8726_pinctrl_configure_pins() 211 len, function_name); in aml8726_pinctrl_configure_pins() 212 OF_prop_free(function_name); in aml8726_pinctrl_configure_pins() 216 OF_prop_free(function_name); in aml8726_pinctrl_configure_pins()
|
| D | aml8726_mmc.c | 554 char *function_name; in aml8726_mmc_attach() local 588 (void **)&function_name); in aml8726_mmc_attach() 596 if (strncmp("sdio-a", function_name, len) == 0) in aml8726_mmc_attach() 598 else if (strncmp("sdio-b", function_name, len) == 0) in aml8726_mmc_attach() 600 else if (strncmp("sdio-c", function_name, len) == 0) in aml8726_mmc_attach() 604 len, function_name); in aml8726_mmc_attach() 605 OF_prop_free(function_name); in aml8726_mmc_attach() 609 OF_prop_free(function_name); in aml8726_mmc_attach()
|
| /freebsd-12-stable/contrib/binutils/bfd/ |
| D | syms.c | 857 char *function_name; member 975 char *function_name; in _bfd_stab_section_find_nearest_line() local 1156 info->indextable[i].function_name = NULL; in _bfd_stab_section_find_nearest_line() 1201 function_name = name; in _bfd_stab_section_find_nearest_line() 1211 info->indextable[i].function_name = function_name; in _bfd_stab_section_find_nearest_line() 1224 info->indextable[i].function_name = NULL; in _bfd_stab_section_find_nearest_line() 1233 info->indextable[i].function_name = NULL; in _bfd_stab_section_find_nearest_line() 1321 val = ((indexentry->function_name ? indexentry->val : 0) in _bfd_stab_section_find_nearest_line() 1384 if (indexentry->function_name != NULL) in _bfd_stab_section_find_nearest_line() 1391 s = strchr (indexentry->function_name, ':'); in _bfd_stab_section_find_nearest_line() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/asan/ |
| D | asan_suppressions.cpp | 87 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-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| D | sanitizer_win_dll_thunk.h | 56 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) \
|
| D | sanitizer_symbolizer_libcdep.cpp | 329 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()
|
| D | sanitizer_symbolizer.cpp | 72 InternalFree(local.function_name); in Clear()
|
| D | sanitizer_symbolizer.h | 82 char *function_name = nullptr; member
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| D | tsan_symbolize.cpp | 62 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-12-stable/contrib/llvm-project/compiler-rt/lib/interception/ |
| D | interception_win.cpp | 916 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()
|
| D | interception_win.h | 41 const char *function_name, uptr new_function,
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Target/ |
| D | StackFrameRecognizer.cpp | 111 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()
|
| D | ThreadPlanStepInRange.cpp | 390 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-12-stable/contrib/llvm-project/lldb/source/DataFormatters/ |
| D | TypeSummary.cpp | 146 const char *function_name, in ScriptSummaryFormat() argument 150 if (function_name) in ScriptSummaryFormat() 151 m_function_name.assign(function_name); in ScriptSummaryFormat()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
| D | TypeSummary.h | 358 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-12-stable/contrib/libarchive/libarchive/ |
| D | archive_private.h | 148 #define archive_check_magic(a, expected_magic, allowed_states, function_name) \ argument 151 (allowed_states), (function_name)); \
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Interpreter/ |
| D | ScriptInterpreter.cpp | 111 const char *function_name, StructuredData::ObjectSP extra_args_sp) { in SetBreakpointCommandCallbackFunction() argument 114 error = SetBreakpointCommandCallbackFunction(bp_options, function_name, in SetBreakpointCommandCallbackFunction()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ |
| D | CPPLanguageRuntime.cpp | 366 llvm::StringRef function_name(symbol->GetName().GetCString()); in GetStepThroughTrampolinePlan() local 375 function_name.startswith("std::__1::function<"); in GetStepThroughTrampolinePlan()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| D | ScriptInterpreter.h | 394 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-12-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| D | ClangExpressionParser.cpp | 1340 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-12-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/ |
| D | ScriptInterpreterLua.h | 97 BreakpointOptions &bp_options, const char *function_name,
|
| D | ScriptInterpreterLua.cpp | 337 BreakpointOptions &bp_options, const char *function_name, in SetBreakpointCommandCallbackFunction() argument 340 std::string oneliner = llvm::formatv(fmt_str, function_name).str(); in SetBreakpointCommandCallbackFunction()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
| D | ScriptInterpreterPythonImpl.h | 199 bool GetScriptedSummary(const char *function_name, lldb::ValueObjectSP valobj, 260 BreakpointOptions &bp_options, const char *function_name,
|
| /freebsd-12-stable/contrib/binutils/binutils/ |
| D | dlltool.c | 2355 asymbol *function_name; in make_one_lib_file() local 2357 function_name = bfd_make_empty_symbol(abfd); in make_one_lib_file() 2358 function_name->name = make_label ("..", exp->name); in make_one_lib_file() 2359 function_name->section = secdata[TEXT].sec; in make_one_lib_file() 2360 function_name->flags = BSF_GLOBAL; in make_one_lib_file() 2361 function_name->value = 0; in make_one_lib_file() 2364 ptrs[oidx++] = function_name; in make_one_lib_file()
|