Searched defs:retries (Results 1 - 10 of 10) sorted by relevance
/vbox/src/VBox/Devices/PC/BIOS/ |
H A D | ps2mouse.c | 77 int retries = 10000; local 80 while ((inb(0x64) & 0x21) != 0x21 && retries) 81 --retries; 83 if (!retries)
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/bus/ |
H A D | pcivpd.c | 74 unsigned int retries; local 92 for ( retries = 0 ; retries < PCI_VPD_MAX_WAIT_MS ; retries++ ) { 132 unsigned int retries; local 153 for ( retries = 0 ; retries < PCI_VPD_MAX_WAIT_MS ; retries++ ) {
|
/vbox/src/VBox/Devices/PC/ipxe/src/net/80211/ |
H A D | rc80211.c | 86 /** Two-bit packet status indicator for a packet with no retries */ 92 /** Two-bit packet status indicator for a TX packet with multiple retries 95 * retries; we rely instead on the fact that failed RX packets won't 279 * @v retries Number of times packet was retried before success 283 int rate_idx, int retries, int failed ) 294 else if ( retries > 1 ) 296 else if ( retries ) 312 * @v retries Number of times packet was transmitted before success 315 void rc80211_update_tx ( struct net80211_device *dev, int retries, int rc ) argument 322 rc80211_update ( dev, TX, dev->rate, retries, r 282 rc80211_update( struct net80211_device *dev, int direction, int rate_idx, int retries, int failed ) argument [all...] |
H A D | net80211.c | 1672 /* Timed out - fail if too many retries, or retry */ 2798 * @v retries Number of times this packet was retransmitted 2806 * properly ACKed the first time, @a retries should be 0. 2809 struct io_buffer *iob, int retries, int rc ) 2813 rc80211_update_tx ( dev, retries, rc ); 2808 net80211_tx_complete( struct net80211_device *dev, struct io_buffer *iob, int retries, int rc ) argument
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ |
H A D | dns.c | 96 /** DNS maximum number of retries when asking for a name, before "timeout". */ 172 u8_t retries; member in struct:dns_table_entry 299 * The DNS resolver client timer - handle retries and timeouts and should 653 pEntry->retries = 0; 666 if (++pEntry->retries == DNS_MAX_RETRIES) { 671 pEntry->retries = 0; 686 pEntry->tmr = pEntry->retries;
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/block/ |
H A D | scsi.c | 38 /** Maximum number of command retries */ 255 unsigned int retries; member in struct:scsi_command 429 if ( ( rc != 0 ) && ( scsicmd->retries++ < SCSICMD_MAX_RETRIES ) ) { 434 scsidev, scsicmd->tag, scsicmd->retries );
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ |
H A D | skge.c | 1004 unsigned retries = 1000; local 1024 } while (--retries > 0);
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/tg3/ |
H A D | tg3_phy.c | 444 int retries, do_phy_reset, err; local 446 retries = 10; 485 } while (--retries);
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/phantom/ |
H A D | phantom.c | 412 unsigned int retries; local 422 for ( retries = 0 ; retries < PHN_TEST_MEM_TIMEOUT_MS ; retries++ ) { 545 unsigned int retries; local 548 for ( retries = 0 ; retries < PHN_ISSUE_CMD_TIMEOUT_MS ; retries++ ) { 1490 unsigned int retries; local 1493 for ( retries 1880 unsigned int retries; local 2024 unsigned int retries; local [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/ |
H A D | ath9k.h | 89 * @BUF_XRETRY: To denote excessive retries of the buffer 207 u8 retries; member in struct:ath_frame_info
|
Completed in 92 milliseconds