| /src/sys/fs/nfs/nlm/ |
| nlm_prot_clnt.c | 23 nlm_sm_notify_0(struct nlm_sm_status *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo) 28 timo)); 32 nlm_test_1(struct nlm_testargs *argp, nlm_testres *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo) 37 timo)); 41 nlm_lock_1(struct nlm_lockargs *argp, nlm_res *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo) 46 timo)); 50 nlm_cancel_1(struct nlm_cancargs *argp, nlm_res *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo) 55 timo)); 59 nlm_unlock_1(struct nlm_unlockargs *argp, nlm_res *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo) 64 timo)); [all...] |
| /src/sys/rump/librump/rumpkern/ |
| ltsleep.c | 64 sleeper(wchan_t ident, int timo, bool kinterlock) 81 if (timo) { 83 rv = cv_timedwait(<s.kcv, &qlock, timo); 88 ts.tv_sec = timo / hz; 89 ts.tv_nsec = (timo % hz) * (1000000000/hz); 121 tsleep(wchan_t ident, pri_t prio, const char *wmesg, int timo) 134 rv = sleeper(ident, timo, false); 141 mtsleep(wchan_t ident, pri_t prio, const char *wmesg, int timo, kmutex_t *lock) 147 rv = sleeper(ident, timo, true);
|
| /src/sys/arch/hpcmips/stand/lcboot/ |
| com.c | 106 int timo; local in function:comcnputc 109 timo = 150000; 111 && --timo) 117 timo = 1500000; 119 && --timo)
|
| /src/sys/kern/ |
| kern_condvar.c | 214 * timo is a timeout in ticks. timo = 0 specifies an infinite timeout. 217 cv_timedwait(kcondvar_t *cv, kmutex_t *mtx, int timo) 225 error = sleepq_block(timo, false, &cv_syncobj, nlocks); 239 * timo is a timeout in ticks. timo = 0 specifies an infinite timeout. 242 cv_timedwait_sig(kcondvar_t *cv, kmutex_t *mtx, int timo) 250 error = sleepq_block(timo, true, &cv_syncobj, nlocks); 259 * timo = hz*(sec + frac/2^64) 296 * timo is in units of ticks. We want units of seconds and 2^64ths o 345 int timo; local in function:cv_timedwaitbt 410 int timo; local in function:cv_timedwaitbt_sig [all...] |
| /src/sys/arch/amiga/dev/ |
| parioctl.h | 40 int timo; /* timeout: -1 blocking, 0 non-blocking, >0 msec */ member in struct:parparam
|
| /src/sys/arch/hp300/dev/ |
| ppiioctl.h | 40 int timo; /* timeout: -1 blocking, 0 non-blocking, >0 msec */ member in struct:ppiparam
|
| /src/sys/arch/x68k/include/ |
| parioctl.h | 42 int timo; /* timeout: -1 blocking, 0 non-blocking, >0 msec */ member in struct:parparam
|
| /src/sys/dev/gpib/ |
| ppiio.h | 40 int timo; /* timeout: -1 blocking, 0 non-blocking, >0 msec */ member in struct:ppiparam
|
| /src/sys/arch/i386/stand/lib/ |
| comio_direct.c | 143 int timo; local in function:computc_d 159 timo = 50000; 161 && --timo) 163 if (timo == 0) return 0; 166 timo = 1500000; 168 && --timo) 170 if (timo == 0) return 0;
|
| /src/sys/arch/evbarm/stand/board/ |
| ns16550.c | 112 int timo; local in function:iputchar 115 timo = 50000; 116 while (!ISSET(stat = INB(com_lsr), LSR_TXRDY) && --timo) 122 timo = 1500000; 123 while (!ISSET(stat = INB(com_lsr), LSR_TXRDY) && --timo)
|
| sscom.c | 160 int timo; local in function:iputchar 163 timo = 50000; 164 while (ISSET(stat = INW(SSCOM_UFSTAT), UFSTAT_TXFULL) && --timo) 171 timo = 1500000; 172 while (!ISSET(stat = INW(SSCOM_UFSTAT), UFSTAT_TXFULL) && --timo)
|
| /src/sys/arch/hp300/stand/common/ |
| apci.c | 170 int timo; local in function:apciputchar 174 timo = 50000; 175 while (((stat = apci->ap_lsr) & LSR_TXRDY) == 0 && --timo) 179 timo = 1000000; 180 while (((stat = apci->ap_lsr) & LSR_TXRDY) == 0 && --timo)
|
| dca.c | 132 int timo; local in function:dcaputchar 136 timo = 50000; 137 while (((stat = dca->dca_lsr) & LSR_TXRDY) == 0 && --timo) 141 timo = 1000000; 142 while (((stat = dca->dca_lsr) & LSR_TXRDY) == 0 && --timo)
|
| nhpib.c | 186 int timo = 100000; local in function:nhpibowait 188 while ((hd->hpib_mis & MIS_BO) == 0 && --timo) 190 if (timo == 0) 198 int timo = 100000; local in function:nhpibiwait 200 while ((hd->hpib_mis & MIS_BI) == 0 && --timo) 202 if (timo == 0)
|
| dcm.c | 144 int timo; local in function:dcmputchar 151 timo = 50000; 152 while (tail != (pp->t_head & TX_MASK) && --timo) 160 timo = 1000000; 161 while (tail != (pp->t_head & TX_MASK) && --timo)
|
| /src/sys/dev/acpi/ |
| qcomiic.c | 141 int timo; local in function:qciic_wait 143 for (timo = 50000; timo > 0; timo--) { 149 if (timo == 0) 159 int timo, i; local in function:qciic_read 164 for (timo = 50000; timo > 0; timo--) { 170 if (timo == 0 184 int timo, i; local in function:qciic_write [all...] |
| /src/sys/arch/zaurus/stand/zboot/ |
| unixcons.c | 46 static int common_getc(int fd, int timo); 125 common_getc(int fd, int timo) 132 for (; timo < 0 || timo > 0; --timo) { 145 if (timo > 0) {
|
| /src/sys/arch/arm/rockchip/ |
| rk3399_pcie_phy.c | 206 int timo; local in function:rkpcie_phy_poweron 222 for (timo = 50; timo > 0; timo--) { 228 if (timo == 0) { 239 for (timo = 50; timo > 0; timo--) { 245 if (timo == 0) { 255 for (timo = 50; timo > 0; timo--) [all...] |
| /src/sys/arch/evbsh3/t_sh7706lan/ |
| ssumci.c | 359 int timo; local in function:ssumci_exec_command 377 for (timo = MMC_TIME_OVER; timo > 0; timo--) { 379 if (!(resp & 0x80) && timo <= (MMC_TIME_OVER - 2)) 382 if (timo == 0) { 441 int timo; local in function:ssumci_cmd_cfgread 446 for (timo = MMC_TIME_OVER; timo > 0; timo--) 481 int timo; local in function:ssumci_cmd_read 521 int timo; local in function:ssumci_cmd_write [all...] |
| scimci.c | 422 int timo; local in function:scimci_exec_command 448 timo = MMC_TIME_OVER; 450 if(--timo == 0) { 512 int timo; local in function:scimci_cmd_cfgread 517 for (timo = MMC_TIME_OVER; timo > 0; timo--) { 527 if (timo == 0) { 564 int timo; local in function:scimci_cmd_read 569 for (timo = MMC_TIME_OVER; timo > 0; timo--) 616 int timo; local in function:scimci_cmd_write [all...] |
| /src/sys/arch/evbmips/rasoc/ |
| console.c | 73 u_int timo; local in function:ra_console_putc 75 timo = 150000; 79 } while(--timo != 0); 85 timo = 150000; 89 } while(--timo != 0);
|
| /src/sys/dev/acpi/acpica/ |
| OsdSynch.c | 170 int timo, error; local in function:AcpiOsWaitSemaphore 185 timo = 0; 188 timo = (Timeout * 1000) / (1000000 / hz); 189 if (timo <= 0) 190 timo = 1; 207 "semaphore blocked, sleeping %d ticks\n", timo)); 209 error = cv_timedwait(&as->as_cv, &as->as_slock, timo);
|
| /src/sys/arch/sh3/dev/ |
| adc.c | 125 int timo; local in function:adc_sample_channel 138 timo = 300; 159 if (timo-- == 0) 167 if (timo <= 0) {
|
| /src/sys/arch/arm/at91/ |
| at91twi.c | 204 at91twi_poll(struct at91twi_softc *sc, int timo, int flags) 207 timo = 1000000U; 210 if (timo < 0) { 217 timo--; 220 timo -= 100; 231 int timo, s; local in function:at91twi_start 239 timo = 1000 + len * 200; 256 if (at91twi_poll(sc, timo, flags))
|
| /src/sys/dev/i2c/ |
| motoi2c.c | 141 u_int timo; local in function:motoi2c_stop_wait 144 timo = 1000; 145 while ((I2C_READ(I2CSR) & SR_MBB) != 0 && --timo) 148 if (timo == 0) { 171 u_int timo; local in function:motoi2c_busy_wait 174 timo = 1000; 175 while (((sr = I2C_READ(I2CSR)) & SR_MIF) == 0 && --timo) 178 if (timo == 0) { 188 __func__, sr, 1000 - timo));
|