| /freebsd-12.1/sys/arm/amlogic/aml8726/ |
| H A 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()
|
| H A 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()
|
| H A 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.1/contrib/binutils/bfd/ |
| H A 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 …]
|
| H A D | ecofflink.c | 2258 const char *function_name; local 2285 function_name = NULL; 2344 function_name = 2369 if (function_name == NULL) 2372 len = funclen = strlen (function_name) + 1; 2389 if (function_name != NULL) 2393 strcpy (buffer, function_name);
|
| /freebsd-12.1/contrib/compiler-rt/lib/asan/ |
| H A D | asan_suppressions.cc | 88 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-12.1/contrib/compiler-rt/lib/profile/ |
| H A D | GCDAProfiling.c | 433 void llvm_gcda_emit_function(uint32_t ident, const char *function_name, in llvm_gcda_emit_function() argument 442 function_name ? function_name : "NULL"); in llvm_gcda_emit_function() 448 if (function_name) in llvm_gcda_emit_function() 449 len += 1 + length_of_string(function_name); in llvm_gcda_emit_function() 455 if (function_name) in llvm_gcda_emit_function() 456 write_string(function_name); in llvm_gcda_emit_function()
|
| /freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_win_dll_thunk.h | 57 static const char function_name[] = #name; \ 58 for (const char* ptr = &function_name[0]; *ptr; ++ptr) \ 72 static const char function_name[] = #name; \ 73 for (const char* ptr = &function_name[0]; *ptr; ++ptr) \
|
| H A D | sanitizer_symbolizer_libcdep.cc | 300 char *function_name = 0; in ParseSymbolizePCOutput() local 301 str = ExtractToken(str, "\n", &function_name); in ParseSymbolizePCOutput() 302 CHECK(function_name); in ParseSymbolizePCOutput() 303 if (function_name[0] == '\0') { in ParseSymbolizePCOutput() 305 InternalFree(function_name); in ParseSymbolizePCOutput() 321 info->function = function_name; in ParseSymbolizePCOutput()
|
| /freebsd-12.1/contrib/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_symbolize.cc | 63 static void AddFrame(void *ctx, const char *function_name, const char *file, in AddFrame() argument 73 if (function_name) { in AddFrame() 74 info->function = internal_strdup(function_name); in AddFrame()
|
| /freebsd-12.1/contrib/compiler-rt/lib/interception/ |
| H A D | interception_win.cc | 911 char function_name[256]; in InternalGetProcAddress() local 913 if (funtion_name_length >= sizeof(function_name) - 1) in InternalGetProcAddress() 916 _memcpy(function_name, func, funtion_name_length); in InternalGetProcAddress() 917 function_name[funtion_name_length] = '\0'; in InternalGetProcAddress() 918 char* separator = _strchr(function_name, '.'); in InternalGetProcAddress() 923 void* redirected_module = GetModuleHandleA(function_name); in InternalGetProcAddress() 952 const char *function_name, uptr new_function, in OverrideImportedFunction() argument 994 if (strcmp(funcname, function_name) == 0) in OverrideImportedFunction()
|
| H A D | interception_win.h | 42 const char *function_name, uptr new_function,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/DataFormatters/ |
| H A D | TypeSummary.cpp | 158 const char *function_name, in ScriptSummaryFormat() argument 162 if (function_name) in ScriptSummaryFormat() 163 m_function_name.assign(function_name); in ScriptSummaryFormat()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | StackFrameRecognizer.cpp | 95 ConstString function_name = symctx.GetFunctionName(); in GetRecognizerForFrame() local 113 if (entry.symbol != function_name) continue; in GetRecognizerForFrame() 116 if (!entry.symbol_regexp->Execute(function_name.GetStringRef())) in GetRecognizerForFrame()
|
| H A D | ThreadPlanStepInRange.cpp | 422 const char *function_name = sc.GetFunctionName().AsCString(); in DefaultShouldStopHereCallback() local 424 if (function_name == nullptr) in DefaultShouldStopHereCallback() 426 else if (strstr(function_name, target_name) == nullptr) in DefaultShouldStopHereCallback()
|
| H A D | CPPLanguageRuntime.cpp | 302 llvm::StringRef function_name(symbol->GetName().GetCString()); in GetStepThroughTrampolinePlan() local 311 function_name.startswith("std::__1::function<"); in GetStepThroughTrampolinePlan()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/ |
| H A D | ScriptInterpreter.cpp | 91 const char *function_name) { in SetBreakpointCommandCallbackFunction() argument 93 SetBreakpointCommandCallbackFunction(bp_options, function_name); in SetBreakpointCommandCallbackFunction()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ |
| H A 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.1/contrib/libarchive/libarchive/ |
| H A D | archive_private.h | 144 #define archive_check_magic(a, expected_magic, allowed_states, function_name) \ argument 147 (allowed_states), (function_name)); \
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/ |
| H A D | ScriptInterpreter.h | 313 const char *function_name); 318 const char *function_name) {} in SetBreakpointCommandCallbackFunction() argument 324 virtual bool GetScriptedSummary(const char *function_name, in GetScriptedSummary() argument
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionParser.cpp | 1062 ConstString function_name; in PrepareForExecution() local 1067 if (!FindFunctionInModule(function_name, llvm_module_ap.get(), in PrepareForExecution() 1075 log->Printf("Found function %s for %s", function_name.AsCString(), in PrepareForExecution() 1114 function_name, exe_ctx.GetTargetSP(), sc, in PrepareForExecution() 1129 function_name.AsCString()); in PrepareForExecution() 1197 function_name.AsCString()); in PrepareForExecution()
|
| /freebsd-12.1/contrib/binutils/binutils/ |
| H A 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()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPython.h | 339 bool GetScriptedSummary(const char *function_name, lldb::ValueObjectSP valobj, 401 const char *function_name) override;
|
| /freebsd-12.1/contrib/gcc/ |
| H A D | gcov.c | 739 char *function_name; in read_graph_file() local 746 function_name = xstrdup (gcov_read_string ()); in read_graph_file() 751 fn->name = function_name; in read_graph_file()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | Disassembler.cpp | 356 const char *function_name = in ElideMixedSourceAndDisassemblyLine() local 359 if (function_name) { in ElideMixedSourceAndDisassemblyLine() 361 if (avoid_regex->Execute(function_name, ®ex_match)) { in ElideMixedSourceAndDisassemblyLine()
|