Home
last modified time | relevance | path

Searched refs:method_name (Results 1 – 17 of 17) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.h158 char* method_name; member
183 char* method_name; member
H A DIntelJITEventListener.cpp86 Result.method_name = const_cast<char*>(FnName); in FunctionDescToIntelJITFormat()
/freebsd-12.1/sys/dev/acpica/
H A Dacpi_powerres.c304 char *method_name, *reslist_name; in acpi_pwr_switch_consumer() local
331 method_name = "_PS0"; in acpi_pwr_switch_consumer()
335 method_name = "_PS1"; in acpi_pwr_switch_consumer()
339 method_name = "_PS2"; in acpi_pwr_switch_consumer()
343 method_name = "_PS3"; in acpi_pwr_switch_consumer()
362 if (ACPI_FAILURE(AcpiGetHandle(consumer, method_name, &method_handle))) in acpi_pwr_switch_consumer()
/freebsd-12.1/contrib/gdb/gdb/
H A Djv-typeprint.c210 char *method_name; in java_type_print_base() local
217 method_name = TYPE_FN_FIELDLIST_NAME (type, i); in java_type_print_base()
219 is_constructor = name && strcmp (method_name, name) == 0; in java_type_print_base()
H A Dlinespec.c224 char *method_name = TYPE_FN_FIELDLIST_NAME (t, method_counter); in find_methods() local
227 if (strncmp (method_name, "__", 2) == 0 || in find_methods()
228 strncmp (method_name, "op", 2) == 0 || in find_methods()
229 strncmp (method_name, "type", 4) == 0) in find_methods()
231 if (cplus_demangle_opname (method_name, dem_opname, DMGL_ANSI)) in find_methods()
232 method_name = dem_opname; in find_methods()
233 else if (cplus_demangle_opname (method_name, dem_opname, 0)) in find_methods()
234 method_name = dem_opname; in find_methods()
237 if (strcmp_iw (name, method_name) == 0) in find_methods()
H A Dc-typeprint.c946 char *method_name = TYPE_FN_FIELDLIST_NAME (type, i); in c_type_print_base() local
948 int is_constructor = name && strcmp (method_name, name) == 0; in c_type_print_base()
955 || method_name[0] == '~'; in c_type_print_base()
1030 method_name, in c_type_print_base()
H A Dp-typeprint.c631 char *method_name = TYPE_FN_FIELDLIST_NAME (type, i); in pascal_type_print_base() local
701 method_name, in pascal_type_print_base()
H A Dstabsread.c2116 char *method_name; in update_method_name_from_physname() local
2118 method_name = method_name_from_physname (physname); in update_method_name_from_physname()
2120 if (method_name == NULL) in update_method_name_from_physname()
2127 if (strcmp (*old_name, method_name) != 0) in update_method_name_from_physname()
2130 *old_name = method_name; in update_method_name_from_physname()
2133 xfree (method_name); in update_method_name_from_physname()
H A Dhpread.c3624 char *method_name = NULL; in hpread_read_struct_type() local
3887 method_name = (char *) (VT (objfile) + fn_fieldp->dfunc.name); in hpread_read_struct_type()
3890 if (!method_name || /* no name */ in hpread_read_struct_type()
3891 !*method_name || /* or null name */ in hpread_read_struct_type()
3892 cplus_mangle_opname (method_name, DMGL_ANSI)) /* or name is an operator like "<" */ in hpread_read_struct_type()
3896 method_name = xmalloc (strlen (op_string) + 1); /* don't overwrite VT! */ in hpread_read_struct_type()
3897 strcpy (method_name, op_string); in hpread_read_struct_type()
3904 if (DEPRECATED_STREQ (fn_p->field.name, method_name)) in hpread_read_struct_type()
3922 fn_list->field.name = method_name; in hpread_read_struct_type()
3953 fn_p->field.fn_fields[ix].physname = method_name; in hpread_read_struct_type()
/freebsd-12.1/lib/libc/net/
H A Dnsdispatch.c619 const char *method_name, const ns_src defaults[], ...) in _nsdispatch() argument
665 method_name, disp_tab, &mdata); in _nsdispatch()
685 method_name, disp_tab, &mdata); in _nsdispatch()
740 srclist[i].name, database, method_name); in _nsdispatch()
/freebsd-12.1/contrib/binutils/binutils/
H A Dprdbg.c2259 char *method_name; in tg_class_method_variant() local
2276 method_name = strdup (context ? info->stack->next->next->method in tg_class_method_variant()
2280 if (! substitute_type (info, method_name)) in tg_class_method_variant()
2303 method_name, info->filename, method_type, info->stack->type); in tg_class_method_variant()
2305 free (method_name); in tg_class_method_variant()
2321 char *method_name; in tg_class_static_method_variant() local
2343 method_name = strdup (info->stack->next->method); in tg_class_static_method_variant()
2358 method_name, info->filename, method_type, info->stack->type, in tg_class_static_method_variant()
2361 free (method_name); in tg_class_static_method_variant()
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSystemInitializerFull.cpp200 const char *method_name,
211 const char *method_name,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.h77 const char *method_name,
86 const char *method_name,
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DLocalizationChecker.cpp611 #define LSM_INSERT_NULLARY(receiver, method_name) \ argument
613 &Ctx.Idents.get(method_name))});
614 #define LSM_INSERT_UNARY(receiver, method_name) \ argument
616 Ctx.Selectors.getUnarySelector(&Ctx.Idents.get(method_name))});
/freebsd-12.1/contrib/googletest/googlemock/scripts/generator/cpp/
H A Dast.py798 method_name = temp_tokens[0].name
799 method = getattr(self, 'handle_' + method_name, None)
/freebsd-12.1/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp3334 uint32_t method_name; /* SEL, aka struct objc_selector * (32-bit pointer) */ member
3609 sys::swapByteOrder(method.method_name); in swapStruct()
4077 << format("0x%08" PRIx32, method.method_name); in print_method_list()
4079 name = get_pointer_32(method.method_name, offset, xleft, S, info, true); in print_method_list()
/freebsd-12.1/contrib/gdb/gdb/doc/
H A Dstabs.texinfo2586 method_name(Ameth)::type_def(21)=type_desc(method)return_type(int);