Searched refs:timeout (Results 1 - 11 of 11) sorted by path

/broadcom-cfe-1.4.2/cfe/arch/mips/chipset/bcmsb/src/
H A Ddev_sb_mac.c798 int timeout; local
807 for (timeout = 1000; timeout > 0; timeout -= 100) {
814 if (timeout <= 0)
825 int timeout; local
835 for (timeout = 1000; timeout > 0; timeout -= 100) {
942 unsigned int timeout; local
1077 int timeout; local
[all...]
/broadcom-cfe-1.4.2/cfe/arch/ppc/chipset/mpc824x/src/
H A Ddev_tulip.c1089 return (i > 0) ? 0 : -1; /* Fail on timeout */
1184 POLL(); /* XXX need a timeout */
1234 POLL(); /* XXX need a timeout */
1533 unsigned int timeout; local
1550 timeout = 3000;
1555 timeout -= 500;
1556 if (timeout <= 0) break;
1570 timeout = 3000;
1575 timeout -= 500;
1576 if (timeout <
[all...]
/broadcom-cfe-1.4.2/cfe/dev/
H A Ddev_aic6915.c887 unsigned int timeout; local
901 timeout = 3*CFE_HZ;
904 if ((status & BMSR_ANCOMPLETE) != 0 || timeout <= 0)
907 timeout -= CFE_HZ/2;
H A Ddev_bcm4401.c716 int timeout; local
723 for (timeout = 5000; timeout > 0; timeout -= 100) {
730 if (timeout <= 0)
741 int timeout; local
749 for (timeout = 5000; timeout > 0; timeout -= 100) {
811 unsigned int timeout; local
936 int timeout; local
[all...]
H A Ddev_bcm5700.c1291 unsigned int timeout; local
1306 for (timeout = 4*CFE_HZ; timeout > 0; timeout -= CFE_HZ/2) {
1405 int timeout; local
1412 for (timeout = 4000; (val & mask) != 0 && timeout > 0; timeout -= 100) {
1416 if (timeout <= 0)
1433 int timeout; local
1675 int timeout; local
1925 int timeout; local
[all...]
H A Ddev_dp83815.c1257 int timeout; local
1273 timeout = 3*CFE_HZ;
1276 if ((control && BMCR_RESET) == 0 || timeout <= 0)
1279 timeout -= CFE_HZ/2;
1293 timeout = 3*CFE_HZ;
1296 if ((status & BMSR_ANCOMPLETE) != 0 || timeout <= 0)
1299 timeout -= CFE_HZ/2;
1420 int timeout; local
1474 timeout = 2*CFE_HZ;
1479 == (M_INT_TXRCMP | M_INT_RXRCMP) || timeout <
[all...]
H A Ddev_i82559.c428 do { /* XXX Need a timeout. */
439 do { /* XXX Need a timeout. */
891 int timeout; local
897 for (timeout = 5000; timeout > 0; timeout -= 100) {
904 if (timeout <= 0)
915 int timeout; local
922 for (timeout = 5000; timeout >
983 unsigned int timeout; local
[all...]
H A Ddev_spi_robo.c184 int timeout = 10; local
186 while (timeout-- > 0) {
207 int timeout = 100; local
209 while (timeout-- > 0) {
H A Ddev_tulip.c1038 POLL(); /* XXX need a timeout */
1332 unsigned int timeout; local
1349 timeout = 3000;
1354 timeout -= 500;
1355 if (timeout <= 0) break;
1369 timeout = 3000;
1374 timeout -= 500;
1375 if (timeout <= 0) break;
/broadcom-cfe-1.4.2/cfe/main/
H A Dcfe_xmodem.c169 * xmodem_rxbuf(xmf,chptr,len,timeout)
171 * Receive 'n' characters from remote host, with a timeout
178 * timeout - timeout value in CFE ticks
181 * -1: timeout occured
185 static int xmodem_rxbuf(xmodem_file_t *xmf,uint8_t *chptr,int len,int timeout) argument
191 TIMER_SET(timer,timeout);
207 TIMER_SET(timer,timeout);
237 while (xmodem_rxbuf(xmf,&b,1,CFE_HZ) >= 0) ; /* wait till timeout */
/broadcom-cfe-1.4.2/cfe/net/
H A Dnet_tcp.c107 static void _tcp_sendctlmsg(tcp_info_t *ti,tcb_t *tcb,uint16_t flags,int timeout);
539 /* Send RST with no timeout, don't retransmit it. */
1351 * _tcp_sendctlmsg(ti,tcb,flags,timeout)
1355 * message like a SYN or FIN, with a timeout. We reset the
1363 * timeout - timeout value , in ticks
1369 static void _tcp_sendctlmsg(tcp_info_t *ti,tcb_t *tcb,uint16_t flags,int timeout) argument
1374 if (timeout >= 0) {
1375 if (timeout) {
1376 TIMER_SET(tcb->tcb_timer_retx,timeout);
[all...]

Completed in 96 milliseconds