Searched refs:tod (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-10.1-release/sys/netinet/
H A Dtcp_offload.c59 struct toedev *tod; local
83 tod = TOEDEV(ifp);
84 if (tod != NULL)
85 error = tod->tod_connect(tod, so, rt, nam);
112 struct toedev *tod = tp->tod; local
114 KASSERT(tod != NULL, ("%s: tp->tod is NULL, tp %p", __func__, tp));
117 tod
123 struct toedev *tod = tp->tod; local
148 struct toedev *tod = tp->tod; local
159 struct toedev *tod = tp->tod; local
170 struct toedev *tod = tp->tod; local
[all...]
H A Dtoecore.c75 toedev_connect(struct toedev *tod __unused, struct socket *so __unused,
83 toedev_listen_start(struct toedev *tod __unused, struct tcpcb *tp __unused)
90 toedev_listen_stop(struct toedev *tod __unused, struct tcpcb *tp __unused)
97 toedev_input(struct toedev *tod __unused, struct tcpcb *tp __unused,
106 toedev_rcvd(struct toedev *tod __unused, struct tcpcb *tp __unused)
113 toedev_output(struct toedev *tod __unused, struct tcpcb *tp __unused)
120 toedev_pcb_detach(struct toedev *tod __unused, struct tcpcb *tp __unused)
127 toedev_l2_update(struct toedev *tod __unused, struct ifnet *ifp __unused,
136 toedev_route_redirect(struct toedev *tod __unused, struct ifnet *ifp __unused,
144 toedev_syncache_added(struct toedev *tod __unuse
188 struct toedev *t, *tod; local
226 struct toedev *tod; local
245 init_toedev(struct toedev *tod) argument
278 register_toedev(struct toedev *tod) argument
305 unregister_toedev(struct toedev *tod) argument
326 toe_syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th, struct inpcb *inp, void *tod, void *todctx) argument
388 struct toedev *tod; local
516 toe_l2_resolve(struct toedev *tod, struct ifnet *ifp, struct sockaddr *sa, uint8_t *lladdr, uint16_t *vtag) argument
550 toe_connect_failed(struct toedev *tod, struct inpcb *inp, int err) argument
[all...]
H A Dtcp_syncache.c367 struct toedev *tod = sc->sc_tod; local
369 tod->tod_syncache_added(tod, sc->sc_todctx);
398 struct toedev *tod = sc->sc_tod; local
400 tod->tod_syncache_removed(tod, sc->sc_todctx);
907 struct toedev *tod = sc->sc_tod; local
909 tod->tod_offload_socket(tod, sc->sc_todctx, so);
1004 struct toedev *tod local
1107 syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th, struct inpcb *inp, struct socket **lsop, struct mbuf *m, void *tod, void *todctx) argument
1555 struct toedev *tod = sc->sc_tod; local
1575 struct toedev *tod = sc->sc_tod; local
[all...]
/freebsd-10.1-release/sys/powerpc/pseries/
H A Drtas_dev.c107 cell_t tod[8]; local
114 error = rtas_call_method(token, 0, 8, &tod[0], &tod[1], &tod[2],
115 &tod[3], &tod[4], &tod[5], &tod[6], &tod[7]);
118 if (tod[
[all...]
/freebsd-10.1-release/sys/dev/cxgb/ulp/tom/
H A Dcxgb_tom.c74 toepcb_alloc(struct toedev *tod) argument
82 toep->tp_tod = tod;
202 struct toedev *tod; local
249 tod = &td->tod;
250 init_toedev(tod);
251 tod->tod_softc = sc;
252 tod->tod_connect = t3_connect;
253 tod->tod_listen_start = t3_listen_start;
254 tod
[all...]
H A Dcxgb_cpl_io.c128 struct toedev *tod = toep->tp_tod; local
129 struct tom_data *td = t3_tomdata(tod);
187 t3_pcb_detach(struct toedev *tod __unused, struct tcpcb *tp)
252 queue_tid_release(struct toedev *tod, unsigned int tid) argument
254 struct tom_data *td = t3_tomdata(tod);
256 struct adapter *sc = tod->tod_softc;
278 release_tid(struct toedev *tod, unsigned int tid, int qset) argument
280 struct tom_data *td = t3_tomdata(tod);
281 struct adapter *sc = tod->tod_softc;
297 queue_tid_release(tod, ti
429 struct toedev *tod = toep->tp_tod; local
587 t3_rcvd(struct toedev *tod, struct tcpcb *tp) argument
632 t3_send_fin(struct toedev *tod, struct tcpcb *tp) argument
654 t3_tod_output(struct toedev *tod, struct tcpcb *tp) argument
704 struct toedev *tod = toep->tp_tod; local
769 struct toedev *tod = toep->tp_tod; local
807 struct toedev *tod = toep->tp_tod; local
910 struct toedev *tod = &td->tod; local
949 t3_connect(struct toedev *tod, struct socket *so, struct rtentry *rt, struct sockaddr *nam) argument
1059 struct toedev *tod = toep->tp_tod; local
1444 send_abort_rpl(struct toedev *tod, int tid, int qset) argument
1471 struct toedev *tod = &td->tod; local
1622 struct toedev *tod = toep->tp_tod; local
[all...]
H A Dcxgb_listen.c489 struct toedev *tod = &td->tod; local
599 toe_syncache_add(&inc, &to, &th, inp, tod, synqe);
656 queue_tid_release(tod, tid);
695 struct toedev *tod = &td->tod; local
740 toep = toepcb_alloc(tod);
743 t3_send_reset_synqe(tod, synqe);
768 t3_offload_socket(tod, synqe, so);
800 t3_listen_start(struct toedev *tod, struc argument
883 t3_listen_stop(struct toedev *tod, struct tcpcb *tp) argument
944 t3_syncache_respond(struct toedev *tod, void *arg, struct mbuf *m) argument
1010 struct toedev *tod = &td->tod; local
1061 struct toedev *tod = &td->tod; local
1096 t3_send_reset_synqe(struct toedev *tod, struct synq_entry *synqe) argument
1132 t3_offload_socket(struct toedev *tod, void *arg, struct socket *so) argument
[all...]
H A Dcxgb_l2t.h82 void t3_l2_update(struct toedev *tod, struct ifnet *ifp, struct sockaddr *sa,
H A Dcxgb_tom.h79 struct toedev tod; member in struct:tom_data
143 t3_tomdata(struct toedev *tod) argument
146 return (__containerof(tod, struct tom_data, tod));
H A Dcxgb_l2t.c216 struct toedev *tod = &td->tod; local
226 rc = toe_l2_resolve(tod, e->ifp, SA(&sin), dmac, &vtag);
370 t3_l2_update(struct toedev *tod, struct ifnet *ifp, struct sockaddr *sa, argument
373 struct tom_data *td = t3_tomdata(tod);
374 struct adapter *sc = tod->tod_softc;
/freebsd-10.1-release/contrib/ntp/libntp/
H A Dmachines.c436 static int tod; local
445 if (rc && (SET_TOD_CLOCK_SETTIME == tod || !tod)) {
456 if (!tod && !rc)
457 tod = SET_TOD_CLOCK_SETTIME;
462 if (rc && (SET_TOD_SETTIMEOFDAY == tod || !tod)) {
475 if (!tod && !rc)
476 tod = SET_TOD_SETTIMEOFDAY;
480 if (rc && (SET_TOD_STIME == tod || !to
[all...]
/freebsd-10.1-release/sys/dev/cxgbe/tom/
H A Dt4_tom.c206 tp->tod = &td->tod;
242 tp->tod = NULL;
301 t4_pcb_detach(struct toedev *tod __unused, struct tcpcb *tp)
339 t4_ctloutput(struct toedev *tod, struct tcpcb *tp, int dir, int name) argument
341 struct adapter *sc = tod->tod_softc;
922 struct toedev *tod; local
959 tod = &td->tod;
960 init_toedev(tod);
[all...]
H A Dt4_tom.h193 struct toedev tod; member in struct:tom_data
216 tod_td(struct toedev *tod) argument
219 return (__containerof(tod, struct tom_data, tod));
226 return (td->tod.tod_softc);
H A Dt4_connect.c191 struct toedev *tod = &toep->td->tod; local
213 toe_connect_failed(tod, inp, rc);
308 t4_connect(struct toedev *tod, struct socket *so, struct rtentry *rt, argument
311 struct adapter *sc = tod->tod_softc;
312 struct tom_data *td = tod_td(tod);
H A Dt4_tom_l2t.c239 struct toedev *tod = &td->tod; local
259 rc = toe_l2_resolve(tod, e->ifp, sa, dmac, &vtag);
439 t4_l2_update(struct toedev *tod, struct ifnet *ifp, struct sockaddr *sa, argument
442 struct adapter *sc = tod->tod_softc;
H A Dt4_listen.c344 send_reset_synqe(struct toedev *tod, struct synq_entry *synqe) argument
346 struct adapter *sc = tod->tod_softc;
502 t4_listen_start(struct toedev *tod, struct tcpcb *tp) argument
504 struct adapter *sc = tod->tod_softc;
589 t4_listen_stop(struct toedev *tod, struct tcpcb *tp) argument
592 struct adapter *sc = tod->tod_softc;
622 send_reset_synqe(tod, synqe);
650 t4_syncache_added(struct toedev *tod __unused, void *arg)
658 t4_syncache_removed(struct toedev *tod __unused, void *arg)
669 t4_syncache_respond(struct toedev *tod, voi argument
923 t4_offload_socket(struct toedev *tod, void *arg, struct socket *so) argument
1214 struct toedev *tod; local
[all...]
H A Dt4_cpl_io.c356 t4_rcvd(struct toedev *tod, struct tcpcb *tp) argument
358 struct adapter *sc = tod->tod_softc;
950 t4_tod_output(struct toedev *tod, struct tcpcb *tp) argument
952 struct adapter *sc = tod->tod_softc;
969 t4_send_fin(struct toedev *tod, struct tcpcb *tp) argument
971 struct adapter *sc = tod->tod_softc;
994 t4_send_rst(struct toedev *tod, struct tcpcb *tp) argument
996 struct adapter *sc = tod->tod_softc;
/freebsd-10.1-release/contrib/top/
H A Ddisplay.c309 i_timeofday(tod)
311 time_t *tod;
336 foo = ctime(tod);
340 printf("%-8.8s\n", &(ctime(tod)[11]));
1339 i_uptime(bt, tod)
1342 time_t *tod;
1349 uptime = *tod - bt->tv_sec;
/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/os/
H A Dfm.c417 timespec_t tod; local
424 tod = panic_hrestime;
427 gethrestime(&tod);
437 fm_msgid, tod.tv_sec, tod.tv_nsec, (u_longlong_t)now);
470 timespec_t tod; local
476 tod = panic_hrestime;
481 gethrestime(&tod);
502 ed.ed_tod_base.sec = tod.tv_sec;
503 ed.ed_tod_base.nsec = tod
[all...]
/freebsd-10.1-release/usr.bin/find/
H A Dgetdate.y586 time_t tod;
612 if ((tod = ToSeconds(Hours, Minutes, Seconds, Meridian)) < 0)
614 Julian += tod;
855 time_t tod;
927 tod = RelativeDate(Start, yyDayOrdinal, yyDayNumber);
928 Start += tod;
/freebsd-10.1-release/usr.sbin/fifolog/lib/
H A Dgetdate.y566 time_t tod;
599 if ((tod = ToSeconds(Hours, Minutes, Seconds, Meridian)) < 0)
601 Julian += tod;
822 time_t tod;
881 tod = RelativeDate(Start, yyDayOrdinal, yyDayNumber);
882 Start += tod;
/freebsd-10.1-release/usr.bin/at/
H A Dparsetime.c357 * tod() computes the time of day
361 tod(struct tm *tm) function
420 } /* tod */
628 tod(&runtime);
/freebsd-10.1-release/contrib/tzcode/zic/
H A Dzic.c1110 long dayoff, tod; local
1173 tod = gethms(fields[LP_TIME], _("invalid time of day"), FALSE);
1201 leapadd(tadd(t, tod), positive, lp->l_value, count);
1840 register long tod; local
1871 tod = rp->r_tod;
1873 tod += gmtoff;
1875 tod += dstoff;
1876 if (tod < 0) {
1880 if (tod != 2 * SECSPERMIN * MINSPERHOUR) {
1882 if (stringoffset(end(result), tod) !
[all...]
/freebsd-10.1-release/usr.sbin/rpc.lockd/
H A Dkern.c68 time_t tod; /* Time-of-day. */ member in struct:__owner
160 (void)time(&owner.tod);
/freebsd-10.1-release/contrib/libarchive/libarchive/
H A Darchive_getdate.c906 time_t tod; local
1007 tod = RelativeDate(Start, gds->Timezone,
1009 Start += tod;

Completed in 312 milliseconds

12