Searched refs:t2p (Results 1 - 6 of 6) sorted by relevance

/freebsd-10.1-release/sys/netsmb/
H A Dsmb_rq.c58 static int smb_t2_reply(struct smb_t2rq *t2p);
377 struct smb_t2rq *t2p; local
380 t2p = malloc(sizeof(*t2p), M_SMBRQ, M_WAITOK);
381 if (t2p == NULL)
383 error = smb_t2_init(t2p, layer, setup, scred);
384 t2p->t2_flags |= SMBT2_ALLOCED;
386 smb_t2_done(t2p);
389 *t2pp = t2p;
394 smb_t2_init(struct smb_t2rq *t2p, struc argument
413 smb_t2_done(struct smb_t2rq *t2p) argument
441 smb_t2_reply(struct smb_t2rq *t2p) argument
549 smb_t2_request_int(struct smb_t2rq *t2p) argument
750 smb_t2_request(struct smb_t2rq *t2p) argument
[all...]
H A Dsmb_usr.c299 struct smb_t2rq *t2p; local
305 t2p = malloc(sizeof(struct smb_t2rq), M_SMBTEMP, M_WAITOK);
306 error = smb_t2_init(t2p, SSTOCP(ssp), dp->ioc_setup[0], scred);
308 free(t2p, M_SMBTEMP);
311 len = t2p->t2_setupcount = dp->ioc_setupcnt;
313 t2p->t2_setupdata = dp->ioc_setup;
315 t2p->t_name = smb_strdupin(dp->ioc_name, 128);
316 if (t2p->t_name == NULL) {
321 t2p->t2_maxscount = 0;
322 t2p
[all...]
H A Dsmb_rq.h146 void smb_t2_done(struct smb_t2rq *t2p);
147 int smb_t2_request(struct smb_t2rq *t2p);
/freebsd-10.1-release/sys/fs/smbfs/
H A Dsmbfs_smb.c142 struct smb_t2rq *t2p; local
150 scred, &t2p);
153 mbp = &t2p->t2_tparam;
156 t2p->t2_maxpcount = 2;
157 t2p->t2_maxdcount = sizeof(int64_t) * 2 + sizeof(uint32_t) * 2;
158 error = smb_t2_request(t2p);
160 smb_t2_done(t2p);
163 mdp = &t2p->t2_rdata;
174 smb_t2_done(t2p);
183 struct smb_t2rq *t2p; local
274 struct smb_t2rq *t2p; local
479 struct smb_t2rq *t2p; local
534 struct smb_t2rq *t2p; local
630 struct smb_t2rq *t2p; local
1096 struct smb_t2rq *t2p; local
1243 struct smb_t2rq *t2p; local
[all...]
/freebsd-10.1-release/usr.sbin/traceroute6/
H A Dtraceroute6.c1115 deltaT(t1p, t2p)
1116 struct timeval *t1p, *t2p;
1120 dt = (double)(t2p->tv_sec - t1p->tv_sec) * 1000.0 +
1121 (double)(t2p->tv_usec - t1p->tv_usec) / 1000.0;
/freebsd-10.1-release/contrib/traceroute/
H A Dtraceroute.c1257 deltaT(struct timeval *t1p, struct timeval *t2p) argument
1261 dt = (double)(t2p->tv_sec - t1p->tv_sec) * 1000.0 +
1262 (double)(t2p->tv_usec - t1p->tv_usec) / 1000.0;

Completed in 293 milliseconds