Searched defs:retries (Results 1 - 10 of 10) sorted by relevance

/vbox/src/VBox/Devices/PC/BIOS/
H A Dps2mouse.c77 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 Dpcivpd.c74 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 Drc80211.c86 /** 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 Dnet80211.c1672 /* 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 Ddns.c96 /** 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 Dscsi.c38 /** 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 Dskge.c1004 unsigned retries = 1000; local
1024 } while (--retries > 0);
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/tg3/
H A Dtg3_phy.c444 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 Dphantom.c412 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 Dath9k.h89 * @BUF_XRETRY: To denote excessive retries of the buffer
207 u8 retries; member in struct:ath_frame_info

Completed in 66 milliseconds