Home
last modified time | relevance | path

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

12

/freebsd-12-stable/sys/arm/amlogic/aml8726/
Daml8726_ccm.c82 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()
Daml8726_pinctrl.c186 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()
Daml8726_mmc.c554 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/
Dsyms.c857 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/
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-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
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) \
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()
Dsanitizer_symbolizer.cpp72 InternalFree(local.function_name); in Clear()
Dsanitizer_symbolizer.h82 char *function_name = nullptr; member
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
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-12-stable/contrib/llvm-project/compiler-rt/lib/interception/
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()
Dinterception_win.h41 const char *function_name, uptr new_function,
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
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()
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-12-stable/contrib/llvm-project/lldb/source/DataFormatters/
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-12-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
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-12-stable/contrib/libarchive/libarchive/
Darchive_private.h148 #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/
DScriptInterpreter.cpp111 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/
DCPPLanguageRuntime.cpp366 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/
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-12-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
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-12-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
DScriptInterpreterLua.h97 BreakpointOptions &bp_options, const char *function_name,
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-12-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPythonImpl.h199 bool GetScriptedSummary(const char *function_name, lldb::ValueObjectSP valobj,
260 BreakpointOptions &bp_options, const char *function_name,
/freebsd-12-stable/contrib/binutils/binutils/
Ddlltool.c2355 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()

12