Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DLocalizationChecker.cpp148 #define ADD_METHOD(receiver, method_list, count, argument) \ argument
149 receiver##M.insert({Ctx.Selectors.getSelector(count, method_list), argument});
617 #define LSM_INSERT_SELECTOR(receiver, method_list, arguments) \ argument
619 Ctx.Selectors.getSelector(arguments, method_list)});
/freebsd-12.1/contrib/wpa/src/ap/
H A 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()
H A Dap_config.h621 int *method_list; member
H A Dap_config.c799 os_free(p->method_list); in hostapd_config_free_bss()
/freebsd-12.1/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp3603 inline void swapStruct(struct objc_method_list_t &method_list) { in swapStruct() argument
3604 sys::swapByteOrder(method_list.obsolete); in swapStruct()
3605 sys::swapByteOrder(method_list.method_count); in swapStruct()
4041 struct objc_method_list_t method_list; in print_method_list() local
4052 memcpy(&method_list, r, sizeof(struct objc_method_list_t)); in print_method_list()
4055 memset(&method_list, '\0', sizeof(struct objc_method_list_t)); in print_method_list()
4056 memcpy(&method_list, r, left); in print_method_list()
4059 swapStruct(method_list); in print_method_list()
4062 << format("0x%08" PRIx32, method_list.obsolete) << "\n"; in print_method_list()
4063 outs() << "\t\t method_count " << method_list.method_count << "\n"; in print_method_list()
[all …]
/freebsd-12.1/contrib/wpa/hostapd/
H A Dconfig_file.c2036 if (hostapd_parse_intlist(&bss->last_osu->method_list, pos)) { in hs20_parse_osu_method_list()