|
| #define | GLOBAL_REMOVE_IF_UNREFERENCED |
| | Remove the global variable from the linked image if there are no references to it after all compiler and linker optimizations have been performed.
|
| #define | UNREACHABLE() |
| | Signal compilers and analyzers that this call is not reachable.
|
| #define | NORETURN |
| | Signal compilers and analyzers that the function cannot return.
|
| #define | ANALYZER_UNREACHABLE() |
| | Signal the analyzer that this call is not reachable.
|
| #define | ANALYZER_NORETURN |
| | Signal the analyzer that the function cannot return.
|
| #define | RETURNS_TWICE |
| | Tell the code optimizer that the function will return twice.
|
| #define | _CONCATENATE(a, b) |
| | Private worker functions for ASM_PFX()
|
| #define | __CONCATENATE(a, b) |
| #define | ASM_PFX(name) |
| | The USER_LABEL_PREFIX macro predefined by GNUC represents the prefix on symbols in assembly language.
|
| #define | ASM_FUNCTION_REMOVE_IF_UNREFERENCED |
| #define | PACKED |
| #define | CONST const |
| | Datum is read-only.
|
| #define | STATIC static |
| | Datum is scoped to the current file or function.
|
| #define | VOID void |
| | Undeclared type.
|
| #define | IN |
| | Datum is passed to the function.
|
| #define | OUT |
| | Datum is returned from the function.
|
| #define | OPTIONAL |
| | Passing the datum to the function is optional, and a NULL is passed if the value is not supplied.
|
| #define | TRUE ((BOOLEAN)(1==1)) |
| | Boolean true value.
|
| #define | FALSE ((BOOLEAN)(0==1)) |
| | Boolean false value.
|
| #define | NULL ((VOID *) 0) |
| | NULL pointer (VOID *)
|
| #define | CHAR_NULL 0x0000 |
| #define | MAX_INT8 ((INT8)0x7F) |
| | Maximum values for common UEFI Data Types.
|
| #define | MAX_UINT8 ((UINT8)0xFF) |
| #define | MAX_INT16 ((INT16)0x7FFF) |
| #define | MAX_UINT16 ((UINT16)0xFFFF) |
| #define | MAX_INT32 ((INT32)0x7FFFFFFF) |
| #define | MAX_UINT32 ((UINT32)0xFFFFFFFF) |
| #define | MAX_INT64 ((INT64)0x7FFFFFFFFFFFFFFFULL) |
| #define | MAX_UINT64 ((UINT64)0xFFFFFFFFFFFFFFFFULL) |
| #define | MIN_INT8 (((INT8) -127) - 1) |
| | Minimum values for the signed UEFI Data Types.
|
| #define | MIN_INT16 (((INT16) -32767) - 1) |
| #define | MIN_INT32 (((INT32) -2147483647) - 1) |
| #define | MIN_INT64 (((INT64) -9223372036854775807LL) - 1) |
| #define | BIT0 0x00000001 |
| #define | BIT1 0x00000002 |
| #define | BIT2 0x00000004 |
| #define | BIT3 0x00000008 |
| #define | BIT4 0x00000010 |
| #define | BIT5 0x00000020 |
| #define | BIT6 0x00000040 |
| #define | BIT7 0x00000080 |
| #define | BIT8 0x00000100 |
| #define | BIT9 0x00000200 |
| #define | BIT10 0x00000400 |
| #define | BIT11 0x00000800 |
| #define | BIT12 0x00001000 |
| #define | BIT13 0x00002000 |
| #define | BIT14 0x00004000 |
| #define | BIT15 0x00008000 |
| #define | BIT16 0x00010000 |
| #define | BIT17 0x00020000 |
| #define | BIT18 0x00040000 |
| #define | BIT19 0x00080000 |
| #define | BIT20 0x00100000 |
| #define | BIT21 0x00200000 |
| #define | BIT22 0x00400000 |
| #define | BIT23 0x00800000 |
| #define | BIT24 0x01000000 |
| #define | BIT25 0x02000000 |
| #define | BIT26 0x04000000 |
| #define | BIT27 0x08000000 |
| #define | BIT28 0x10000000 |
| #define | BIT29 0x20000000 |
| #define | BIT30 0x40000000 |
| #define | BIT31 0x80000000 |
| #define | BIT32 0x0000000100000000ULL |
| #define | BIT33 0x0000000200000000ULL |
| #define | BIT34 0x0000000400000000ULL |
| #define | BIT35 0x0000000800000000ULL |
| #define | BIT36 0x0000001000000000ULL |
| #define | BIT37 0x0000002000000000ULL |
| #define | BIT38 0x0000004000000000ULL |
| #define | BIT39 0x0000008000000000ULL |
| #define | BIT40 0x0000010000000000ULL |
| #define | BIT41 0x0000020000000000ULL |
| #define | BIT42 0x0000040000000000ULL |
| #define | BIT43 0x0000080000000000ULL |
| #define | BIT44 0x0000100000000000ULL |
| #define | BIT45 0x0000200000000000ULL |
| #define | BIT46 0x0000400000000000ULL |
| #define | BIT47 0x0000800000000000ULL |
| #define | BIT48 0x0001000000000000ULL |
| #define | BIT49 0x0002000000000000ULL |
| #define | BIT50 0x0004000000000000ULL |
| #define | BIT51 0x0008000000000000ULL |
| #define | BIT52 0x0010000000000000ULL |
| #define | BIT53 0x0020000000000000ULL |
| #define | BIT54 0x0040000000000000ULL |
| #define | BIT55 0x0080000000000000ULL |
| #define | BIT56 0x0100000000000000ULL |
| #define | BIT57 0x0200000000000000ULL |
| #define | BIT58 0x0400000000000000ULL |
| #define | BIT59 0x0800000000000000ULL |
| #define | BIT60 0x1000000000000000ULL |
| #define | BIT61 0x2000000000000000ULL |
| #define | BIT62 0x4000000000000000ULL |
| #define | BIT63 0x8000000000000000ULL |
| #define | SIZE_1KB 0x00000400 |
| #define | SIZE_2KB 0x00000800 |
| #define | SIZE_4KB 0x00001000 |
| #define | SIZE_8KB 0x00002000 |
| #define | SIZE_16KB 0x00004000 |
| #define | SIZE_32KB 0x00008000 |
| #define | SIZE_64KB 0x00010000 |
| #define | SIZE_128KB 0x00020000 |
| #define | SIZE_256KB 0x00040000 |
| #define | SIZE_512KB 0x00080000 |
| #define | SIZE_1MB 0x00100000 |
| #define | SIZE_2MB 0x00200000 |
| #define | SIZE_4MB 0x00400000 |
| #define | SIZE_8MB 0x00800000 |
| #define | SIZE_16MB 0x01000000 |
| #define | SIZE_32MB 0x02000000 |
| #define | SIZE_64MB 0x04000000 |
| #define | SIZE_128MB 0x08000000 |
| #define | SIZE_256MB 0x10000000 |
| #define | SIZE_512MB 0x20000000 |
| #define | SIZE_1GB 0x40000000 |
| #define | SIZE_2GB 0x80000000 |
| #define | SIZE_4GB 0x0000000100000000ULL |
| #define | SIZE_8GB 0x0000000200000000ULL |
| #define | SIZE_16GB 0x0000000400000000ULL |
| #define | SIZE_32GB 0x0000000800000000ULL |
| #define | SIZE_64GB 0x0000001000000000ULL |
| #define | SIZE_128GB 0x0000002000000000ULL |
| #define | SIZE_256GB 0x0000004000000000ULL |
| #define | SIZE_512GB 0x0000008000000000ULL |
| #define | SIZE_1TB 0x0000010000000000ULL |
| #define | SIZE_2TB 0x0000020000000000ULL |
| #define | SIZE_4TB 0x0000040000000000ULL |
| #define | SIZE_8TB 0x0000080000000000ULL |
| #define | SIZE_16TB 0x0000100000000000ULL |
| #define | SIZE_32TB 0x0000200000000000ULL |
| #define | SIZE_64TB 0x0000400000000000ULL |
| #define | SIZE_128TB 0x0000800000000000ULL |
| #define | SIZE_256TB 0x0001000000000000ULL |
| #define | SIZE_512TB 0x0002000000000000ULL |
| #define | SIZE_1PB 0x0004000000000000ULL |
| #define | SIZE_2PB 0x0008000000000000ULL |
| #define | SIZE_4PB 0x0010000000000000ULL |
| #define | SIZE_8PB 0x0020000000000000ULL |
| #define | SIZE_16PB 0x0040000000000000ULL |
| #define | SIZE_32PB 0x0080000000000000ULL |
| #define | SIZE_64PB 0x0100000000000000ULL |
| #define | SIZE_128PB 0x0200000000000000ULL |
| #define | SIZE_256PB 0x0400000000000000ULL |
| #define | SIZE_512PB 0x0800000000000000ULL |
| #define | SIZE_1EB 0x1000000000000000ULL |
| #define | SIZE_2EB 0x2000000000000000ULL |
| #define | SIZE_4EB 0x4000000000000000ULL |
| #define | SIZE_8EB 0x8000000000000000ULL |
| #define | BASE_1KB 0x00000400 |
| #define | BASE_2KB 0x00000800 |
| #define | BASE_4KB 0x00001000 |
| #define | BASE_8KB 0x00002000 |
| #define | BASE_16KB 0x00004000 |
| #define | BASE_32KB 0x00008000 |
| #define | BASE_64KB 0x00010000 |
| #define | BASE_128KB 0x00020000 |
| #define | BASE_256KB 0x00040000 |
| #define | BASE_512KB 0x00080000 |
| #define | BASE_1MB 0x00100000 |
| #define | BASE_2MB 0x00200000 |
| #define | BASE_4MB 0x00400000 |
| #define | BASE_8MB 0x00800000 |
| #define | BASE_16MB 0x01000000 |
| #define | BASE_32MB 0x02000000 |
| #define | BASE_64MB 0x04000000 |
| #define | BASE_128MB 0x08000000 |
| #define | BASE_256MB 0x10000000 |
| #define | BASE_512MB 0x20000000 |
| #define | BASE_1GB 0x40000000 |
| #define | BASE_2GB 0x80000000 |
| #define | BASE_4GB 0x0000000100000000ULL |
| #define | BASE_8GB 0x0000000200000000ULL |
| #define | BASE_16GB 0x0000000400000000ULL |
| #define | BASE_32GB 0x0000000800000000ULL |
| #define | BASE_64GB 0x0000001000000000ULL |
| #define | BASE_128GB 0x0000002000000000ULL |
| #define | BASE_256GB 0x0000004000000000ULL |
| #define | BASE_512GB 0x0000008000000000ULL |
| #define | BASE_1TB 0x0000010000000000ULL |
| #define | BASE_2TB 0x0000020000000000ULL |
| #define | BASE_4TB 0x0000040000000000ULL |
| #define | BASE_8TB 0x0000080000000000ULL |
| #define | BASE_16TB 0x0000100000000000ULL |
| #define | BASE_32TB 0x0000200000000000ULL |
| #define | BASE_64TB 0x0000400000000000ULL |
| #define | BASE_128TB 0x0000800000000000ULL |
| #define | BASE_256TB 0x0001000000000000ULL |
| #define | BASE_512TB 0x0002000000000000ULL |
| #define | BASE_1PB 0x0004000000000000ULL |
| #define | BASE_2PB 0x0008000000000000ULL |
| #define | BASE_4PB 0x0010000000000000ULL |
| #define | BASE_8PB 0x0020000000000000ULL |
| #define | BASE_16PB 0x0040000000000000ULL |
| #define | BASE_32PB 0x0080000000000000ULL |
| #define | BASE_64PB 0x0100000000000000ULL |
| #define | BASE_128PB 0x0200000000000000ULL |
| #define | BASE_256PB 0x0400000000000000ULL |
| #define | BASE_512PB 0x0800000000000000ULL |
| #define | BASE_1EB 0x1000000000000000ULL |
| #define | BASE_2EB 0x2000000000000000ULL |
| #define | BASE_4EB 0x4000000000000000ULL |
| #define | BASE_8EB 0x8000000000000000ULL |
| #define | _INT_SIZE_OF(n) |
| | Return the size of argument that has been aligned to sizeof (UINTN).
|
| #define | VA_START(Marker, Parameter) |
| | Retrieves a pointer to the beginning of a variable argument list, based on the name of the parameter that immediately precedes the variable argument list.
|
| #define | VA_ARG(Marker, TYPE) |
| | Returns an argument of a specified type from a variable argument list and updates the pointer to the variable argument list to point to the next argument.
|
| #define | VA_END(Marker) |
| | Terminates the use of a variable argument list.
|
| #define | VA_COPY(Dest, Start) |
| | Initializes a VA_LIST as a copy of an existing VA_LIST.
|
| #define | _BASE_INT_SIZE_OF(TYPE) |
| | Returns the size of a data type in sizeof(UINTN) units rounded up to the nearest UINTN boundary.
|
| #define | BASE_ARG(Marker, TYPE) |
| | Returns an argument of a specified type from a variable argument list and updates the pointer to the variable argument list to point to the next argument.
|
| #define | OFFSET_OF(TYPE, Field) |
| | The macro that returns the byte offset of a field in a data structure.
|
| #define | ALIGNOF(TYPE) |
| | Returns the alignment requirement of a type.
|
| #define | BASE_CR(Record, TYPE, Field) |
| | Macro that returns a pointer to the data structure that contains a specified field of that data structure.
|
| #define | IS_POW2(Value) |
| | Checks whether a value is a power of two.
|
| #define | IS_ALIGNED(Value, Alignment) |
| | Checks whether a value is aligned by a specified alignment.
|
| #define | ADDRESS_IS_ALIGNED(Address, Alignment) |
| | Checks whether a pointer or address is aligned by a specified alignment.
|
| #define | ALIGN_VALUE_ADDEND(Value, Alignment) |
| | Determines the addend to add to a value to round it up to the next boundary of a specified alignment.
|
| #define | ALIGN_VALUE(Value, Alignment) |
| | Rounds a value up to the next boundary using a specified alignment.
|
| #define | ALIGN_POINTER(Pointer, Alignment) |
| | Adjust a pointer by adding the minimum offset required for it to be aligned on a specified alignment boundary.
|
| #define | ALIGN_VARIABLE(Value) |
| | Rounds a value up to the next natural boundary for the current CPU.
|
| #define | MAX(a, b) |
| | Return the maximum of two operands.
|
| #define | MIN(a, b) |
| | Return the minimum of two operands.
|
| #define | ABS(a) |
| | Return the absolute value of a signed operand.
|
| #define | ENCODE_ERROR(StatusCode) |
| | Produces a RETURN_STATUS code with the highest bit set.
|
| #define | ENCODE_WARNING(StatusCode) |
| | Produces a RETURN_STATUS code with the highest bit clear.
|
| #define | RETURN_ERROR(StatusCode) |
| | Returns TRUE if a specified RETURN_STATUS code is an error code.
|
| #define | RETURN_SUCCESS (RETURN_STATUS)(0) |
| | The operation completed successfully.
|
| #define | RETURN_LOAD_ERROR ENCODE_ERROR (1) |
| | The image failed to load.
|
| #define | RETURN_INVALID_PARAMETER ENCODE_ERROR (2) |
| | The parameter was incorrect.
|
| #define | RETURN_UNSUPPORTED ENCODE_ERROR (3) |
| | The operation is not supported.
|
| #define | RETURN_BAD_BUFFER_SIZE ENCODE_ERROR (4) |
| | The buffer was not the proper size for the request.
|
| #define | RETURN_BUFFER_TOO_SMALL ENCODE_ERROR (5) |
| | The buffer was not large enough to hold the requested data.
|
| #define | RETURN_NOT_READY ENCODE_ERROR (6) |
| | There is no data pending upon return.
|
| #define | RETURN_DEVICE_ERROR ENCODE_ERROR (7) |
| | The physical device reported an error while attempting the operation.
|
| #define | RETURN_WRITE_PROTECTED ENCODE_ERROR (8) |
| | The device can not be written to.
|
| #define | RETURN_OUT_OF_RESOURCES ENCODE_ERROR (9) |
| | The resource has run out.
|
| #define | RETURN_VOLUME_CORRUPTED ENCODE_ERROR (10) |
| | An inconsistency was detected on the file system causing the operation to fail.
|
| #define | RETURN_VOLUME_FULL ENCODE_ERROR (11) |
| | There is no more space on the file system.
|
| #define | RETURN_NO_MEDIA ENCODE_ERROR (12) |
| | The device does not contain any medium to perform the operation.
|
| #define | RETURN_MEDIA_CHANGED ENCODE_ERROR (13) |
| | The medium in the device has changed since the last access.
|
| #define | RETURN_NOT_FOUND ENCODE_ERROR (14) |
| | The item was not found.
|
| #define | RETURN_ACCESS_DENIED ENCODE_ERROR (15) |
| | Access was denied.
|
| #define | RETURN_NO_RESPONSE ENCODE_ERROR (16) |
| | The server was not found or did not respond to the request.
|
| #define | RETURN_NO_MAPPING ENCODE_ERROR (17) |
| | A mapping to the device does not exist.
|
| #define | RETURN_TIMEOUT ENCODE_ERROR (18) |
| | A timeout time expired.
|
| #define | RETURN_NOT_STARTED ENCODE_ERROR (19) |
| | The protocol has not been started.
|
| #define | RETURN_ALREADY_STARTED ENCODE_ERROR (20) |
| | The protocol has already been started.
|
| #define | RETURN_ABORTED ENCODE_ERROR (21) |
| | The operation was aborted.
|
| #define | RETURN_ICMP_ERROR ENCODE_ERROR (22) |
| | An ICMP error occurred during the network operation.
|
| #define | RETURN_TFTP_ERROR ENCODE_ERROR (23) |
| | A TFTP error occurred during the network operation.
|
| #define | RETURN_PROTOCOL_ERROR ENCODE_ERROR (24) |
| | A protocol error occurred during the network operation.
|
| #define | RETURN_INCOMPATIBLE_VERSION ENCODE_ERROR (25) |
| | A function encountered an internal version that was incompatible with a version requested by the caller.
|
| #define | RETURN_SECURITY_VIOLATION ENCODE_ERROR (26) |
| | The function was not performed due to a security violation.
|
| #define | RETURN_CRC_ERROR ENCODE_ERROR (27) |
| | A CRC error was detected.
|
| #define | RETURN_END_OF_MEDIA ENCODE_ERROR (28) |
| | The beginning or end of media was reached.
|
| #define | RETURN_END_OF_FILE ENCODE_ERROR (31) |
| | The end of the file was reached.
|
| #define | RETURN_INVALID_LANGUAGE ENCODE_ERROR (32) |
| | The language specified was invalid.
|
| #define | RETURN_COMPROMISED_DATA ENCODE_ERROR (33) |
| | The security status of the data is unknown or compromised and the data must be updated or replaced to restore a valid security status.
|
| #define | RETURN_IP_ADDRESS_CONFLICT ENCODE_ERROR (34) |
| | There is an address conflict address allocation.
|
| #define | RETURN_HTTP_ERROR ENCODE_ERROR (35) |
| | A HTTP error occurred during the network operation.
|
| #define | RETURN_WARN_UNKNOWN_GLYPH ENCODE_WARNING (1) |
| | The string contained one or more characters that the device could not render and were skipped.
|
| #define | RETURN_WARN_DELETE_FAILURE ENCODE_WARNING (2) |
| | The handle was closed, but the file was not deleted.
|
| #define | RETURN_WARN_WRITE_FAILURE ENCODE_WARNING (3) |
| | The handle was closed, but the data to the file was not flushed properly.
|
| #define | RETURN_WARN_BUFFER_TOO_SMALL ENCODE_WARNING (4) |
| | The resulting buffer was too small, and the data was truncated to the buffer size.
|
| #define | RETURN_WARN_STALE_DATA ENCODE_WARNING (5) |
| | The data has not been updated within the timeframe set by local policy for this type of data.
|
| #define | RETURN_WARN_FILE_SYSTEM ENCODE_WARNING (6) |
| | The resulting buffer contains UEFI-compliant file system.
|
| #define | RETURN_WARN_RESET_REQUIRED ENCODE_WARNING (7) |
| | The operation will be processed across a system reset.
|
| #define | SIGNATURE_16(A, B) |
| | Returns a 16-bit signature built from 2 ASCII characters.
|
| #define | SIGNATURE_32(A, B, C, D) |
| | Returns a 32-bit signature built from 4 ASCII characters.
|
| #define | SIGNATURE_64(A, B, C, D, E, F, G, H) |
| | Returns a 64-bit signature built from 8 ASCII characters.
|
| #define | RETURN_ADDRESS(L) |
| | Get the return address of the calling function.
|
| #define | ARRAY_SIZE(Array) |
| | Return the number of elements in an array.
|
| #define NULL ((VOID *) 0) |
NULL pointer (VOID *)
Definition at line 322 of file Base.h.
Referenced by __divdi3(), __stack_chk_fail(), __udivdi3(), __vxge_hw_device_get_legacy_reg(), __vxge_hw_device_reg_addr_get(), __vxge_hw_device_toc_get(), __vxge_hw_fifo_delete(), __vxge_hw_ring_delete(), __vxge_hw_vpath_alarm_process(), _enter_slk(), _hunt_mcdi(), _leave_slk(), _wgetc(), a3c90x_free_rx_iobuf(), a3c90x_free_rx_ring(), a3c90x_free_tx_ring(), a3c90x_process_rx_packets(), a3c90x_refill_rx_ring(), a3c90x_setup_rx_ring(), acm_poll(), acpi_describe(), acpi_find(), acpi_find_via_rsdt(), acpi_ioremap(), acpi_settings_init(), acpi_test_find(), add_dynui_item(), add_parameter(), add_tls(), alloc_form(), alloc_gpios(), alloc_image(), alloc_iob_fail_okx(), alloc_iob_okx(), alloc_iob_raw(), alloc_netdev(), alloc_pixbuf(), alloc_rndis(), alloc_rx_iob(), alloc_sandev(), alloc_uart(), alloc_usb(), alloc_usb_bus(), alloc_usb_hub(), aoecmd_create(), aoecmd_find_tag(), aoecmd_new_tag(), aoecmd_tx(), applicable_setting(), apply_dns_search(), apply_dns_servers(), apply_peerdisc_settings(), apply_peerdist_settings(), apply_syslog_settings(), apply_syslogs_settings(), ar5008_hw_set_rfmode(), ar9002_hw_attach_phy_ops(), ar9002_hw_init_cal(), ar9003_eeprom_struct_find_by_id(), ar9003_hw_init_cal(), ar9003_hw_init_mode_regs(), ar9003_hw_set_rfmode(), ar9003_hw_spur_mitigate_mrc_cck(), ar9300_compress_decision(), arbel_alloc(), arbel_alloc_icm(), arbel_cmd_2rst_qpee(), arbel_cmd_close_hca(), arbel_cmd_close_ib(), arbel_cmd_conf_special_qp(), arbel_cmd_disable_lam(), arbel_cmd_enable_lam(), arbel_cmd_hw2sw_cq(), arbel_cmd_hw2sw_eq(), arbel_cmd_init2rtr_qpee(), arbel_cmd_init_hca(), arbel_cmd_init_ib(), arbel_cmd_map_eq(), arbel_cmd_map_fa(), arbel_cmd_map_icm(), arbel_cmd_map_icm_aux(), arbel_cmd_query_cq(), arbel_cmd_query_dev_lim(), arbel_cmd_query_fw(), arbel_cmd_query_qpee(), arbel_cmd_read_mgm(), arbel_cmd_rst2init_qpee(), arbel_cmd_rtr2rts_qpee(), arbel_cmd_rts2rts_qpee(), arbel_cmd_run_fw(), arbel_cmd_sw2hw_cq(), arbel_cmd_sw2hw_eq(), arbel_cmd_sw2hw_mpt(), arbel_cmd_unmap_fa(), arbel_cmd_unmap_icm(), arbel_cmd_unmap_icm_aux(), arbel_cmd_write_mgm(), arbel_complete(), arbel_destroy_cq(), arbel_destroy_qp(), arbel_free_icm(), arbel_post_send(), arbel_stop_firmware(), arc4_skip(), arp_find_protocol(), asn1_curve_algorithm(), asn1_digest_algorithm(), asn1_find_algorithm(), asn1_grow(), asn1_parse_cbc(), asn1_pubkey_algorithm(), asn1_signature_algorithm(), ata_open(), atadev_read_capacity(), ath5k_desc_alloc(), ath5k_desc_free(), ath5k_eeprom_free_pcal_info(), ath5k_handle_rx(), ath5k_hw_attach(), ath5k_hw_gainf_calibrate(), ath5k_hw_reset(), ath5k_hw_rf_check_gainf_readback(), ath5k_hw_rf_gainf_corr(), ath5k_hw_rfb_op(), ath5k_hw_rfregs_init(), ath5k_hw_setup_tx_queue(), ath5k_init(), ath5k_poll(), ath5k_rx_iob_alloc(), ath5k_rx_start(), ath5k_rx_stop(), ath5k_rxbuf_free(), ath5k_rxbuf_setup(), ath5k_stop_hw(), ath5k_tx(), ath5k_tx_processq(), ath5k_txbuf_free(), ath5k_txbuf_setup(), ath5k_txq_drainq(), ath5k_txq_setup(), ath9k_deinit_softc(), ath9k_hw_disable(), ath9k_hw_loadnf(), ath9k_hw_phy_disable(), ath9k_hw_reset(), ath9k_hw_reset_calvalid(), ath9k_hw_set_4k_power_cal_table(), ath9k_hw_set_ar9287_power_cal_table(), ath9k_hw_set_ar9287_power_per_rate_table(), ath9k_hw_set_def_power_cal_table(), ath9k_hw_set_power_awake(), ath9k_hw_setuptxqueue(), ath9k_init_softc(), ath9k_stop(), ath_descdma_setup(), ath_draintxq(), ath_get_next_rx_buf(), ath_rx_buf_link(), ath_rx_cleanup(), ath_rx_init(), ath_rx_tasklet(), ath_set_channel(), ath_startrecv(), ath_stoprecv(), ath_tx_complete_buf(), ath_tx_get_buffer(), ath_tx_processq(), ath_tx_setup_buffer(), ath_tx_start_dma(), ath_tx_txqaddbuf(), ath_txq_setup(), atl1e_clean_rx_irq(), atl1e_clean_rx_ring(), atl1e_clean_tx_irq(), atl1e_clean_tx_ring(), atl1e_configure_des_ring(), atl1e_free_ring_resources(), atl1e_init_ring_ptrs(), atl1e_init_ring_resources(), atl1e_probe(), atl1e_setup_ring_resources(), atl1e_tx_map(), atl_poll_rx(), atl_ring_free(), atl_rx_ring_fill(), autovivify_child_settings(), axge_in_complete(), axge_poll(), b44_free_rx_ring(), b44_free_tx_ring(), b44_process_rx_packets(), b44_rx_refill(), b44_tx_complete(), bigint_mod_exp_raw(), bios_ansi_seq(), block_translate(), bnx2_init_nvram(), bnxt_down_pci(), bnxt_free_hwrm_mem(), bnxt_free_rings_mem(), bnxt_free_rx_iob(), bnxt_init_one(), bnxt_rx_process(), bofm_find_busdevfn(), bofm_locate_section(), buffered_line(), builtin_init(), cachedhcp_apply(), cachedhcp_free(), cachedhcp_startup_early(), ccmp_decrypt(), ccmp_encrypt(), cdc_union_descriptor(), cert_exec(), certstat(), certstore_apply_settings(), certstore_init(), cgem_close(), cgem_destroy_ring(), cgem_poll_rx(), cgem_refill_rx(), chained_locate(), chap_init(), chap_respond(), chap_update(), check_blocks(), churi(), cipher_decrypt_okx(), cipher_encrypt_okx(), clear_value(), cms_cipher_key(), cms_decrypt(), cms_decrypt_okx(), cms_is_encrypted(), cms_is_signature(), cms_keypair_okx(), cms_parse_enveloped(), cms_recipient(), cms_test_exec(), cms_verify_signer(), com32_cfarcall(), comboot_fetch_kernel(), comboot_resolv(), command_terminator(), concat_args(), console_exec(), console_reset(), cpio_name_len(), cpio_okx(), CPIO_TEST(), cpuid_settings_init(), create_dynui(), create_fakedhcpack(), create_fakepxebsack(), create_parameters(), create_pinger(), deflate_finished(), deflate_inflate(), deflate_test_exec(), delete_character(), delete_setting(), derwin(), dhcp_create_request(), dhcp_has_pxeopts(), dhcp_proxy_rx(), dhcp_pxebs_rx(), dhcp_request_rx(), dhcpopt_fetch(), dhcppkt_fetch(), dhcppkt_init(), dhcppkt_settings_applies(), dhcppkt_store(), dhcpv6_option(), dhcpv6_register(), dhcpv6_rx(), dhcpv6_tx(), dhcpv6_user_class(), digest_okx(), dm96xx_intr_complete(), dm96xx_poll(), dm96xx_write_register(), dma_mapped(), dma_op_alloc(), dma_op_free(), dma_op_ufree(), dma_op_umalloc(), dma_op_unmap(), DMAAPI_INLINE(), DNS_DECODE(), DNS_DECODE(), DNS_DECODE(), DNS_DECODE(), DNS_DECODE(), DNS_DECODE(), dns_decode_fail_okx(), dns_decode_okx(), dns_encode_fail_okx(), dns_resolv(), draw_editbox(), draw_errors(), draw_form(), draw_info_row(), draw_menu_item(), draw_menu_items(), draw_setting_row(), draw_setting_rows(), drbg_generate(), drbg_instantiate(), drbg_reseed(), drbg_uninstantiate(), dt_ioremap(), dt_remove_node(), dupwin(), dwmac_close(), dwmac_destroy_ring(), dwmac_poll_rx(), dwmac_refill_rx(), dynui_item(), dynui_shortcut(), eapol_expired(), ecam_access(), ecam_discover(), ecdsa_parse_key(), ecdsa_sign_rs(), ecm_ethernet_descriptor(), ecm_open(), ecm_poll(), ecm_probe(), edit_setting(), editstring_okx(), EDITSTRING_TEST(), EDITSTRING_TEST(), efab_alloc_resources(), efab_fill_rx_queue(), efab_probe(), efab_receive(), efab_remove(), efab_transmit(), efab_transmit_done(), efi_aoe_path(), efi_binding_name(), efi_binding_name2(), efi_block_boot(), efi_block_connect(), efi_block_exec(), efi_block_hook(), efi_block_label(), efi_block_scan(), efi_block_unhook(), efi_bofm_start(), efi_bofm_supported(), efi_boot_path(), efi_cacert(), efi_cacert_all(), efi_cacert_shutdown(), efi_close_by_child(), efi_close_by_driver(), efi_close_unsafe(), efi_conin_name(), efi_connect(), efi_conout_name(), efi_console_init(), efi_current_boot_path(), efi_describe(), efi_devpath_text(), efi_disconnect(), efi_download_install(), efi_download_start(), efi_download_uninstall(), efi_driver_connect(), efi_driver_controller_name(), efi_driver_exclude(), efi_driver_handles(), efi_driver_install(), efi_driver_name(), efi_driver_name2(), efi_driver_reconnect(), efi_driver_stop(), efi_driver_supported(), efi_driver_uninstall(), efi_entropy_enable(), efi_fcp_path(), efi_file_find(), efi_file_install(), efi_file_len(), efi_file_open(), efi_file_path_claim(), efi_file_path_install(), efi_file_path_uninstall(), efi_file_read_initrd(), efi_file_uninstall(), efi_find_rsdt(), efi_find_table(), efi_first_loaded_image_name(), efi_get_time(), efi_guid_ntoa(), efi_handle_name(), efi_ib_srp_path(), efi_ifr_form_set_op(), efi_ifr_op(), efi_ifr_package(), efi_ifr_string(), efi_image_cmdline(), efi_image_exec(), efi_image_path(), efi_image_probe(), efi_init(), efi_install_multiple_protocol_interfaces_wrapper(), efi_install_table(), efi_iscsi_path(), efi_load_path(), efi_loaded_image_filepath_name(), efi_local_check_volume_name(), efi_local_close(), efi_local_len(), efi_local_open(), efi_local_open_volume(), efi_local_step(), efi_mp_start_all(), efi_netdev_path(), efi_open_by_child_untyped(), efi_open_by_driver_untyped(), efi_open_unsafe_untyped(), efi_open_untyped(), efi_path_end(), efi_path_mac(), efi_path_net_probe(), efi_path_next(), efi_path_uri(), efi_paths(), efi_pecoff_debug_name(), efi_poweroff(), efi_pxe_find(), efi_pxe_install(), efi_pxe_mtftp(), efi_pxe_start(), efi_pxe_udp_deliver(), efi_pxe_uninstall(), efi_reboot(), efi_shim_unlock(), efi_snp_demux(), efi_snp_get_status(), efi_snp_hii_extract_config(), efi_snp_hii_fetch(), efi_snp_hii_install(), efi_snp_hii_package_list(), efi_snp_hii_process(), efi_snp_hii_questions(), efi_snp_hii_route_config(), efi_snp_hii_uninstall(), efi_snp_probe(), efi_snp_remove(), efi_tick_startup(), efi_undi_snpdev(), efi_undi_station_address(), efi_undi_transmit(), efi_uninstall_multiple_protocol_interfaces_wrapper(), efi_uninstall_table(), efi_urealloc(), efi_uri_path(), efi_usb_async_start(), efi_usb_async_stop(), efi_usb_free_all(), efi_usb_install(), efi_usb_path(), efi_usb_probe(), efi_usb_uninstall(), efi_vasprintf(), efi_veto(), efi_veto_close(), efi_veto_disconnect(), efi_veto_find(), efi_veto_uninstall(), efi_watchdog_shutdown(), efidev_alloc(), efidev_find(), efidev_parent(), efifb_configure(), efifb_draw(), efifb_init(), efipci_discover_any(), efipci_dma_alloc(), efipci_dma_map(), efipci_dma_set_mask(), efipci_dma_unmap(), efipci_info(), efirng_get_noise(), efivars_fetch(), efivars_init(), efx_hunt_alloc_special_buffer(), efx_hunt_close(), efx_hunt_ev_init(), efx_hunt_receive(), efx_hunt_rx_init(), efx_hunt_rxq_fill(), efx_hunt_transmit(), efx_hunt_transmit_done(), efx_remove(), ehci_dequeue(), ehci_device_address(), ehci_endpoint_message(), ehci_enqueue(), ehci_ring_free(), eisabus_probe(), elliptic_curve_okx(), empty_line_buffer(), ena_cancel_tx(), ena_create_sq(), ena_empty_rx(), ena_poll_rx(), ena_poll_tx(), ena_refill_rx(), ena_transmit(), endwin(), eoib_close(), eoib_find(), eoib_find_peer(), eoib_has_gateway(), eoib_open(), eoib_set_gateway(), eoib_tx_av(), eth_probe(), exanic_close(), exanic_poll_rx(), execv(), expand_settings(), expand_tokens(), falcon_alloc_special_buffer(), falcon_probe_spi(), fbcon_handle_sgr(), fc_els_create(), fc_els_detect(), fc_els_prli_descriptor(), fc_peer_create(), fc_peer_examine(), fc_peer_get_port_id(), fc_peer_get_wwn(), fc_peer_login(), fc_peer_logout(), fc_port_demux(), fc_port_find(), fc_port_open(), fc_ulp_attach(), fc_ulp_create(), fc_ulp_detach(), fc_ulp_get_port_id_type(), fc_ulp_get_type(), fc_ulp_get_wwn_type(), fc_ulp_login(), fc_ulp_logout(), fc_xchg_create(), fc_xchg_respond(), fcoe_fip_parse(), fcp_rsp_response_data(), fcp_rsp_sense_data(), fcpdev_identify_device(), fcpdev_open(), fcpdev_scsi_command(), fdt_alias(), fdt_bootargs(), fdt_exec(), fdt_strings(), fdt_test_exec(), fdtcon_default(), fdtmem_describe(), fdtmem_update_tree(), fetch_next_server_and_filename(), fetch_raw_setting(), fetch_raw_setting_copy(), fetch_root_path(), fetch_san_filename(), fetch_setting(), fetch_setting_alloc(), fetch_string_setting_copy(), fetchf_setting(), fetchf_setting_copy(), fetchn_setting(), find_child_settings(), find_closest_error(), find_dhcp_packet_field(), find_dynui(), find_error(), find_gdb_transport(), find_generic_setting(), find_ibdev(), find_image(), find_image_tag(), find_netdev(), find_netdev_by_location(), find_netdev_by_scope_id(), find_netdev_configurator(), find_parameters(), find_pxe_api_call(), find_setting(), find_setting_type(), find_smbios3_entry(), find_smbios_entry(), find_snpdev(), find_strings_terminator(), find_usb(), find_usb_bus(), find_usb_bus_by_location(), flexboot_nodnic_allocate_infiniband_devices(), flexboot_nodnic_complete(), flexboot_nodnic_create_cq(), flexboot_nodnic_create_qp(), flexboot_nodnic_dealloc_uar(), flexboot_nodnic_eth_close(), flexboot_nodnic_eth_complete_recv(), flexboot_nodnic_eth_open(), flexboot_nodnic_eth_transmit(), flexboot_nodnic_find_wq(), flexboot_nodnic_ports_register_dev(), flexboot_nodnic_post_send(), flexboot_nodnic_probe(), flexboot_nodnic_register_netdev(), flexboot_nodnic_set_ports_type(), flexboot_nodnic_thin_init_ports(), format_uri(), format_uri_alloc(), fragment_find(), fragment_reassemble(), free_image(), free_mlx_utils(), free_usb(), free_usb_hub(), ftp_open(), ftp_reply(), gcm_multiply_x_8(), gcm_setiv(), gdbserial_configure(), gdbstub_breakpoint(), gdbstub_continue(), gdbstub_read_mem(), gdbudp_configure(), gdbudp_init(), gdbudp_recv(), generic_settings_init(), generic_settings_store(), get_argv_argument(), get_random_nz(), getopt(), golan_alloc(), golan_calc_sig(), golan_complete(), golan_destroy_cq(), golan_destroy_qp(), golan_free_fw_areas(), golan_ib_close(), golan_ib_open(), golan_init_fw_areas(), golan_mcast_attach(), golan_next_eqe_sw(), golan_post_send(), golan_probe(), golan_provide_pages(), gpios_find(), guestinfo_fetch(), guestinfo_fetch_type(), guestinfo_init(), guestinfo_net_probe(), guestrpc_command(), gve_cancel_tx(), gve_poll_rx(), gve_poll_tx(), gve_probe(), gve_transmit(), gzip_okx(), has_input(), hash_df(), have_pxe_menu(), heap_alloc_block(), heap_realloc(), hermon_alloc(), hermon_cmd_2rst_qp(), hermon_cmd_close_hca(), hermon_cmd_close_port(), hermon_cmd_conf_special_qp(), hermon_cmd_hw2sw_cq(), hermon_cmd_hw2sw_eq(), hermon_cmd_hw2sw_mpt(), hermon_cmd_init2rtr_qp(), hermon_cmd_init_hca(), hermon_cmd_init_port(), hermon_cmd_map_eq(), hermon_cmd_map_fa(), hermon_cmd_map_icm(), hermon_cmd_map_icm_aux(), hermon_cmd_query_cq(), hermon_cmd_query_dev_cap(), hermon_cmd_query_eq(), hermon_cmd_query_fw(), hermon_cmd_query_port(), hermon_cmd_query_qp(), hermon_cmd_read_mcg(), hermon_cmd_rst2init_qp(), hermon_cmd_rtr2rts_qp(), hermon_cmd_rts2rts_qp(), hermon_cmd_run_fw(), hermon_cmd_sense_port(), hermon_cmd_set_port(), hermon_cmd_sw2hw_cq(), hermon_cmd_sw2hw_eq(), hermon_cmd_sw2hw_mpt(), hermon_cmd_unmap_fa(), hermon_cmd_unmap_icm(), hermon_cmd_unmap_icm_aux(), hermon_cmd_write_mcg(), hermon_cmd_write_mtt(), hermon_complete(), hermon_destroy_cq(), hermon_destroy_qp(), hermon_eth_transmit(), hermon_post_send(), hermon_probe(), hermon_set_port_type(), hermon_stop_firmware(), history_append(), history_cleanup(), history_free(), history_move(), hmac_drbg_generate(), hmac_drbg_instantiate(), hmac_drbg_reseed(), hmac_drbg_update(), hmac_drbg_update_key(), hmac_drbg_update_value(), http_authentication(), http_block_read(), http_block_read_capacity(), http_close(), http_conn_close(), http_connect(), http_content_buffer(), http_format_basic_auth(), http_format_digest_auth(), http_format_headers(), http_ntlm_authenticate(), http_open(), http_open_uri(), http_parse_connection(), http_parse_headers(), http_parse_ntlm_auth(), http_parse_status(), http_parse_www_authenticate(), http_peerdist_supported(), http_rx_chunk_data(), http_rx_chunk_len(), http_rx_headers(), http_rx_trailers(), http_scheme(), http_token(), http_transfer_complete(), http_tx_request(), https_filter(), hub_probe(), hunt_alloc_vis(), hunt_check_link(), hunt_enable_workaround_35388(), hunt_ev_fini(), hunt_free_vis(), hunt_get_mac(), hunt_get_phy_cfg(), hunt_get_port_assignment(), hunt_get_workarounds(), hunt_mac_addr(), hunt_reset(), hunt_rx_filter_remove(), hunt_rx_fini(), hunt_rx_init(), hunt_set_mac(), hunt_tx_fini(), hunt_tx_init(), hv_alloc_pages(), hv_free_pages(), hv_post_message(), hv_probe(), hv_remove(), hv_signal_event(), hvm_ioremap(), hvm_map_xenstore(), hw_open(), i2c_check_presence(), ib_cm_find(), ib_cm_path_complete(), ib_cm_req_complete(), ib_cmrc_open(), ib_cmrc_xfer_deliver(), ib_create_conn(), ib_create_madx(), ib_create_path(), ib_create_service_madx(), ib_destroy_mi(), ib_destroy_qp(), ib_find_path_cache_entry(), ib_find_qp_mgid(), ib_find_qp_qpn(), ib_find_wq(), ib_mcast_attach(), ib_mcast_complete(), ib_mcast_detach(), ib_mcast_join(), ib_mcast_leave(), ib_mi_timer_expired(), ib_path_complete(), ib_pull(), ib_push(), ib_sma_node_desc(), ib_srp_parse_sgid(), ibft_alloc_string(), ibft_fill_nic(), ibft_install(), ibft_set_string_setting(), ibft_string(), ice_admin_schedule_is_parent(), ice_probe(), icert_cert(), icert_certs(), icert_encode(), icmp_echo_protocol(), icmp_tx_echo(), icmpv6_handler(), icplus_close(), icplus_create_ring(), icplus_destroy_ring(), icplus_poll_rx(), icplus_refill_rx(), identify_device(), ieee80211_next_ie(), ifec_free(), ifec_get_rx_desc(), ifec_net_open(), ifec_refill_rx_ring(), ifec_reprime_ru(), ifec_rx_process(), ifec_rx_setup(), ifec_tx_process(), ifec_tx_setup(), iflinkwait(), igbvf_process_rx_packets(), igbvf_refill_rx_ring(), image_argument(), image_clear_cmdline(), image_exec(), image_extract_exec(), image_memory(), image_set_cmdline(), image_strip_suffix(), imgdecrypt(), imgdownload(), imgsingle_exec(), imgverify(), imux_alloc_iob(), imux_probe(), imux_step(), inc_exec(), inet6_aton(), inet6_ntoa(), init_i2c_bit_basher(), init_media(), init_mlx_utils(), init_spi_bit_basher(), initrd_len(), initrd_load(), initrd_load_all(), initrd_squash_high(), int13_device_path_info(), int15_describe(), intel_destroy_ring(), intel_empty_rx(), intel_poll(), intel_poll_rx(), intel_refill_rx(), intelx_poll(), intelxl_empty_rx(), intelxl_free_ring(), intelxl_poll_rx(), intelxl_refill_rx(), intelxvf_open(), intelxvf_poll(), intf_get_dest_op_no_passthru_untyped(), intf_get_dest_op_untyped(), intf_get_passthru(), intf_temp_init(), iob_concatenate(), iob_split(), ioremap_pages(), ipair_expired(), ipair_rx(), ipair_tx(), ipair_window_changed(), iphone_poll(), iphone_probe(), ipoib_close(), ipoib_find_remac(), ipoib_netdev(), ipoib_translate_tx_arp(), ipv4_netdev(), ipv4_route(), ipv4_route_okx(), ipv4_test_exec(), ipv4_tx(), ipv6_create_routes(), ipv6_miniroute(), ipv6_netdev(), ipv6_route(), ipv6_route_okx(), ipv6_sock_ntoa(), ipv6_table_okx(), ipv6_test_exec(), ipv6_tx(), ipv6conf_demux(), ipxe(), isabus_probe(), isapnp_find_tag(), isapnpbus_probe(), iscsi_build_login_request_strings(), iscsi_close(), iscsi_command_close(), iscsi_fetch_settings(), iscsi_handle_targetaddress_value(), iscsi_open_connection(), iscsi_parse_root_path(), iscsi_rx_buffered_data_done(), iscsi_rx_data_in(), iscsi_scsi_done(), iscsi_scsi_window(), iscsi_start_login(), iscsi_tx_data_out(), item_exec(), jme_alloc_and_feed_iob(), jme_free_rx_buf(), jme_free_rx_resources(), jme_free_tx_buffers(), jme_free_tx_resources(), jme_process_receive(), jme_tx_clean(), keymap_apply(), keymap_find(), kill_eol(), kill_sol(), kill_word(), last_opened_ibdev(), last_opened_netdev(), last_opened_snpdev(), linda_complete_recv(), linda_complete_send(), linda_post_recv(), linda_post_send(), linda_program_uc_ram(), linda_verify_uc_ram(), linebuf_accumulated_okx(), linebuf_consume_okx(), linebuf_empty_okx(), linebuf_init_okx(), LINEBUF_TEST(), LINEBUF_TEST(), LINEBUF_TEST(), LINEBUF_TEST(), LINEBUF_TEST(), list_test_exec(), lldp_probe(), lldp_remove(), lldp_rx(), load_values(), loopback_test(), lotest_dequeue(), lotest_flush(), main(), main_loop(), malloc(), match_long_option(), match_short_option(), max2820_rf_init(), mcabus_probe(), memchr(), memcpy_test_speed(), memmap_init(), memmap_settings_init(), menu_loop(), mii_rw(), mlx_blink_leds(), mlx_get_max_mtu(), mlx_get_max_speed(), mlx_icmd_clear_semaphore(), mlx_icmd_get_semaphore(), mlx_icmd_get_status(), mlx_icmd_go(), mlx_icmd_init(), mlx_icmd_read_buffer(), mlx_icmd_send_command(), mlx_icmd_set_opcode(), mlx_icmd_write_buffer(), mlx_memory_alloc(), mlx_memory_alloc_dma(), mlx_memory_alloc_dma_priv(), mlx_memory_alloc_priv(), mlx_memory_be32_to_cpu(), mlx_memory_cmp(), mlx_memory_cpu_to_be32(), mlx_memory_cpy(), mlx_memory_free(), mlx_memory_free_dma(), mlx_memory_map_dma(), mlx_memory_set(), mlx_memory_ummap_dma(), mlx_memory_zalloc(), mlx_memory_zalloc_priv(), mlx_pci_gw_init(), mlx_pci_gw_read(), mlx_pci_gw_search_capability(), mlx_pci_gw_write(), mlx_pci_init(), mlx_pci_mem_read(), mlx_pci_mem_read_priv(), mlx_pci_mem_write(), mlx_pci_mem_write_priv(), mlx_pci_read(), mlx_pci_teardown(), mlx_pci_write(), mlx_reg_access(), mlx_set_admin_mtu(), mlx_set_link_speed(), mlx_utils_init(), mlx_vmac_query_virt_mac(), mlx_vmac_set_virt_mac(), mnpnet_close(), mnpnet_open(), mnpnet_poll_rx(), mnpnet_poll_tx(), mnpnet_start(), myri10ge_nv_init(), myson_close(), myson_create_ring(), myson_destroy_ring(), myson_poll_rx(), myson_refill_rx(), named_resolv_done(), natsemi_close(), natsemi_create_ring(), natsemi_destroy_ring(), natsemi_poll_rx(), natsemi_refill_rx(), ncm_in_complete(), ncm_poll(), ncm_probe(), ndp_register_settings(), ndp_rx_neighbour_solicitation_ll_source(), ndp_tx_router_solicitation(), neighbour_create(), neighbour_destroy(), neighbour_discovered(), neighbour_find(), neighbour_tx_queue(), net80211_alloc(), net80211_autoassociate(), net80211_free_frags(), net80211_get(), net80211_marshal_request_info(), net80211_mgmt_dequeue(), net80211_netdev_close(), net80211_prepare_assoc(), net80211_probe_finish_best(), net80211_probe_start(), net80211_probe_step(), net80211_rx(), net80211_rx_frag(), net80211_step_associate(), net_discard(), net_poll(), netbios_domain(), netboot(), netdev_configurator_applies(), netdev_irq_supported(), netdev_redirect_settings_init(), netdev_rx_dequeue(), netdev_tx_complete_next_err(), netdev_tx_defer(), netfront_close(), netfront_create_ring(), netfront_destroy_ring(), netfront_open(), netfront_poll_rx(), netfront_pull(), netfront_push(), netfront_read_mac(), netfront_rm(), netfront_transmit(), netfront_write_num(), netvsc_create_ring(), netvsc_destroy_ring(), netvsc_open(), netvsc_recv_completion(), netvsc_recv_data(), netvsc_transmit(), newwin(), nfs_uri_free(), nfs_uri_init(), nfs_uri_next_mountpoint(), nfs_uri_next_path_component(), nii_close(), nii_issue(), nii_issue_cpb(), nii_issue_db(), nii_pci_open(), nii_poll_rx(), nii_poll_tx(), nodnic_cmd_read(), nodnic_cmd_write(), nodnic_device_get_cap(), nodnic_device_get_fw_version(), nodnic_device_init(), nodnic_port_add_mac_filter(), nodnic_port_allocate_dbr_dma(), nodnic_port_allocate_eq(), nodnic_port_allocate_ring_db_dma(), nodnic_port_close(), nodnic_port_cq_dbr_dma_init(), nodnic_port_create_cq(), nodnic_port_create_qp(), nodnic_port_destroy_cq(), nodnic_port_disable_dma(), nodnic_port_enable_dma(), nodnic_port_free_eq(), nodnic_port_get_qpn(), nodnic_port_init(), nodnic_port_query(), nodnic_port_remove_mac_filter(), nodnic_port_rx_pi_dma_alloc(), nodnic_port_set(), nodnic_port_thin_init(), nodnic_port_tx_dbr_dma_init(), nodnic_port_update_ring_doorbell(), nslookup(), ntlm_authenticate_len(), ntlm_authenticate_okx(), ntp(), ntp_request(), numeric_resolv(), nv_alloc_rx(), nv_free_rxtx_resources(), nv_init_rx_ring(), nv_init_tx_ring(), nv_process_rx_packets(), nvconfig_get_boot_default_conf(), nvconfig_get_boot_ext_default_conf(), nvconfig_get_ib_boot_default_conf(), nvconfig_get_ib_dhcp_default_conf(), nvconfig_get_iscsi_gen_default_conf(), nvconfig_get_iscsi_init_dhcp_default_conf(), nvconfig_get_nv_virt_caps_default_conf(), nvconfig_get_nv_virt_default_conf(), nvconfig_get_ocsd_ocbb_default_conf(), nvconfig_get_rom_banner_to_default_conf(), nvconfig_get_rom_cap_default_conf(), nvconfig_get_vpi_link_default_conf(), nvconfig_get_wol_default_conf(), nvconfig_nvdata_access(), nvconfig_nvdata_default_access(), nvconfig_nvdata_invalidate(), nvconfig_nvdata_read_default_value(), nvconfig_query_capability(), nvconfig_read_general_default_values(), nvconfig_read_port_default_values(), nvconfig_read_rom_ini_values(), nvo_applies(), nvo_init(), nvo_realloc(), ocsp_check(), ocsp_parse_basic_response(), ocsp_parse_responses(), ocsp_response(), ocsp_uri_string(), ocsp_validate(), oncrpc_init_cred_sys(), oncrpc_iob_get_cred(), parse_eeprom(), parse_fc_port(), parse_fc_port_id(), parse_gdb_transport(), parse_integer(), parse_kv(), parse_netdev(), parse_netdev_configurator(), parse_setting(), parse_setting_name(), parse_settings(), parse_settings_name(), parse_string(), parse_uri(), parse_uuid(), pci_msix_ioremap(), pci_reset(), pci_settings_init(), PCIAPI_INLINE(), pcibridge_find(), pcibus_probe(), pcicloud_find(), pciscan_exec(), pcnet32_free_rx_resources(), pcnet32_process_rx_packets(), pcnet32_refill_rx_ring(), peerblk_dequeue(), peerblk_discovered(), peerblk_done(), peerblk_enqueue(), peerblk_expired(), peerblk_parse_header(), peerblk_raw_open(), peerblk_reset(), peerblk_retrieval_open(), peerdisc_close(), peerdisc_create(), peerdisc_find(), peerdisc_open(), peerdisc_socket_open(), peerdist_discovery_reply_tag(), peerdist_discovery_reply_values(), peerdist_discovery_request(), peerdist_info(), peerdist_info_block(), peerdist_info_hash_ntoa(), peerdist_info_segment(), peerdist_info_v1(), peerdist_info_v2(), pem_asn1(), phantom_close(), phantom_clp_fetch(), phantom_clp_store(), phantom_open(), phantom_poll(), phantom_refill_rx_ring(), phantom_transmit(), ping(), ping_demux(), ping_open(), pinger_expired(), png_unfilter_pass(), pnic_command_quiet(), pnic_irq(), pnic_poll(), pnic_probe(), pnic_remove(), pnic_transmit(), pnm_type(), posix_fd_to_file(), prism2_find_plx(), privkey_apply_settings(), process_script(), pubkey_okx(), pubkey_sign_okx(), pxe_deactivate(), pxe_exec(), pxe_fake_cached_info(), pxe_menu_boot(), pxe_menu_draw_item(), pxe_menu_parse(), pxe_menu_select(), pxe_netdev_close(), pxe_netdev_open(), pxe_set_netdev(), pxe_tftp_open(), pxe_uri(), pxenv_tftp_read(), pxenv_tftp_read_file(), pxenv_undi_isr(), pxenv_undi_transmit(), qib7322_complete_recv(), qib7322_complete_send(), qib7322_create_send_bufs(), qib7322_post_recv(), qib7322_post_send(), qib7322_reset(), random(), rbg_startup(), rdc_close(), rdc_destroy_ring(), rdc_poll(), rdc_poll_rx(), rdc_refill_rx(), read_value(), readline(), readline_history(), realtek_close(), realtek_destroy_buffer(), realtek_destroy_ring(), realtek_init_eeprom(), realtek_legacy_poll_rx(), realtek_poll_rx(), realtek_refill_rx(), receive_new(), register_image(), register_netdev(), register_sandev(), register_settings(), register_usb(), register_usb_bus(), reparse_options(), resolv(), resolv_setting(), resolve_path(), resolve_uri(), rhine_close(), rhine_destroy_ring(), rhine_poll(), rhine_poll_rx(), rndis_describe(), rndis_open(), rndis_tx_complete_err(), rootcert_init(), rsa_find_prefix(), rsa_parse_mod_exp(), rsdp_find_rsdt(), rsdp_find_rsdt_range(), rsn_pick_desc(), rtl818x_free_rx_ring(), rtl818x_free_tx_ring(), rtl818x_handle_rx(), rtl818x_handle_tx(), rtl818x_probe(), run_tests(), san_default_drive(), sanboot_core_exec(), sandev_apply(), sandev_command_read_capacity(), sandev_command_rw(), sandev_find(), sandev_free(), sandev_needs_reopen(), sandev_next(), sandev_reopen(), sandev_restart(), sandev_undescribe(), sanpath_close(), save_setting(), scancode_to_ansi_seq(), scsi_open(), scsicmd_close(), scsidev_close(), scsidev_read_capacity(), scsidev_test_unit_ready(), sec80211_find_rsn(), sec80211_install(), select_setting_row(), SERIAL_INLINE(), set_dhcp_option(), setjmp_return_ok(), setting_exists(), settings_test_exec(), settings_ui(), shell(), shim_exec(), shomron_fill_eth_send_wqe(), show_form(), show_menu(), sis190_default_phy(), sis190_free(), sis190_get_mac_addr_from_apc(), sis190_phy_task(), sis190_process_rx(), sis190_process_tx(), sis900_probe(), skge_devinit(), skge_down(), skge_free(), skge_probe(), skge_remove(), skge_rx_clean(), skge_rx_done(), skge_rx_refill(), skge_rx_setup(), sky2_free_rings(), sky2_init_netdev(), sky2_probe(), sky2_receive(), sky2_remove(), sky2_rx_alloc(), sky2_rx_clean(), sky2_status_intr(), sky2_xmit_frame(), slam_open(), slam_pull_header(), sleep_fixed(), slirp_poll(), slirp_timer_new(), slk_attr(), slk_attr_set(), slk_attroff(), slk_attron(), slk_attrset(), slk_clear(), slk_colour(), slk_label(), slk_restore(), slk_set(), smbios_clear(), smbios_init(), smbios_string(), smbios_structure(), smbios_version(), smsc75xx_poll(), smsc95xx_poll(), smscusb_intr_complete(), snpnet_close(), snpnet_poll_rx(), snpnet_poll_tx(), snpnet_rx_filters(), snpnet_supported(), snpnet_transmit(), sock_ntoa(), spi_bit_rw(), spi_read(), spi_wait(), spi_write(), srp_find_tag(), srp_new_tag(), srp_open(), srp_rsp_response_data(), srp_rsp_sense_data(), start_dhcpv6(), start_ntp(), start_pxebs(), storef_setting(), storen_setting(), strchr(), string_test_exec(), strpbrk(), strrchr(), strsep(), strstr(), sync(), system(), t509bus_probe(), t515_reset(), TABLE(), TABLE(), TABLE(), tcp_demux(), tcp_first_unclosed(), tcp_first_unfinished(), tcp_open(), tcp_open_uri(), tcp_rx_ack(), tcp_shutdown(), tcp_xmit_reset(), tcp_xmit_sack(), tcpip_net_protocol(), tcpip_netdev(), test_ok(), testnet_close_okx(), testnet_okx(), testnet_open_okx(), testnet_remove_okx(), testnet_set_okx(), tftm_open(), tftp_apply_settings(), tftp_open(), tftp_reopen(), tftp_uri(), tg3_alloc_rx_iob(), tg3_free_consistent(), tg3_init_one(), tg3_lookup_by_subsys(), tg3_refill_prod_ring(), tg3_rx_complete(), tg3_rx_iob_free(), tg3_rx_prodring_fini(), threewire_detect_address_len(), threewire_read(), threewire_write(), timer_probe(), tkip_decrypt(), tkip_encrypt(), TLan_SetMac(), TLan_SetMulticastList(), tls_alloc_iob(), tls_cipherstream_deliver(), tls_clear_handshake(), tls_find_cipher_suite(), tls_find_named_curve(), tls_generate_random(), tls_new_certificate_request(), tls_new_ciphertext(), tls_new_finished(), tls_new_record(), tls_new_server_hello(), tls_new_session_ticket(), tls_parse_chain(), tls_send_certificate_verify(), tls_send_client_key_exchange_pubkey(), tls_send_record(), tls_signature_hash_algorithm(), tls_signature_hash_digest(), tls_signature_hash_pubkey(), tls_validator_done(), trivial_change_key(), trivial_init(), txnic_alloc(), txnic_complete_rqe(), txnic_destroy_rq(), txnic_lmac_probe(), txnic_lmac_probe_all(), txnic_lmac_remove(), txnic_lmac_remove_all(), txnic_refill_rq(), typeof(), uart_find(), udp_demux(), udp_open_common(), udp_open_promisc(), udp_open_uri(), udp_xfer_alloc_iob(), uhci_dequeue(), uhci_device_address(), uhci_endpoint_message(), uhci_endpoint_poll(), uhci_endpoint_stream(), uhci_enqueue(), uhci_restart(), uhci_ring_free(), umalloc(), undinet_poll(), undinet_probe(), undipci_probe(), undipci_remove(), undirom_find_pci(), undirom_probe(), unixtime_fetch(), unregister_settings(), unregister_usb(), unregister_usb_bus(), uri_churi_okx(), uri_dup(), uri_dup_okx(), uri_format_okx(), uri_is_absolute(), uri_params_list_okx(), uri_params_okx(), uri_parse_okx(), uri_port(), uri_port_okx(), uri_pxe_okx(), uri_resolve_okx(), uri_resolve_path_okx(), uriboot(), uristrcmp(), usb_attached(), usb_autoconfigure(), usb_clear_feature(), usb_deconfigure(), usb_endpoint_close(), usb_endpoint_companion_descriptor(), usb_endpoint_descriptor(), usb_endpoint_open(), usb_find_driver(), usb_hotplug(), usb_hub_clear_tt_buffer(), usb_hub_set_hub_depth(), usb_interface_association_descriptor(), usb_interface_descriptor(), usb_refill_limit(), usb_set_address(), usb_set_configuration(), usb_set_feature(), usb_set_interface(), usb_settings_init(), usb_step(), usb_transaction_translator(), usbblk_find(), usbblk_in_data(), usbblk_open(), usbblk_out_data(), usbblk_remove(), usbblk_scsi_close(), usbhid_set_idle(), usbhid_set_protocol(), usbio_bulk_out_poll(), usbio_control_poll(), usbio_interrupt_close(), usbio_interrupt_open(), usbkbd_probe(), usbnet_has_intr(), usbscan_exec(), valert(), valgrind_make_blocks_noaccess(), validator_append(), validator_ocsp_validate(), validator_start_download(), validator_start_ocsp(), validator_step(), validator_xfer_close(), vasprintf(), vcprintf(), velocity_close(), vesafb_configure(), vesafb_mode_list(), virtio_pci_map_capability(), virtnet_enqueue_iob(), virtnet_free_virtqueues(), virtnet_process_tx_packets(), vlan_create(), vlan_find(), vlan_netdev_rx(), vlan_netdev_rx_err(), vmbus_close(), vmbus_find_driver(), vmbus_poll(), vmbus_probe(), vmbus_remove(), vmbus_remove_channels(), vmbus_send(), vmbus_send_cancellation(), vmbus_send_completion(), vmbus_send_control(), vmbus_send_data(), vmbus_xfer_pages(), vmconsole_putchar(), vmxnet3_flush_rx(), vmxnet3_flush_tx(), vmxnet3_poll_events(), vmxnet3_poll_rx(), vmxnet3_poll_tx(), vmxnet3_refill_rx(), vmxnet3_transmit(), vp_free_vq(), vring_get_buf(), vsprintf_test_exec(), vxge_close_vpaths(), vxge_device_register(), vxge_hw_device_hw_info_get(), vxge_hw_device_initialize(), vxge_hw_fifo_free_txdl_get(), vxge_hw_ring_replenish(), vxge_hw_vpath_close(), vxge_hw_vpath_poll_rx(), vxge_probe(), vxge_remove(), vxge_xmit(), vxge_xmit_compl(), vxsetlink(), weierstrass_exec(), weierstrass_multiply(), wep_decrypt(), wep_encrypt(), wpa_alloc_frame(), wpa_find_cryptosystem(), wpa_find_kie(), wpa_handle_1_of_4(), wpa_handle_3_of_4(), wpa_install_ptk(), wpa_start(), wpa_stop(), write_cmd(), x509_alloc_chain(), x509_certificate(), x509_chain_okx(), x509_find(), x509_find_access_method(), x509_find_extension(), x509_find_issuer_serial(), x509_find_key(), x509_find_subject(), x509_first(), x509_found(), x509_free_chain(), x509_invalidate(), x509_last(), x509_parse(), x509_parse_public_key(), x509_set_valid(), x509_validate(), x509_validate_chain(), xcm_find(), xcm_step(), xenbus_backend_state(), xenbus_find_driver(), xenbus_probe(), xenbus_probe_device(), xenbus_probe_type(), xenbus_set_state(), xenstore_directory(), xenstore_dump(), xenstore_request(), xenstore_response(), xenstore_rm(), xenstore_vread(), xenstore_vwrite(), xfer_buffer(), xfer_open_named_socket(), xfer_uri_opener(), xferbuf_detach(), xferbuf_void_realloc(), xhci_bus_close(), xhci_command(), xhci_complete(), xhci_dequeue(), xhci_dequeue_multi(), xhci_device_close(), xhci_device_open(), xhci_endpoint_close(), xhci_endpoint_open(), xhci_enqueue_multi(), xhci_fail(), xhci_ring_free(), xhci_scratchpad_alloc(), xhci_scratchpad_free(), xhci_transfer(), xsigo_discover(), xsigo_free(), xsigo_ib_notify(), xsigo_ib_remove(), xsigo_xcm_complete(), xsigo_xds_complete(), xsmp_rx_xve_install(), xsmp_rx_xve_modify(), xve_find(), yukon_phy_intr(), and zlib_okx().