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

/freebsd-current/sys/netsmb/
H A Dsmb_rq.c57 static int smb_t2_reply(struct smb_t2rq *t2p);
375 struct smb_t2rq *t2p; local
378 t2p = malloc(sizeof(*t2p), M_SMBRQ, M_WAITOK);
379 if (t2p == NULL)
381 error = smb_t2_init(t2p, layer, setup, scred);
382 t2p->t2_flags |= SMBT2_ALLOCED;
384 smb_t2_done(t2p);
387 *t2pp = t2p;
392 smb_t2_init(struct smb_t2rq *t2p, struc argument
411 smb_t2_done(struct smb_t2rq *t2p) argument
445 smb_t2_reply(struct smb_t2rq *t2p) argument
553 smb_t2_request_int(struct smb_t2rq *t2p) argument
754 smb_t2_request(struct smb_t2rq *t2p) argument
[all...]
H A Dsmb_usr.c298 struct smb_t2rq *t2p; local
304 t2p = malloc(sizeof(struct smb_t2rq), M_SMBTEMP, M_WAITOK);
305 error = smb_t2_init(t2p, SSTOCP(ssp), dp->ioc_setup[0], scred);
307 free(t2p, M_SMBTEMP);
310 len = t2p->t2_setupcount = dp->ioc_setupcnt;
312 t2p->t2_setupdata = dp->ioc_setup;
314 t2p->t_name = smb_strdupin(dp->ioc_name, 128);
315 if (t2p->t_name == NULL) {
320 t2p->t2_maxscount = 0;
321 t2p
[all...]
H A Dsmb_rq.h145 void smb_t2_done(struct smb_t2rq *t2p);
146 int smb_t2_request(struct smb_t2rq *t2p);
/freebsd-current/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);
182 struct smb_t2rq *t2p; local
273 struct smb_t2rq *t2p; local
478 struct smb_t2rq *t2p; local
533 struct smb_t2rq *t2p; local
629 struct smb_t2rq *t2p; local
1093 struct smb_t2rq *t2p; local
1240 struct smb_t2rq *t2p; local
[all...]
/freebsd-current/usr.sbin/traceroute6/
H A Dtraceroute6.c1252 deltaT(struct timeval *t1p, struct timeval *t2p) argument
1256 dt = (double)(t2p->tv_sec - t1p->tv_sec) * 1000.0 +
1257 (double)(t2p->tv_usec - t1p->tv_usec) / 1000.0;
/freebsd-current/usr.sbin/traceroute/
H A Dtraceroute.c1323 deltaT(struct timeval *t1p, struct timeval *t2p) argument
1327 dt = (double)(t2p->tv_sec - t1p->tv_sec) * 1000.0 +
1328 (double)(t2p->tv_usec - t1p->tv_usec) / 1000.0;

Completed in 190 milliseconds