Home
last modified time | relevance | path

Searched refs:tmout (Results 1 – 8 of 8) sorted by relevance

/freebsd/crypto/heimdal/lib/krb5/
H A Dsend_to_kdc.c51 time_t tmout, in recv_loop() argument
71 timeout.tv_sec = tmout; in recv_loop()
117 time_t tmout, in send_and_recv_udp() argument
124 return recv_loop(fd, tmout, 1, 0, rep); in send_and_recv_udp()
136 time_t tmout, in send_and_recv_tcp() argument
149 if (recv_loop (fd, tmout, 0, 4, &len_data) < 0) in send_and_recv_tcp()
157 if (recv_loop (fd, tmout, 0, rep_len, rep) < 0) in send_and_recv_tcp()
168 time_t tmout, in _krb5_send_and_recv_tcp() argument
172 return send_and_recv_tcp(fd, tmout, req, rep); in _krb5_send_and_recv_tcp()
181 time_t tmout, in send_and_recv_http() argument
[all …]
/freebsd/usr.sbin/syslogd/
H A Dsyslogd_cap_log.c95 const char *line, int tmout) in cap_ttymsg() argument
106 nvlist_add_number(nvl, "tmout", tmout); in cap_ttymsg()
134 int tmout; in casper_ttymsg() local
147 tmout = nvlist_get_number(nvlin, "tmout"); in casper_ttymsg()
148 line = ttymsg(iov, iovcnt, line, tmout); in casper_ttymsg()
H A Dsyslogd_cap.h86 #define cap_ttymsg(chan, iov, iovcnt, line, tmout) \ argument
87 ttymsg(iov, iovcnt, line, tmout)
H A Dsyslogd.c2183 ttymsg_check(struct iovec *iov, int iovcnt, char *line, int tmout) in ttymsg_check() argument
2199 return (ttymsg(iov, iovcnt, line, tmout)); in ttymsg_check()
/freebsd/usr.bin/wall/
H A Dttymsg.c56 ttymsg(struct iovec *iov, int iovcnt, const char *line, int tmout) in ttymsg() argument
141 (void) alarm((u_int)tmout); in ttymsg()
/freebsd/contrib/libpcap/
H A Dpcap-bpf.c339 int expire, tmout; in pcap_next_zbuf() local
357 tmout = p->opt.timeout; in pcap_next_zbuf()
358 if (tmout) in pcap_next_zbuf()
362 tmout = expire - TSTOMILLI(&cur); in pcap_next_zbuf()
364 if (tmout <= 0) { in pcap_next_zbuf()
385 if (tmout != 0) { in pcap_next_zbuf()
386 tv.tv_sec = tmout / 1000; in pcap_next_zbuf()
387 tv.tv_usec = (tmout * 1000) % 1000000; in pcap_next_zbuf()
/freebsd/crypto/heimdal/kdc/
H A Dconnect.c853 struct timeval tmout; in loop() local
898 tmout.tv_sec = TCP_TIMEOUT; in loop()
899 tmout.tv_usec = 0; in loop()
900 switch(select(max_fd + 1, &fds, 0, 0, &tmout)){ in loop()
/freebsd/contrib/sqlite3/
H A Dsqlite3.c66940 int tmout = pWal->db->busyTimeout;
66941 if( tmout ){
66942 res = walEnableBlockingMs(pWal, tmout);
66952 int tmout = 0;
66953 sqlite3OsFileControl(pWal->pDbFd, SQLITE_FCNTL_LOCK_TIMEOUT, (void*)&tmout);
181493 int tmout = db->busyTimeout;
181504 if( prior + delay > tmout ){
181505 delay = tmout - prior;
181514 int tmout = ((sqlite3 *)ptr)->busyTimeout;
181515 if( (count+1)*1000 > tmout ){