/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
D | gas_query.c | 38 struct gas_query *gas; member 77 static void gas_query_tx_initial_req(struct gas_query *gas, 79 static int gas_query_new_dialog_token(struct gas_query *gas, const u8 *dst); 99 struct gas_query *gas; in gas_query_init() local 101 gas = os_zalloc(sizeof(*gas)); in gas_query_init() 102 if (gas == NULL) in gas_query_init() 105 gas->wpa_s = wpa_s; in gas_query_init() 106 dl_list_init(&gas->pending); in gas_query_init() 108 return gas; in gas_query_init() 137 struct gas_query *gas = query->gas; in gas_query_free() local [all …]
|
D | gas_query.h | 18 void gas_query_deinit(struct gas_query *gas); 19 int gas_query_rx(struct gas_query *gas, const u8 *da, const u8 *sa, 37 int gas_query_req(struct gas_query *gas, const u8 *dst, int freq, 44 int gas_query_stop(struct gas_query *gas, u8 dialog_token); 53 static inline void gas_query_deinit(struct gas_query *gas) in gas_query_deinit() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
D | gas_query.c | 38 struct gas_query *gas; member 78 static void gas_query_tx_initial_req(struct gas_query *gas, 80 static int gas_query_new_dialog_token(struct gas_query *gas, const u8 *dst); 100 struct gas_query *gas; in gas_query_init() local 102 gas = os_zalloc(sizeof(*gas)); in gas_query_init() 103 if (gas == NULL) in gas_query_init() 106 gas->wpa_s = wpa_s; in gas_query_init() 107 dl_list_init(&gas->pending); in gas_query_init() 109 return gas; in gas_query_init() 138 struct gas_query *gas = query->gas; in gas_query_free() local [all …]
|
D | gas_query.h | 18 void gas_query_deinit(struct gas_query *gas); 19 int gas_query_rx(struct gas_query *gas, const u8 *da, const u8 *sa, 36 int gas_query_req(struct gas_query *gas, const u8 *dst, int freq, 43 int gas_query_stop(struct gas_query *gas, u8 dialog_token); 52 static inline void gas_query_deinit(struct gas_query *gas) in gas_query_deinit() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
D | gas_query_ap.c | 37 struct gas_query_ap *gas; member 72 static void gas_query_tx_initial_req(struct gas_query_ap *gas, 74 static int gas_query_new_dialog_token(struct gas_query_ap *gas, const u8 *dst); 95 struct gas_query_ap *gas; in gas_query_ap_init() local 97 gas = os_zalloc(sizeof(*gas)); in gas_query_ap_init() 98 if (!gas) in gas_query_ap_init() 101 gas->hapd = hapd; in gas_query_ap_init() 102 gas->msg_ctx = msg_ctx; in gas_query_ap_init() 103 dl_list_init(&gas->pending); in gas_query_ap_init() 105 return gas; in gas_query_ap_init() [all …]
|
D | gas_query_ap.h | 17 void gas_query_ap_deinit(struct gas_query_ap *gas); 18 int gas_query_ap_rx(struct gas_query_ap *gas, const u8 *sa, u8 categ, 33 int gas_query_ap_req(struct gas_query_ap *gas, const u8 *dst, int freq, 40 void gas_query_ap_tx_status(struct gas_query_ap *gas, const u8 *dst,
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
D | gas_query_ap.c | 37 struct gas_query_ap *gas; member 72 static void gas_query_tx_initial_req(struct gas_query_ap *gas, 74 static int gas_query_new_dialog_token(struct gas_query_ap *gas, const u8 *dst); 95 struct gas_query_ap *gas; in gas_query_ap_init() local 97 gas = os_zalloc(sizeof(*gas)); in gas_query_ap_init() 98 if (!gas) in gas_query_ap_init() 101 gas->hapd = hapd; in gas_query_ap_init() 102 gas->msg_ctx = msg_ctx; in gas_query_ap_init() 103 dl_list_init(&gas->pending); in gas_query_ap_init() 105 return gas; in gas_query_ap_init() [all …]
|
D | gas_query_ap.h | 17 void gas_query_ap_deinit(struct gas_query_ap *gas); 18 int gas_query_ap_rx(struct gas_query_ap *gas, const u8 *sa, u8 categ, 33 int gas_query_ap_req(struct gas_query_ap *gas, const u8 *dst, int freq, 40 void gas_query_ap_tx_status(struct gas_query_ap *gas, const u8 *dst,
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
D | gas_server.c | 30 struct gas_server *gas; member 85 gas_server_send_resp(struct gas_server *gas, struct gas_server_handler *handler, in gas_server_send_resp() argument 150 dl_list_add(&gas->responses, &response->list); in gas_server_send_resp() 151 gas->tx(gas->ctx, freq, da, resp, comeback_delay ? 2000 : 0); in gas_server_send_resp() 159 gas_server_rx_initial_req(struct gas_server *gas, const u8 *da, const u8 *sa, in gas_server_rx_initial_req() argument 213 dl_list_for_each(handler, &gas->handlers, struct gas_server_handler, in gas_server_rx_initial_req() 226 gas_server_send_resp(gas, handler, sa, freq, dialog_token, in gas_server_rx_initial_req() 241 struct gas_server *gas = handler->gas; in gas_server_handle_rx_comeback_req() local 282 gas->tx(gas->ctx, response->freq, response->dst, resp, in gas_server_handle_rx_comeback_req() 289 gas_server_rx_comeback_req(struct gas_server *gas, const u8 *da, const u8 *sa, in gas_server_rx_comeback_req() argument [all …]
|
D | gas_server.h | 21 void gas_server_deinit(struct gas_server *gas); 22 int gas_server_register(struct gas_server *gas, 30 int gas_server_rx(struct gas_server *gas, const u8 *da, const u8 *sa, 33 void gas_server_tx_status(struct gas_server *gas, const u8 *dst, const u8 *data, 38 static inline void gas_server_deinit(struct gas_server *gas) in gas_server_deinit() argument
|
D | Makefile | 19 gas.o \
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
D | gas_server.c | 32 struct gas_server *gas; member 89 gas_server_send_resp(struct gas_server *gas, struct gas_server_handler *handler, in gas_server_send_resp() argument 155 dl_list_add(&gas->responses, &response->list); in gas_server_send_resp() 156 gas->tx(gas->ctx, freq, da, resp, comeback_delay ? 2000 : 0); in gas_server_send_resp() 164 gas_server_rx_initial_req(struct gas_server *gas, const u8 *da, const u8 *sa, in gas_server_rx_initial_req() argument 224 dl_list_for_each(handler, &gas->handlers, struct gas_server_handler, in gas_server_rx_initial_req() 243 gas_server_send_resp(gas, handler, response, sa, freq, in gas_server_rx_initial_req() 259 struct gas_server *gas = handler->gas; in gas_server_handle_rx_comeback_req() local 329 gas->tx(gas->ctx, response->freq, response->dst, resp, wait_time); in gas_server_handle_rx_comeback_req() 335 gas_server_rx_comeback_req(struct gas_server *gas, const u8 *da, const u8 *sa, in gas_server_rx_comeback_req() argument [all …]
|
D | gas_server.h | 22 void gas_server_deinit(struct gas_server *gas); 23 int gas_server_register(struct gas_server *gas, 32 int gas_server_rx(struct gas_server *gas, const u8 *da, const u8 *sa, 35 void gas_server_tx_status(struct gas_server *gas, const u8 *dst, const u8 *data, 37 int gas_server_set_resp(struct gas_server *gas, void *resp_ctx, 39 bool gas_server_response_sent(struct gas_server *gas, void *resp_ctx); 43 static inline void gas_server_deinit(struct gas_server *gas) in gas_server_deinit() argument
|
D | Makefile | 9 gas.o \
|
/third_party/openssl/crypto/perlasm/ |
D | x86_64-xlate.pl | 73 my $gas=1; $gas=0 if ($output =~ /\.asm$/); 74 my $elf=1; $elf=0 if (!$gas); 86 if ($flavour eq "mingw64") { $gas=1; $elf=0; $win64=1; 90 elsif ($flavour eq "macosx") { $gas=1; $elf=0; $prefix="_"; $decor="L\$"; } 91 elsif ($flavour eq "masm") { $gas=0; $elf=0; $masm=$masmref; $win64=1; $decor="\$L\$"; } 92 elsif ($flavour eq "nasm") { $gas=0; $elf=0; $nasm=$nasmref; $win64=1; $decor="\$L\$"; $PTR=""; } 93 elsif (!$gas) 146 if ($gas) { 204 if ($gas) { 289 if ($gas) { [all …]
|
/third_party/openh264/ |
D | meson.build | 144 # For ARM, gas-preprocessor is needed for converting the asm to be 147 gasprep = find_program('gas-preprocessor.pl') 160 # either gas-preprocessor or armasm64. 163 gasprep = find_program('gas-preprocessor.pl')
|
/third_party/libjpeg-turbo/simd/ |
D | CMakeLists.txt | 221 # Test whether we need gas-preprocessor.pl 246 message(STATUS "GAS appears to be broken. Trying gas-preprocessor.pl ...") 247 execute_process(COMMAND gas-preprocessor.pl ${CMAKE_ASM_COMPILER} 255 message(STATUS "Using gas-preprocessor.pl") 256 configure_file(gas-preprocessor.in gas-preprocessor @ONLY) 257 set(CMAKE_ASM_COMPILER ${CMAKE_CURRENT_BINARY_DIR}/gas-preprocessor)
|
D | gas-preprocessor.in | 1 gas-preprocessor.pl @CMAKE_ASM_COMPILER@ ${1+"$@"}
|
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/simd/ |
D | CMakeLists.txt | 210 # Test whether we need gas-preprocessor.pl 235 message(STATUS "GAS appears to be broken. Trying gas-preprocessor.pl ...") 236 execute_process(COMMAND gas-preprocessor.pl ${CMAKE_ASM_COMPILER} 244 message(STATUS "Using gas-preprocessor.pl") 245 configure_file(gas-preprocessor.in gas-preprocessor @ONLY) 246 set(CMAKE_ASM_COMPILER ${CMAKE_CURRENT_BINARY_DIR}/gas-preprocessor)
|
D | gas-preprocessor.in | 1 gas-preprocessor.pl @CMAKE_ASM_COMPILER@ ${1+"$@"}
|
/third_party/gettext/gettext-runtime/doc/ |
D | matrix.texi | 43 gas | | 217 gas | [] [] [] | 391 gas | [] | 565 gas | | 739 gas | [] [] | 913 gas | [] | 7
|
/third_party/openh264/build/ |
D | platform-mingw_nt.mk | 22 CCAS = gas-preprocessor.pl -as-type clang -force-thumb -- $(CC)
|
D | msvc-common.mk | 12 CCAS = gas-preprocessor.pl -as-type armasm -force-thumb -- armasm
|
/third_party/e2fsprogs/ |
D | ABOUT-NLS | 183 gas | | 355 gas | [] [] [] | 527 gas | [] | 699 gas | | 871 gas | | 1043 gas | [] | 1215 gas | | 5
|
/third_party/libffi/src/s390/ |
D | sysv.S | 42 # This assumes we are using gas. 196 # This assumes we are using gas.
|