| /src/lib/libcurses/ |
| timeout.c | 1 /* $NetBSD: timeout.c,v 1.10 2024/12/23 02:58:04 blymn Exp $ */ 34 __RCSID("$NetBSD: timeout.c,v 1.10 2024/12/23 02:58:04 blymn Exp $"); 43 * timeout -- 47 timeout(int delay) function 73 * 2. timeout granularity is ms but VTIME is 0.1s
|
| /src/external/bsd/jemalloc/dist/test/src/ |
| sleep.c | 15 struct timespec timeout; local 18 timeout.tv_sec = 0; 19 timeout.tv_nsec = ns; 21 timeout.tv_sec = 1; 22 timeout.tv_nsec = 0; 24 nanosleep(&timeout, NULL);
|
| /src/external/bsd/jemalloc.old/dist/test/src/ |
| mq.c | 15 struct timespec timeout; local 18 timeout.tv_sec = 0; 19 timeout.tv_nsec = ns; 21 timeout.tv_sec = 1; 22 timeout.tv_nsec = 0; 24 nanosleep(&timeout, NULL);
|
| /src/external/bsd/mdocml/dist/ |
| test-nanosleep.c | 7 struct timespec timeout; local 9 timeout.tv_sec = 0; 10 timeout.tv_nsec = 100000000; /* 0.1 seconds */ 12 if (nanosleep(&timeout, NULL)) {
|
| /src/sys/net/agr/ |
| ieee8023ad_lacp_sm_ptx.c | 58 LACP_DPRINTF((lp, "partner timeout changed\n")); 65 * let lacp_sm_ptx_tx_schedule to update timeout. 71 * if timeout has been shortened, assert NTT. 82 int timeout; local 99 timeout = (lp->lp_partner.lip_state & LACP_STATE_TIMEOUT) ? 102 LACP_TIMER_ARM(lp, LACP_TIMER_PERIODIC, timeout);
|
| /src/games/hack/ |
| hack.timeout.c | 1 /* $NetBSD: hack.timeout.c,v 1.9 2011/05/23 22:53:25 joerg Exp $ */ 66 __RCSID("$NetBSD: hack.timeout.c,v 1.9 2011/05/23 22:53:25 joerg Exp $"); 75 timeout(void) function 81 if ((upp->p_flgs & TIMEOUT) && !--upp->p_flgs) { 128 long i = (Stoned & TIMEOUT);
|
| /src/external/ibm-public/postfix/dist/src/tls/ |
| tls_prng.h | 22 int timeout; /* time limit of applicable */ member in struct:TLS_PRNG_SRC
|
| /src/sys/compat/linux/common/ |
| linux_oldselect.h | 46 struct linux_timeval *timeout; member in struct:linux_oldselect
|
| /src/lib/libc/rpc/ |
| pmap_getport.c | 69 static const struct timeval timeout = { 5, 0 }; variable in typeref:struct:timeval 99 return clntudp_bufcreate(address, PMAPPROG, PMAPVERS, timeout,
|
| /src/sys/dev/ic/ |
| joyvar.h | 47 int timeout[2]; member in struct:joy_softc
|
| /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/ |
| amdgpu_common_baco.c | 35 u32 timeout = 5000, data; local 40 timeout--; 41 } while (value != (data & mask) && (timeout != 0)); 43 if (timeout == 0) 50 u32 shift, u32 value, u32 timeout) 69 if (timeout) 71 msleep(timeout); 74 if (timeout) 76 udelay(timeout); 99 entry[i].shift, entry[i].val, entry[i].timeout)) [all...] |
| /src/tests/kernel/kqueue/ |
| t_proc3.c | 62 struct timespec timeout; local 80 timeout.tv_sec = 0; 81 timeout.tv_nsec = 0; 86 RL(kevent(kq, NULL, 0, &ke, 1, &timeout));
|
| /src/tests/lib/libc/kevent_nullmnt/ |
| h_nullmnt.c | 34 struct timespec timeout; local 55 timeout.tv_sec = 5; 56 timeout.tv_nsec = 0; 71 nev = kevent(kq, NULL, 0, &eventlist, 1, &timeout);
|
| /src/crypto/external/bsd/heimdal/dist/tests/bin/ |
| intr.c | 10 static int timeout = 3; variable 14 { "timeout", 't', arg_integer, &timeout, NULL, NULL } 57 timeout);
|
| /src/external/bsd/kyua-cli/dist/integration/helpers/ |
| expect_all_pass.cpp | 71 ATF_TEST_CASE(timeout); variable 72 ATF_TEST_CASE_HEAD(timeout) 74 set_md_var("timeout", "1"); 76 ATF_TEST_CASE_BODY(timeout) 89 ATF_ADD_TEST_CASE(tcs, timeout);
|
| expect_some_fail.cpp | 75 ATF_TEST_CASE(timeout); variable 76 ATF_TEST_CASE_HEAD(timeout) 78 set_md_var("timeout", "1"); 80 ATF_TEST_CASE_BODY(timeout) 93 ATF_ADD_TEST_CASE(tcs, timeout);
|
| /src/external/bsd/libevent/dist/test/ |
| test-closed.c | 55 struct timeval timeout = {3, 0}; variable in typeref:struct:timeval 61 printf("%s: Timeout!\n", __func__); 106 event_add(ev, &timeout);
|
| /src/external/bsd/ntp/dist/sntp/libevent/test/ |
| test-closed.c | 54 struct timeval timeout = {3, 0}; variable in typeref:struct:timeval 60 printf("%s: Timeout!\n", __func__); 105 event_add(ev, &timeout);
|
| /src/external/bsd/ntp/dist/util/ |
| testrs6000.c | 17 int timeout(); 36 signal(SIGALRM, timeout); 44 timeout( function 50 signal (SIGALRM, timeout);
|
| /src/external/bsd/wpa/dist/wpa_supplicant/examples/p2p/ |
| p2p_disconnect.py | 40 global timeout 49 def __init__(self,interface_name,wpas_dbus_interface,timeout): 53 self.timeout = timeout 104 # Required for timeout implementation 113 timeout = 5 variable 152 wpas_dbus_interface,timeout) 163 time.sleep(int(p2p_disconnect_test.timeout))
|
| p2p_find.py | 3 # Will list all devices found/lost within a time frame (timeout) 17 print(" %s -i <interface_name> [-t <timeout>] \ " \ 22 print(" -t = timeout = 0s (infinite)") 43 global timeout 53 def __init__(self,interface_name,wpas_dbus_interface,timeout): 55 self.timeout = int(timeout) 111 {'Timeout':int(self.timeout)}) 117 # Required for timeout implementatio 125 timeout = 0 variable [all...] |
| p2p_flush.py | 40 global timeout 49 def __init__(self,interface_name,wpas_dbus_interface,timeout): 53 self.timeout = timeout 104 # Required for timeout implementation 113 timeout = 5 variable 151 p2p_flush_test = P2P_Flush(interface_name, wpas_dbus_interface,timeout) 162 time.sleep(int(p2p_flush_test.timeout))
|
| p2p_listen.py | 17 print(" %s -i <interface_name> [-t <timeout>] \ " \ 22 print(" -t = timeout = 0s (infinite)") 41 global timeout 50 def __init__(self,interface_name,wpas_dbus_interface,timeout): 52 self.timeout = int(timeout) 104 self.p2p_interface.Listen(int(self.timeout)) 107 # Required for timeout implementation 115 timeout = 0 variable 138 # Timeout [all...] |
| p2p_stop_find.py | 42 global timeout 51 def __init__(self,interface_name,wpas_dbus_interface,timeout): 55 self.timeout = timeout 109 # Required for timeout implementation 118 timeout = 5 variable 157 wpas_dbus_interface,timeout) 168 time.sleep(int(p2p_stop_find_test.timeout))
|
| /src/external/gpl3/gcc/dist/libgomp/config/linux/x86/ |
| futex.h | 38 register void *timeout __asm ("r10") = NULL; 42 "d" (val), "r" (timeout) 69 void *timeout = NULL; local 73 "d" (val), "S" (timeout)
|