Searched refs:timeout (Results 26 - 50 of 1541) sorted by relevance

1234567891011>>

/freebsd-current/contrib/sendmail/libsm/
H A Dfwalk.c27 ** timeout -- time to complete actions (milliseconds)
34 sm_fwalk(function, timeout)
36 int *timeout;
50 if (*timeout == SM_TIME_DEFAULT)
53 fptimeout = *timeout;
H A Dfprintf.c27 ** timeout -- time to complete print
38 sm_io_fprintf(SM_FILE_T *fp, int timeout, const char *fmt, ...) argument
40 sm_io_fprintf(fp, timeout, fmt, va_alist)
42 int timeout;
52 ret = sm_io_vfprintf(fp, timeout, fmt, ap);
H A Dfscanf.c27 ** timeout -- time to complete scan
38 sm_io_fscanf(SM_FILE_T *fp, int timeout, char const *fmt, ...) argument
40 sm_io_fscanf(fp, timeout, fmt, va_alist)
42 int timeout;
52 ret = sm_vfscanf(fp, timeout, fmt, ap);
H A Dfpos.c31 ** TELLALRM -- handler when timeout activated for sm_io_tell()
62 ** timeout -- time to complete the tell (milliseconds)
70 sm_io_tell(fp, timeout)
72 int SM_NONVOLATILE timeout;
84 if (timeout == SM_TIME_DEFAULT)
85 timeout = fp->f_timeout;
86 if (timeout == SM_TIME_IMMEDIATE)
102 (void) sm_flush(fp, (int *) &timeout);
104 /* This is where we start the timeout */
105 if (timeout !
[all...]
H A Drefill.c34 ** SM_IO_RD_TIMEOUT -- measured timeout for reads
40 ** BSD-based/like systems the timeout for a select() is updated for the
51 ** to -- struct timeval of the timeout
52 ** timeout -- the original timeout value
59 #define SM_IO_RD_TIMEOUT(fp, fd, to, timeout, sel_ret) \
64 if (timeout == SM_TIME_IMMEDIATE) \
94 /* timeout */ \
110 ** timeout -- original timeout valu
[all...]
H A Dfput.c29 ** timeout -- time to complete the put-string
38 sm_io_fputs(fp, timeout, s)
40 int timeout;
51 return sm_fvwrite(fp, timeout, &uio);
/freebsd-current/share/examples/ipfilter/l4check/
H A Dl4check.conf9 connect timeout 1
18 response timeout 4
/freebsd-current/stand/usb/test/
H A Dbsd_usbloader_test.c66 pause(const char *what, int timeout) argument
68 if (timeout == 0)
69 timeout = 1;
71 usleep((1000000 / hz) * timeout);
/freebsd-current/tests/sys/cddl/zfs/tests/zfsd/
H A Dzfsd.kshlib33 typeset -i timeout=$1
42 log_note "Waiting up to $timeout seconds for $disk to become $state ..."
43 for ((; $timeout > 0; timeout=$timeout-1)); do
54 typeset -i timeout=$1
55 wait_for_pool_dev_state_change $timeout $REMOVAL_DISK "REMOVED|UNAVAIL"
75 typeset -li timeout=60
84 while (( "$now" - "$start" < "$timeout" )); do
H A Dzfsd_hotspare_001_pos.ksh83 for ((timeout=0; $timeout<10; timeout=$timeout+1)); do
107 for ((timeout=0; $timeout<10; timeout=$timeout+1)); do
/freebsd-current/usr.sbin/ppp/
H A Dtun.h32 u_int32_t timeout; member in union:tun_data::__anon6783
/freebsd-current/tools/test/stress2/misc/
H A Dreaper5.sh36 timeout 2s sh -c "timeout 2s sleep 60" &
/freebsd-current/lib/libc/sys/
H A Dpoll.c40 poll(struct pollfd pfd[], nfds_t nfds, int timeout) argument
42 return (INTERPOS_SYS(poll, pfd, nfds, timeout));
H A Dppoll.c41 timeout, const sigset_t *__restrict newsigmask)
43 return (INTERPOS_SYS(ppoll, pfd, nfds, timeout, newsigmask));
40 ppoll(struct pollfd pfd[], nfds_t nfds, const struct timespec *__restrict timeout, const sigset_t *__restrict newsigmask) argument
H A Daio_suspend.c41 const struct timespec *timeout)
43 return (INTERPOS_SYS(aio_suspend, iocbs, niocb, timeout));
40 aio_suspend(const struct aiocb * const iocbs[], int niocb, const struct timespec *timeout) argument
H A Dkevent.c42 struct kevent *eventlist, int nevents, const struct timespec *timeout)
45 nevents, timeout));
41 kevent(int kq, const struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout) argument
/freebsd-current/bin/timeout/tests/
H A Dtimeout_test.sh5 atf_set "descr" "Basic tests on timeout(1) utility"
14 timeout 5 true
29 timeout 1d true
35 timeout 1h true
41 timeout 1m true
47 timeout 1s true
53 atf_set "descr" "Test disabled timeout"
62 timeout 0 true
77 -x timeout 5 sh -c \'exit 2\'
83 timeout
[all...]
/freebsd-current/sys/dev/qat/qat_api/qat_utils/src/
H A DQatUtilsSemaphore.c13 /* Max timeout in MS, used to guard against possible overflow */
32 * to the caller. If the time indicated in 'timeout' is reached,
34 * timeout is set to 'QAT_UTILS_WAIT_NONE', the thread will never block;
42 qatUtilsSemaphoreWait(struct sema **pSid, int32_t timeout) argument
51 * Guard against illegal timeout values
53 if ((timeout < 0) && (timeout != QAT_UTILS_WAIT_FOREVER)) {
55 "QatUtilsSemaphoreWait(): illegal timeout value\n");
57 } else if (timeout > QAT_UTILS_MAX_TIMEOUT_MS) {
59 "QatUtilsSemaphoreWait(): use a smaller timeout valu
136 qatUtilsMutexLock(struct mtx **pMutex, int32_t timeout) argument
[all...]
/freebsd-current/sbin/camcontrol/
H A Dcamcontrol.h62 int ata_do_identify(struct cam_device *device, int retry_count, int timeout,
65 int timeout, int verbosemode);
66 int get_device_type(struct cam_device *dev, int retry_count, int timeout,
73 size_t cdb_storage_len, uint8_t sense_len, uint32_t timeout,
81 int retry_count, int timeout);
83 int task_attr, int retry_count, int timeout, int verbosemode);
85 int retry_count, int timeout, int verbosemode);
87 char *combinedopt, int task_attr, int retry_count, int timeout,
90 char *combinedopt, int task_attr, int retry_count, int timeout,
94 int timeout, uint8_
[all...]
/freebsd-current/contrib/wpa/src/utils/
H A Deloop_win.c55 struct dl_list timeout; member in struct:eloop_data
78 dl_list_init(&eloop.timeout);
241 struct eloop_timeout *timeout, *tmp; local
244 timeout = os_zalloc(sizeof(*timeout));
245 if (timeout == NULL)
247 if (os_get_reltime(&timeout->time) < 0) {
248 os_free(timeout);
251 now_sec = timeout->time.sec;
252 timeout
285 eloop_remove_timeout(struct eloop_timeout *timeout) argument
295 struct eloop_timeout *timeout, *prev; local
318 struct eloop_timeout *timeout, *prev; local
542 struct eloop_timeout *timeout; local
652 struct eloop_timeout *timeout, *prev; local
[all...]
/freebsd-current/bin/pwait/tests/
H A Dpwait_test.sh23 timeout --preserve-status 15 pwait $p1 $p5 $p10
54 atf_set "descr" "Test parsing the timeout unit and value"
63 -e inline:"pwait: timeout unit\n" \
65 timeout --preserve-status 2 pwait -t 1d $init
69 -e inline:"pwait: timeout unit\n" \
71 timeout --preserve-status 2 pwait -t 1d $init
75 -e inline:"pwait: timeout value\n" \
77 timeout --preserve-status 2 pwait -t -1 $init
81 -e inline:"pwait: timeout value\n" \
83 timeout
[all...]
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dtst.argmap.d36 timeout = timestamp + 5000000000;
61 /timestamp > timeout/
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/sparc/pid/
H A Dtst.embedded.d64 timeout = timestamp + 5000000000;
68 /timestamp > timeout/
/freebsd-current/contrib/kyua/integration/helpers/
H A Dexpect_all_pass.cpp73 ATF_TEST_CASE(timeout); variable
74 ATF_TEST_CASE_HEAD(timeout)
76 set_md_var("timeout", "1");
78 ATF_TEST_CASE_BODY(timeout)
91 ATF_ADD_TEST_CASE(tcs, timeout);
H A Dexpect_some_fail.cpp75 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);

Completed in 168 milliseconds

1234567891011>>