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

/freebsd-12-stable/sys/netsmb/
H A Dsmb_rq.c60 static int smb_t2_reply(struct smb_t2rq *t2p);
379 struct smb_t2rq *t2p; local
382 t2p = malloc(sizeof(*t2p), M_SMBRQ, M_WAITOK);
383 if (t2p == NULL)
385 error = smb_t2_init(t2p, layer, setup, scred);
386 t2p->t2_flags |= SMBT2_ALLOCED;
388 smb_t2_done(t2p);
391 *t2pp = t2p;
396 smb_t2_init(struct smb_t2rq *t2p, struc argument
415 smb_t2_done(struct smb_t2rq *t2p) argument
443 smb_t2_reply(struct smb_t2rq *t2p) argument
551 smb_t2_request_int(struct smb_t2rq *t2p) argument
752 smb_t2_request(struct smb_t2rq *t2p) argument
[all...]
H A Dsmb_usr.c301 struct smb_t2rq *t2p; local
307 t2p = malloc(sizeof(struct smb_t2rq), M_SMBTEMP, M_WAITOK);
308 error = smb_t2_init(t2p, SSTOCP(ssp), dp->ioc_setup[0], scred);
310 free(t2p, M_SMBTEMP);
313 len = t2p->t2_setupcount = dp->ioc_setupcnt;
315 t2p->t2_setupdata = dp->ioc_setup;
317 t2p->t_name = smb_strdupin(dp->ioc_name, 128);
318 if (t2p->t_name == NULL) {
323 t2p->t2_maxscount = 0;
324 t2p
[all...]
H A Dsmb_rq.h148 void smb_t2_done(struct smb_t2rq *t2p);
149 int smb_t2_request(struct smb_t2rq *t2p);
/freebsd-12-stable/sys/fs/smbfs/
H A Dsmbfs_smb.c144 struct smb_t2rq *t2p; local
152 scred, &t2p);
155 mbp = &t2p->t2_tparam;
158 t2p->t2_maxpcount = 2;
159 t2p->t2_maxdcount = sizeof(int64_t) * 2 + sizeof(uint32_t) * 2;
160 error = smb_t2_request(t2p);
162 smb_t2_done(t2p);
165 mdp = &t2p->t2_rdata;
176 smb_t2_done(t2p);
185 struct smb_t2rq *t2p; local
276 struct smb_t2rq *t2p; local
481 struct smb_t2rq *t2p; local
536 struct smb_t2rq *t2p; local
632 struct smb_t2rq *t2p; local
1098 struct smb_t2rq *t2p; local
1245 struct smb_t2rq *t2p; local
[all...]
/freebsd-12-stable/usr.sbin/traceroute6/
H A Dtraceroute6.c1200 deltaT(struct timeval *t1p, struct timeval *t2p) argument
1204 dt = (double)(t2p->tv_sec - t1p->tv_sec) * 1000.0 +
1205 (double)(t2p->tv_usec - t1p->tv_usec) / 1000.0;
/freebsd-12-stable/contrib/traceroute/
H A Dtraceroute.c1371 deltaT(struct timeval *t1p, struct timeval *t2p) argument
1375 dt = (double)(t2p->tv_sec - t1p->tv_sec) * 1000.0 +
1376 (double)(t2p->tv_usec - t1p->tv_usec) / 1000.0;

Completed in 245 milliseconds