Home
last modified time | relevance | path

Searched refs:method_list (Results 1 – 9 of 9) sorted by relevance

/external/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
DUdtRecordCompleter.cpp257 MethodOverloadListRecord method_list; in visitKnownMember() local
259 method_list_type, method_list)); in visitKnownMember()
261 for (const OneMethodRecord &method : method_list.Methods) in visitKnownMember()
/external/clang/lib/StaticAnalyzer/Checkers/
DLocalizationChecker.cpp149 #define ADD_METHOD(receiver, method_list, count, argument) \ argument
150 receiver##M.insert({Ctx.Selectors.getSelector(count, method_list), argument});
559 #define LSM_INSERT_SELECTOR(receiver, method_list, arguments) \ argument
561 Ctx.Selectors.getSelector(arguments, method_list)});
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DLocalizationChecker.cpp147 #define ADD_METHOD(receiver, method_list, count, argument) \ argument
148 receiver##M.insert({Ctx.Selectors.getSelector(count, method_list), argument});
616 #define LSM_INSERT_SELECTOR(receiver, method_list, arguments) \ argument
618 Ctx.Selectors.getSelector(arguments, method_list)});
/external/wpa_supplicant_8/src/ap/
Dgas_serv.c761 for (i = 0; p->method_list && p->method_list[i] >= 0; i++) in anqp_add_osu_provider()
762 wpabuf_put_u8(buf, p->method_list[i]); in anqp_add_osu_provider()
Dap_config.h628 int *method_list; member
Dap_config.c889 os_free(p->method_list); in hostapd_config_free_bss()
/external/llvm/tools/llvm-objdump/
DMachODump.cpp3177 inline void swapStruct(struct objc_method_list_t &method_list) { in swapStruct() argument
3178 sys::swapByteOrder(method_list.obsolete); in swapStruct()
3179 sys::swapByteOrder(method_list.method_count); in swapStruct()
3615 struct objc_method_list_t method_list; in print_method_list() local
3626 memcpy(&method_list, r, sizeof(struct objc_method_list_t)); in print_method_list()
3629 memset(&method_list, '\0', sizeof(struct objc_method_list_t)); in print_method_list()
3630 memcpy(&method_list, r, left); in print_method_list()
3633 swapStruct(method_list); in print_method_list()
3636 << format("0x%08" PRIx32, method_list.obsolete) << "\n"; in print_method_list()
3637 outs() << "\t\t method_count " << method_list.method_count << "\n"; in print_method_list()
[all …]
/external/llvm-project/llvm/tools/llvm-objdump/
DMachODump.cpp3947 inline void swapStruct(struct objc_method_list_t &method_list) { in swapStruct() argument
3948 sys::swapByteOrder(method_list.obsolete); in swapStruct()
3949 sys::swapByteOrder(method_list.method_count); in swapStruct()
4394 struct objc_method_list_t method_list; in print_method_list() local
4405 memcpy(&method_list, r, sizeof(struct objc_method_list_t)); in print_method_list()
4408 memset(&method_list, '\0', sizeof(struct objc_method_list_t)); in print_method_list()
4409 memcpy(&method_list, r, left); in print_method_list()
4412 swapStruct(method_list); in print_method_list()
4415 << format("0x%08" PRIx32, method_list.obsolete) << "\n"; in print_method_list()
4416 outs() << "\t\t method_count " << method_list.method_count << "\n"; in print_method_list()
[all …]
/external/wpa_supplicant_8/hostapd/
Dconfig_file.c1959 if (hostapd_parse_intlist(&bss->last_osu->method_list, pos)) { in hs20_parse_osu_method_list()