Searched refs:tv (Results 276 - 300 of 531) sorted by relevance

<<11121314151617181920>>

/freebsd-current/contrib/ntp/sntp/libevent/include/event2/
H A Dhttp.h372 * @param tv the timeout, or NULL
375 void evhttp_set_timeout_tv(struct evhttp *http, const struct timeval* tv);
743 const struct timeval *tv);
751 const struct timeval *tv);
/freebsd-current/contrib/libevent/include/event2/
H A Dhttp.h372 * @param tv the timeout, or NULL
375 void evhttp_set_timeout_tv(struct evhttp *http, const struct timeval* tv);
743 const struct timeval *tv);
751 const struct timeval *tv);
/freebsd-current/libexec/bootpd/bootpgw/
H A Dbootpgw.c432 struct timeval tv;
436 tv = *timeout;
439 (timeout) ? &tv : NULL);
430 struct timeval tv; local
/freebsd-current/contrib/smbfs/lib/smb/
H A Dnbns_rq.c260 struct timeval tv; local
270 tv.tv_sec = rqp->nr_nbd->nb_timo;
271 tv.tv_usec = 0;
273 n = select(s + 1, &rd, &wr, &ex, &tv);
/freebsd-current/contrib/netbsd-tests/net/mcast/
H A Dmcast.c287 struct timeval tv;
288 if (gettimeofday(&tv, NULL) == -1)
290 msg.ts.tv_sec = tv.tv_sec;
291 msg.ts.tv_nsec = tv.tv_usec * 1000;
/freebsd-current/contrib/ofed/opensm/opensm/
H A Dosm_log.c234 struct timeval tv; local
299 gettimeofday(&tv, NULL);
301 time_usecs = ((uint64_t) tv.tv_sec * 1000000) + (uint64_t) tv.tv_usec;
/freebsd-current/contrib/ncurses/ncurses/tty/
H A Dlib_twait.c196 struct timeval tv; local
386 tv.tv_sec = 0;
387 tv.tv_usec = (milliseconds == 0) ? 0 : (10 * 1000);
389 if ((result = select(count, &set, NULL, NULL, &tv)) != 0)
/freebsd-current/sys/contrib/libsodium/src/libsodium/randombytes/salsa20/
H A Drandombytes_salsa20_random.c131 struct timeval tv; local
133 if (gettimeofday(&tv, NULL) != 0) {
136 return ((uint64_t) tv.tv_sec) * 1000000U + (uint64_t) tv.tv_usec;
/freebsd-current/usr.sbin/usbdump/
H A Dusbdump.c465 struct timeval tv; local
497 tv.tv_sec = hdr->ts_sec;
498 tv.tv_usec = hdr->ts_usec;
499 tm = localtime(&tv.tv_sec);
505 (int)len, buf, tv.tv_usec,
815 struct timeval tv; local
994 tv.tv_sec = 1;
995 tv.tv_usec = 0;
996 if (ioctl(p->fd, BIOCSRTIMEOUT, (caddr_t)&tv) < 0)
/freebsd-current/contrib/libevent/
H A Dkqueue.c267 kq_dispatch(struct event_base *base, struct timeval *tv) argument
275 if (tv != NULL) {
276 ts.tv_sec = tv->tv_sec;
277 ts.tv_nsec = tv->tv_usec * 1000;
/freebsd-current/contrib/unbound/dnstap/
H A Ddtstream.c193 struct timeval tv = {0}; local
213 comm_timer_set(mq->wakeup_timer, &tv);
222 tv.tv_sec = 1;
223 tv.tv_usec = 0;
225 comm_timer_set(mq->wakeup_timer, &tv);
578 struct timeval tv; local
597 memset(&tv, 0, sizeof(tv));
598 tv.tv_sec = msec/1000;
599 tv
1772 struct timeval tv; local
[all...]
/freebsd-current/sbin/mount_nfs/
H A Dmount_nfs.c529 struct timeval tv, start; local
538 for (tv.tv_sec = sec, tv.tv_usec = 0;
539 tv.tv_sec > 0;
540 (void)gettimeofday(&tv, NULL),
541 tv.tv_sec = sec - (tv.tv_sec - start.tv_sec)) {
544 n = select(s + 1, &rfds, NULL, NULL, &tv);
570 return (tv.tv_sec);
/freebsd-current/usr.sbin/ngctl/
H A Dmain.c351 struct timeval tv; local
358 memset(&tv, 0, sizeof(tv));
359 if (select(maxfd, &rfds, NULL, NULL, &tv) <= 0) {
/freebsd-current/contrib/ntp/sntp/libevent/
H A Dkqueue.c267 kq_dispatch(struct event_base *base, struct timeval *tv) argument
275 if (tv != NULL) {
276 ts.tv_sec = tv->tv_sec;
277 ts.tv_nsec = tv->tv_usec * 1000;
H A Dselect.c140 select_dispatch(struct event_base *base, struct timeval *tv) argument
173 sop->event_writeset_out, NULL, tv);
/freebsd-current/contrib/bearssl/T0/
H A DT0Comp.cs382 TValue tv = new TValue(0, new TPointerExpr(
384 cpu.Push(tv);
412 TValue tv = new TValue(0, new TPointerExpr(
415 wordBuilder.Literal(tv);
417 cpu.Push(tv);
2025 internal bool TryParseLiteral(string tt, out TValue tv) argument
2027 tv = new TValue(0);
2029 tv = StringToBlob(tt.Substring(1));
2033 tv = DecodeCharConst(tt.Substring(1));
2082 tv
[all...]
/freebsd-current/sbin/ping/
H A Dping.c916 struct timespec *tv = NULL; local
934 cmsg->cmsg_len == CMSG_LEN(sizeof *tv)) {
937 tv = &now;
940 if (tv == NULL) {
942 tv = &now;
944 pr_pack((char *)packet, cc, &from, tv);
1092 pr_pack(char *buf, ssize_t cc, struct sockaddr_in *from, struct timespec *tv) argument
1165 timespecsub(tv, &tv1, tv);
1166 triptime = ((double)tv
[all...]
/freebsd-current/contrib/sendmail/src/
H A Dparseaddr.c1970 ** tv -- token vector.
2003 buildaddr(tv, a, flags, e)
2004 register char **tv;
2024 sm_dprintf("buildaddr, flags=%x, tv=", flags);
2025 printav(sm_debug_file(), tv); local
2038 if (*tv == NULL || (**tv & 0377) != CANONNET)
2062 mname = *++tv;
2066 if (*++tv != NULL && (**tv
[all...]
/freebsd-current/sys/netinet/tcp_stacks/
H A Drack.c445 #define RACK_TCPT_RANGESET(tv, value, tvmin, tvmax, slop) do { \
446 (tv) = (value) + slop; \
447 if ((u_long)(tv) < (u_long)(tvmin)) \
448 (tv) = (tvmin); \
449 if ((u_long)(tv) > (u_long)(tvmax)) \
450 (tv) = (tvmax); \
614 struct timeval tv; local
621 microuptime(&tv);
623 tim += (tcp_tv_to_lusectick(&tv) - rack->r_ctl.lt_timemark);
696 struct timeval tv; local
768 struct timeval tv; local
2117 struct timeval tv; local
2212 struct timeval tv; local
2319 struct timeval tv; local
2611 struct timeval tv; local
2644 struct timeval tv; local
2753 struct timeval tv; local
2796 struct timeval tv; local
2839 struct timeval tv; local
2879 struct timeval tv; local
2928 struct timeval tv; local
3002 struct timeval tv; local
3046 struct timeval tv; local
3073 struct timeval tv; local
3100 struct timeval tv; local
3126 rack_log_type_bbrsnd(struct tcp_rack *rack, uint32_t len, uint32_t slot, uint32_t cts, struct timeval *tv, int line) argument
3160 struct timeval tv; local
3208 struct timeval tv; local
3236 struct timeval tv; local
3268 rack_log_to_cancel(struct tcp_rack *rack, int32_t hpts_removed, int line, uint32_t us_cts, struct timeval *tv, uint32_t flags_on_entry) argument
3313 struct timeval tv; local
3342 struct timeval tv; local
3372 struct timeval tv; local
3758 struct timeval tv; local
4206 struct timeval tv; local
4952 struct timeval tv; local
5302 struct timeval tv; local
5338 struct timeval tv; local
5521 struct timeval tv; local
5621 struct timeval tv; local
5728 struct timeval tv; local
5773 struct timeval tv; local
5925 struct timeval tv; local
6029 struct timeval tv; local
6183 struct timeval tv; local
6262 struct timeval tv; local
7073 rack_log_hpts_diag(struct tcp_rack *rack, uint32_t cts, struct hpts_diag *diag, struct timeval *tv) argument
7116 struct timeval tv; local
7138 struct timeval tv; local
8657 struct timeval tv; local
11780 struct timeval tv; local
11941 struct timeval tv; local
12725 struct timeval tv; local
14862 struct timeval tv; local
14937 struct timeval tv; local
15055 struct timeval tv; local
15872 struct timeval tv; local
16324 struct timeval tv; local
16408 struct timeval tv; local
16432 rack_do_compressed_ack_processing(struct tcpcb *tp, struct socket *so, struct mbuf *m, int nxt_pkt, struct timeval *tv) argument
17109 rack_do_segment_nounlock(struct tcpcb *tp, struct mbuf *m, struct tcphdr *th, int32_t drop_hdrlen, int32_t tlen, uint8_t iptos, int32_t nxt_pkt, struct timeval *tv) argument
17772 struct timeval tv; local
17874 struct timeval tv; local
18105 struct timeval tv; local
18752 struct timeval tv; local
18932 struct timeval tv; local
18997 struct timeval tv; local
19253 rack_log_queue_level(struct tcpcb *tp, struct tcp_rack *rack, int len, struct timeval *tv, uint32_t cts) argument
19283 rack_check_queue_level(struct tcp_rack *rack, struct tcpcb *tp, struct timeval *tv, uint32_t cts, int len, uint32_t segsiz) argument
19351 rack_fast_rsm_output(struct tcpcb *tp, struct tcp_rack *rack, struct rack_sendmap *rsm, uint64_t ts_val, uint32_t cts, uint32_t ms_cts, struct timeval *tv, int len, uint8_t doing_tlp) argument
19939 rack_fast_output(struct tcpcb *tp, struct tcp_rack *rack, uint64_t ts_val, uint32_t cts, uint32_t ms_cts, struct timeval *tv, long tot_len, int *send_err) argument
20347 struct timeval tv; local
20638 struct timeval tv; local
23827 struct timeval tv; local
25207 struct timeval tv; local
[all...]
/freebsd-current/crypto/heimdal/appl/telnet/telnetd/
H A Dsys_term.c1290 struct timeval tv; local
1308 gettimeofday (&tv, NULL);
1309 utmpx.ut_tv.tv_sec = tv.tv_sec;
1310 utmpx.ut_tv.tv_usec = tv.tv_usec;
1432 struct timeval tv; local
1452 gettimeofday (&tv, NULL);
1453 utxp->ut_tv.tv_sec = tv.tv_sec;
1454 utxp->ut_tv.tv_usec = tv.tv_usec;
/freebsd-current/sys/contrib/libsodium/test/default/
H A Daead_aes256gcm.c3080 tv(void) function
3232 tv();
H A Daead_xchacha20poly1305.c6 tv(void) function
196 tv();
H A Dchacha20.c6 void tv(void) function
171 tv();
H A Dpwhash_scrypt.c10 tv(void) function
373 tv();
/freebsd-current/contrib/libpcap/
H A Dpcap-sita.c740 struct timeval tv; local
744 tv.tv_sec = 2;
745 tv.tv_usec = 0;
757 retval = select(max_fs + 1, &working_set, NULL, NULL, &tv);
920 struct timeval tv; local
928 tv.tv_sec = 5;
929 tv.tv_usec = 0;
937 retval = select(fd + 1, &w_fds, NULL, NULL, &tv);

Completed in 243 milliseconds

<<11121314151617181920>>