/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | gas_query.c | 40 struct gas_query *gas; member 80 static void gas_query_tx_initial_req(struct gas_query *gas, 82 static int gas_query_new_dialog_token(struct gas_query *gas, const u8 *dst); 102 struct gas_query *gas; in gas_query_init() local 104 gas = os_zalloc(sizeof(*gas)); in gas_query_init() 105 if (gas == NULL) in gas_query_init() 108 gas->wpa_s = wpa_s; in gas_query_init() 109 dl_list_init(&gas->pending); in gas_query_init() 111 return gas; in gas_query_init() 140 struct gas_query *gas = query->gas; in gas_query_free() local [all …]
|
H A 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
|
/freebsd/contrib/wpa/src/ap/ |
H A D | gas_query_ap.c | 39 struct gas_query_ap *gas; member 74 static void gas_query_tx_initial_req(struct gas_query_ap *gas, 76 static int gas_query_new_dialog_token(struct gas_query_ap *gas, const u8 *dst); 97 struct gas_query_ap *gas; in gas_query_ap_init() local 99 gas = os_zalloc(sizeof(*gas)); in gas_query_ap_init() 100 if (!gas) in gas_query_ap_init() 103 gas->hapd = hapd; in gas_query_ap_init() 104 gas->msg_ctx = msg_ctx; in gas_query_ap_init() 105 dl_list_init(&gas->pending); in gas_query_ap_init() 107 return gas; in gas_query_ap_init() [all …]
|
H A 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,
|
/freebsd/contrib/wpa/src/common/ |
H A D | gas_server.c | 33 struct gas_server *gas; member 91 gas_server_send_resp(struct gas_server *gas, in gas_server_send_resp() argument 157 gas->tx(gas->ctx, response->freq, response->dst, resp, in gas_server_send_resp() 166 gas_server_rx_initial_req(struct gas_server *gas, const u8 *da, const u8 *sa, in gas_server_rx_initial_req() argument 226 dl_list_for_each(handler, &gas->handlers, struct gas_server_handler, in gas_server_rx_initial_req() 239 dl_list_add(&gas->responses, &response->list); in gas_server_rx_initial_req() 256 gas_server_send_resp(gas, response, resp, comeback_delay); in gas_server_rx_initial_req() 271 struct gas_server *gas = handler->gas; in gas_server_handle_rx_comeback_req() local 341 gas->tx(gas->ctx, response->freq, response->dst, resp, wait_time); in gas_server_handle_rx_comeback_req() 347 gas_server_rx_comeback_req(struct gas_server *gas, const u8 *da, const u8 *sa, in gas_server_rx_comeback_req() argument [all …]
|
H A D | gas_server.h | 23 void gas_server_deinit(struct gas_server *gas); 24 int gas_server_register(struct gas_server *gas, 33 int gas_server_rx(struct gas_server *gas, const u8 *da, const u8 *sa, 36 void gas_server_tx_status(struct gas_server *gas, const u8 *dst, const u8 *data, 38 int gas_server_set_comeback_delay(struct gas_server *gas, void *resp_ctx, 40 int gas_server_set_resp(struct gas_server *gas, void *resp_ctx, 42 bool gas_server_response_sent(struct gas_server *gas, void *resp_ctx); 46 static inline void gas_server_deinit(struct gas_server *gas) in gas_server_deinit() argument
|
H A D | Makefile | 9 gas.o \
|
/freebsd/sys/dev/acpica/ |
H A D | acpi_package.c | 119 ACPI_GENERIC_ADDRESS gas; in acpi_PkgGas() local 127 memcpy(&gas, obj->Buffer.Pointer + 3, sizeof(gas)); in acpi_PkgGas() 129 return (acpi_bus_alloc_gas(dev, type, rid, &gas, dst, flags)); in acpi_PkgGas() 136 ACPI_GENERIC_ADDRESS gas; in acpi_PkgFFH_IntelCpu() local 144 memcpy(&gas, obj->Buffer.Pointer + 3, sizeof(gas)); in acpi_PkgFFH_IntelCpu() 145 if (gas.SpaceId != ACPI_ADR_SPACE_FIXED_HARDWARE) in acpi_PkgFFH_IntelCpu() 147 *vendor = gas.BitWidth; in acpi_PkgFFH_IntelCpu() 148 *class = gas.BitOffset; in acpi_PkgFFH_IntelCpu() 149 *address = gas.Address; in acpi_PkgFFH_IntelCpu() 150 *accsize = gas.AccessWidth; in acpi_PkgFFH_IntelCpu()
|
H A D | acpi_throttle.c | 238 ACPI_GENERIC_ADDRESS gas; in acpi_throttle_evaluate() local 277 memcpy(&gas, obj.Buffer.Pointer + 3, sizeof(gas)); in acpi_throttle_evaluate() 279 &gas, &sc->cpu_p_cnt, 0); in acpi_throttle_evaluate() 282 gas.Address); in acpi_throttle_evaluate() 295 gas.Address = sc->cpu_p_blk; in acpi_throttle_evaluate() 296 gas.SpaceId = ACPI_ADR_SPACE_SYSTEM_IO; in acpi_throttle_evaluate() 297 gas.BitWidth = 32; in acpi_throttle_evaluate() 299 &gas, &sc->cpu_p_cnt, 0); in acpi_throttle_evaluate()
|
H A D | acpi_cpu.c | 700 ACPI_GENERIC_ADDRESS gas; in acpi_cpu_generic_cx_probe() local 728 gas.SpaceId = ACPI_ADR_SPACE_SYSTEM_IO; in acpi_cpu_generic_cx_probe() 729 gas.BitWidth = 8; in acpi_cpu_generic_cx_probe() 731 gas.Address = sc->cpu_p_blk + 4; in acpi_cpu_generic_cx_probe() 734 &gas, &cx_ptr->p_lvlx, RF_SHAREABLE); in acpi_cpu_generic_cx_probe() 748 gas.Address = sc->cpu_p_blk + 5; in acpi_cpu_generic_cx_probe() 751 &gas, &cx_ptr->p_lvlx, RF_SHAREABLE); in acpi_cpu_generic_cx_probe()
|
H A D | acpi.c | 1688 acpi_bus_alloc_gas(device_t dev, int *type, int *rid, ACPI_GENERIC_ADDRESS *gas, in acpi_bus_alloc_gas() argument 1694 if (type == NULL || rid == NULL || gas == NULL || res == NULL) in acpi_bus_alloc_gas() 1698 switch (gas->SpaceId) { in acpi_bus_alloc_gas() 1713 if (gas->BitWidth && gas->BitWidth < 8) in acpi_bus_alloc_gas() 1714 gas->BitWidth = 8; in acpi_bus_alloc_gas() 1717 if (gas->Address == 0 || gas->BitWidth == 0) in acpi_bus_alloc_gas() 1720 bus_set_resource(dev, res_type, *rid, gas->Address, in acpi_bus_alloc_gas() 1721 gas->BitWidth / 8); in acpi_bus_alloc_gas()
|
/freebsd/sys/dev/xen/cpu/ |
H A D | xen_acpi_cpu.c | 87 ACPI_GENERIC_ADDRESS *gas) in acpi_get_gas() argument 95 memcpy(gas, obj->Buffer.Pointer + 3, sizeof(*gas)); in acpi_get_gas() 107 ACPI_GENERIC_ADDRESS gas; in acpi_get_pct() member 118 reg->space_id = raw.gas.SpaceId; in acpi_get_pct() 119 reg->bit_width = raw.gas.BitWidth; in acpi_get_pct() 120 reg->bit_offset = raw.gas.BitOffset; in acpi_get_pct() 121 reg->reserved = raw.gas.AccessWidth; in acpi_get_pct() 122 reg->address = raw.gas.Address; in acpi_get_pct() 294 ACPI_GENERIC_ADDRESS gas; in acpi_fetch_cx() local 303 acpi_get_gas(pkg, 0, &gas) != 0) { in acpi_fetch_cx() [all …]
|
/freebsd/crypto/openssl/crypto/perlasm/ |
H A D | x86_64-xlate.pl | 73 my $gas=1; $gas=0 if ($output =~ /\.asm$/); 74 my $elf=1; $elf=0 if (!$gas); 90 if ($flavour eq "mingw64") { $gas=1; $elf=0; $win64=1; 94 elsif ($flavour eq "macosx") { $gas=1; $elf=0; $prefix="_"; $decor="L\$"; } 95 elsif ($flavour eq "masm") { $gas=0; $elf=0; $masm=$masmref; $win64=1; $decor="\$L\$"; } 96 elsif ($flavour eq "nasm") { $gas=0; $elf=0; $nasm=$nasmref; $win64=1; $decor="\$L\$"; $PTR=""; } 97 elsif (!$gas) 200 if ($gas) { 258 if ($gas) { 343 if ($gas) { [all …]
|
H A D | README.md | 25 and `x86unix.pl` which is the unix (gas) version.
|
/freebsd/sys/dev/wdatwd/ |
H A D | wdatwd.c | 140 ACPI_GENERIC_ADDRESS *gas = &wdat->entry.RegisterRegion; in wdatwd_action() local 146 status = AcpiRead(&x, gas); in wdatwd_action() 151 x >>= gas->BitOffset; in wdatwd_action() 156 status = AcpiRead(&x, gas); in wdatwd_action() 161 x >>= gas->BitOffset; in wdatwd_action() 167 x <<= gas->BitOffset; in wdatwd_action() 170 status = AcpiRead(&y, gas); in wdatwd_action() 175 y &= ~(wdat->entry.Mask << gas->BitOffset); in wdatwd_action() 178 status = AcpiWrite(x, gas); in wdatwd_action() 186 x <<= gas->BitOffset; in wdatwd_action() [all …]
|
/freebsd/usr.sbin/bhyve/ |
H A D | basl.c | 132 basl_fill_gas(ACPI_GENERIC_ADDRESS *const gas, const uint8_t space_id, in basl_fill_gas() argument 136 assert(gas != NULL); in basl_fill_gas() 138 gas->SpaceId = space_id; in basl_fill_gas() 139 gas->BitWidth = bit_width; in basl_fill_gas() 140 gas->BitOffset = bit_offset; in basl_fill_gas() 141 gas->AccessWidth = access_width; in basl_fill_gas() 142 gas->Address = htole64(address); in basl_fill_gas()
|
H A D | basl.h | 66 void basl_fill_gas(ACPI_GENERIC_ADDRESS *gas, uint8_t space_id,
|
/freebsd/usr.sbin/acpi/acpidump/ |
H A D | acpi.c | 57 static void acpi_print_gas(ACPI_GENERIC_ADDRESS *gas); 192 acpi_print_gas(ACPI_GENERIC_ADDRESS *gas) in acpi_print_gas() argument 194 switch(gas->SpaceId) { in acpi_print_gas() 196 printf("0x%016jx:%u[%u] (Memory)", (uintmax_t)gas->Address, in acpi_print_gas() 197 gas->BitOffset, gas->BitWidth); in acpi_print_gas() 200 printf("0x%02jx:%u[%u] (IO)", (uintmax_t)gas->Address, in acpi_print_gas() 201 gas->BitOffset, gas->BitWidth); in acpi_print_gas() 204 printf("%x:%x+0x%x:%u[%u] (PCI)", (uint16_t)(gas->Address >> 32), in acpi_print_gas() 205 (uint16_t)((gas->Address >> 16) & 0xffff), in acpi_print_gas() 206 (uint16_t)gas->Address, gas->BitOffset, gas->BitWidth); in acpi_print_gas() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/iio/chemical/ |
H A D | sensirion,sgp30.txt | 12 gas@58 {
|
/freebsd/usr.sbin/wpa/src/common/ |
H A D | Makefile | 16 gas.c \
|
/freebsd/sys/contrib/device-tree/Bindings/iio/potentiostat/ |
H A D | lmp91000.txt | 22 - ti,rload-ohm: ohm value of the internal resistor load applied to the gas
|
/freebsd/contrib/diff/ |
H A D | ABOUT-NLS | 215 gas | [] | 352 gas | [] | 489 gas | | 626 gas | [] | 3
|
/freebsd/contrib/bmake/mk/sys/ |
H A D | HP-UX.mk | 47 AS ?= gas
|
/freebsd/usr.sbin/crunch/examples/ |
H A D | really-big.conf | 111 progs bc cpio diff diff3 gas gawk grep gzip sdiff sort tar
|
/freebsd/share/dict/ |
H A D | web2a | 150 acetylene gas 601 air gas 1013 all-gas 2687 asphyxiating gas 6475 blue-cross gas 8764 burner gas 9790 carbonic-acid gas 9819 carbureted-hydrogen gas 10287 casing-head gas 10940 chamber gas [all …]
|