| /openbsd-src/usr.sbin/rpc.lockd/ |
| H A D | test.c | 7 static struct timeval TIMEOUT = {0, 0}; variable 16 &res, TIMEOUT) != RPC_SUCCESS) { in nlm_test_1() 31 &res, TIMEOUT)) != RPC_SUCCESS) { in nlm_lock_1() 47 &res, TIMEOUT) != RPC_SUCCESS) { in nlm_cancel_1() 61 &res, TIMEOUT) != RPC_SUCCESS) { in nlm_unlock_1() 75 &res, TIMEOUT) != RPC_SUCCESS) { in nlm_granted_1() 89 &res, TIMEOUT) != RPC_SUCCESS) { in nlm_test_msg_1() 102 …if (clnt_call(clnt, NLM_LOCK_MSG, xdr_nlm_lockargs, argp, xdr_void, NULL, TIMEOUT) != RPC_SUCCESS)… in nlm_lock_msg_1() 117 &res, TIMEOUT) != RPC_SUCCESS) { in nlm_cancel_msg_1() 131 &res, TIMEOUT) != RPC_SUCCESS) { in nlm_unlock_msg_1() [all …]
|
| /openbsd-src/usr.sbin/amd/rpcx/ |
| H A D | amq_clnt.c | 10 static struct timeval TIMEOUT = { 25, 0 }; variable 18 if (clnt_call(clnt, AMQPROC_NULL, xdr_void, argp, xdr_void, &clnt_res, TIMEOUT) != RPC_SUCCESS) { in amqproc_null_57() 30 … AMQPROC_MNTTREE, xdr_amq_string, argp, xdr_amq_mount_tree_p, &clnt_res, TIMEOUT) != RPC_SUCCESS) { in amqproc_mnttree_57() 42 …if (clnt_call(clnt, AMQPROC_UMNT, xdr_amq_string, argp, xdr_void, &clnt_res, TIMEOUT) != RPC_SUCCE… in amqproc_umnt_57() 54 …if (clnt_call(clnt, AMQPROC_STATS, xdr_void, argp, xdr_amq_mount_stats, &clnt_res, TIMEOUT) != RPC… in amqproc_stats_57() 66 …if (clnt_call(clnt, AMQPROC_EXPORT, xdr_void, argp, xdr_amq_mount_tree_list, &clnt_res, TIMEOUT) !… in amqproc_export_57() 78 …if (clnt_call(clnt, AMQPROC_SETOPT, xdr_amq_setopt, argp, xdr_int, &clnt_res, TIMEOUT) != RPC_SUCC… in amqproc_setopt_57() 90 …if (clnt_call(clnt, AMQPROC_GETMNTFS, xdr_void, argp, xdr_amq_mount_info_list, &clnt_res, TIMEOUT)… in amqproc_getmntfs_57() 102 …if (clnt_call(clnt, AMQPROC_GETVERS, xdr_void, argp, xdr_amq_string, &clnt_res, TIMEOUT) != RPC_SU… in amqproc_getvers_57()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/File-Fetch/lib/File/ |
| H A D | Fetch.pm | 22 $FTP_PASSIVE $TIMEOUT $DEBUG $WARN $FORCEIPV4 34 $TIMEOUT = 0; 600 $ua->timeout( $TIMEOUT ) if $TIMEOUT; 644 my $http = HTTP::Tiny->new( ( $TIMEOUT ? ( timeout => $TIMEOUT ) : () ) ); 690 $http->{timeout} = $TIMEOUT if $TIMEOUT; 794 while ( $select->can_read( $TIMEOUT || 60 ) ) { 804 return $self->_error(loc("Socket timed out after '%1' seconds", ( $TIMEOUT || 60 ))); 853 push(@options, Timeout => $TIMEOUT) if $TIMEOUT; 906 push(@$cmd, '--timeout=' . $TIMEOUT) if $TIMEOUT; 963 $str .= "set net:timeout $TIMEOUT;\n" if $TIMEOUT; [all …]
|
| /openbsd-src/usr.sbin/rpc.statd/ |
| H A D | test.c | 9 static struct timeval TIMEOUT = {25, 0}; variable 20 &res, TIMEOUT) != RPC_SUCCESS) 35 &res, TIMEOUT) != RPC_SUCCESS) 50 &res, TIMEOUT) != RPC_SUCCESS) 65 &res, TIMEOUT) != RPC_SUCCESS) 80 &res, TIMEOUT) != RPC_SUCCESS)
|
| /openbsd-src/regress/sbin/isakmpd/exchange/ |
| H A D | run.sh | 37 TIMEOUT=2 74 TIMEOUT=$2; shift; shift;; 103 ${NC} -nul -w${TIMEOUT} 127.0.0.1 ${DSTPORT} </dev/null >packet & 121 cat $packet |${NC} -nu -w${TIMEOUT} -p${SRCPORT} 127.0.0.1 ${DSTPORT} \
|
| /openbsd-src/gnu/llvm/lldb/third_party/Python/module/pexpect-4.6/pexpect/ |
| H A D | pxssh.py | 23 from pexpect import ExceptionPexpect, TIMEOUT, EOF, spawn 210 except TIMEOUT: 233 except TIMEOUT: 308 …onnecting", original_prompt, password_regex, "(?i)permission denied", "(?i)terminal type", TIMEOUT] 468 i = self.expect([self.PROMPT, TIMEOUT], timeout=timeout) 491 i = self.expect ([TIMEOUT, self.PROMPT], timeout=10) 494 i = self.expect([TIMEOUT, self.PROMPT], timeout=10)
|
| H A D | expect.py | 3 from .exceptions import EOF, TIMEOUT 69 spawn.after = TIMEOUT 72 spawn.match = TIMEOUT 82 raise TIMEOUT(msg) 118 except TIMEOUT as e: 155 if s is TIMEOUT: 251 if s is TIMEOUT:
|
| H A D | spawnbase.py | 7 from .exceptions import ExceptionPexpect, EOF, TIMEOUT 232 elif p is TIMEOUT: 233 compiled_pattern_list.append(TIMEOUT) 397 pattern_list in (TIMEOUT, EOF)): 401 if pattern in (TIMEOUT, EOF):
|
| H A D | fdpexpect.py | 25 from .exceptions import ExceptionPexpect, TIMEOUT 147 raise TIMEOUT('Timeout exceeded.')
|
| H A D | run.py | 4 from .exceptions import EOF, TIMEOUT 137 except TIMEOUT:
|
| /openbsd-src/regress/lib/libc/sys/ |
| H A D | t_clock_gettime.c | 77 #define TIMEOUT 5 macro 101 endlimit += TIMEOUT + 1; in check_timecounter() 168 "for %d seconds\n", TIMEOUT); in ATF_TC_BODY() 187 (void)printf("\nChecking %s for %d seconds\n", name, TIMEOUT); in ATF_TC_BODY()
|
| /openbsd-src/regress/sys/kern/itimer/ |
| H A D | itimer.c | 20 #define TIMEOUT 2 macro 61 while (ticks != TIMEOUT * 10) in main() 76 stv.tv_sec = TIMEOUT; in main()
|
| /openbsd-src/libexec/talkd/ |
| H A D | talkd.c | 59 #define TIMEOUT 30 macro 82 alarm(TIMEOUT); in main() 134 alarm(TIMEOUT); in timeout()
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | ser-tcp.c | 50 #define TIMEOUT 15 macro 153 while (n == 0 && polls <= TIMEOUT * POLL_INTERVAL); in net_open() 154 if (n < 0 || polls > TIMEOUT * POLL_INTERVAL) in net_open() 156 if (polls > TIMEOUT * POLL_INTERVAL) in net_open()
|
| /openbsd-src/gnu/llvm/lldb/scripts/ |
| H A D | reproducer-replay.py | 18 outs, errs = proc.communicate(timeout=TIMEOUT) 103 global TIMEOUT 107 TIMEOUT = args.timeout variable
|
| /openbsd-src/regress/sys/net/pf_trans/ |
| H A D | Makefile | 11 TIMEOUT?= 10 macro 43 ${SUDO} ./dev-limit -c 2048 -s 1023 -t ${TIMEOUT}
|
| /openbsd-src/games/hack/ |
| H A D | hack.timeout.c | 75 if((upp->p_flgs & TIMEOUT) && !--upp->p_flgs) { in hacktimeout() 120 long i = (Stoned & TIMEOUT); in stoned_dialogue()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/libnet/lib/Net/ |
| H A D | Time.pm | 27 our $TIMEOUT = 120; 54 $timeout = $TIMEOUT
|
| /openbsd-src/sys/dev/pci/drm/i915/gt/ |
| H A D | intel_reset.h | 73 #define intel_wedge_on_timeout(W, GT, TIMEOUT) \ argument 74 for (__intel_init_wedge((W), (GT), (TIMEOUT), __func__); \
|
| /openbsd-src/sys/dev/ic/ |
| H A D | lpt.c | 74 #define TIMEOUT 16000 /* wait up to 16 seconds for a ready */ macro 196 if (spin >= TIMEOUT) { in lptopen() 313 if (msecs > TIMEOUT) in lptpushbytes() 314 msecs = TIMEOUT; in lptpushbytes() 457 if (spin >= TIMEOUT) { in lpt_activate()
|
| /openbsd-src/gnu/usr.bin/perl/amigaos4/ |
| H A D | amigaos.c | 661 #define TIMEOUT 0x7FFFFFFF macro 680 TIMEOUT)) in amigaos_flock() 690 TIMEOUT)) in amigaos_flock() 700 TIMEOUT)) in amigaos_flock() 714 TIMEOUT)) in amigaos_flock()
|
| /openbsd-src/gnu/usr.bin/perl/dist/Thread-Queue/t/ |
| H A D | 10_timed.t | 25 ### ->dequeue_timed(TIMEOUT, COUNT) test ### 52 ### ->dequeue_timed(TIMEOUT) test on empty queue ###
|
| /openbsd-src/sys/dev/ata/ |
| H A D | ata_wdc.c | 411 ata_bio->error = TIMEOUT; in _wdc_ata_bio_start() 445 ata_bio->error = TIMEOUT; in _wdc_ata_bio_start() 505 ata_bio->error = TIMEOUT; in wdc_ata_bio_intr() 526 ata_bio->error = TIMEOUT; in wdc_ata_bio_intr() 557 ata_bio->error = TIMEOUT; in wdc_ata_bio_intr() 749 ata_bio->error = TIMEOUT; in wdc_ata_ctrl_intr() 781 ata_bio->error = TIMEOUT; in wdc_ata_err()
|
| /openbsd-src/usr.bin/tftp/ |
| H A D | extern.h | 38 #define TIMEOUT 5 /* packet rexmt timeout */ macro
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/behavior/ |
| H A D | ipc_wait_timeout.t | 37 local $SIG{ALRM} = sub { die "PROCESS TIMEOUT" }; 62 local $SIG{ALRM} = sub { die "THREAD TIMEOUT" };
|