Searched defs:t2p (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/smbclnt/netsmb/
H A Dsmb_usr.c219 struct smb_t2rq *t2p = NULL; local
253 t2p = kmem_alloc(sizeof (*t2p), KM_SLEEP);
254 err = smb_t2_init(t2p, SSTOCP(ssp),
258 t2p->t2_setupcount = ioc->ioc_setupcnt;
259 t2p->t2_setupdata = ioc->ioc_setup;
265 t2p->t_name_len = strlen(ioc->ioc_name);
266 t2p->t_name = ioc->ioc_name;
268 t2p->t2_maxscount = 0;
269 t2p
[all...]
H A Dsmb_rq.c76 static int smb_t2_reply(struct smb_t2rq *t2p);
551 struct smb_t2rq *t2p; local
554 t2p = (struct smb_t2rq *)kmem_alloc(sizeof (*t2p), KM_SLEEP);
555 if (t2p == NULL)
557 error = smb_t2_init(t2p, layer, &setup, 1, scred);
558 t2p->t2_flags |= SMBT2_ALLOCED;
560 smb_t2_done(t2p);
563 *t2pp = t2p;
590 smb_t2_init(struct smb_t2rq *t2p, struc argument
634 smb_t2_done(struct smb_t2rq *t2p) argument
682 smb_t2_reply(struct smb_t2rq *t2p) argument
938 smb_t2_request_int(struct smb_t2rq *t2p) argument
1377 smb_t2_request(struct smb_t2rq *t2p) argument
[all...]
/illumos-gate/usr/src/uts/common/fs/smbclnt/smbfs/
H A Dsmbfs_xattr.c305 struct smb_t2rq *t2p; local
332 ctx->f_scred, &t2p);
335 ctx->f_t2 = t2p;
337 mbp = &t2p->t2_tparam;
344 t2p->t2_maxpcount = 2;
345 t2p->t2_maxdcount = INT16_MAX;
346 error = smb_t2_request(t2p);
348 if (t2p->t2_sr_error == NT_STATUS_INVALID_PARAMETER)
373 struct smb_t2rq *t2p; local
378 t2p
[all...]
H A Dsmbfs_smb.c232 struct smb_t2rq *t2p; local
257 error = smb_t2_alloc(SSTOCP(ssp), cmd, scrp, &t2p);
260 mbp = &t2p->t2_tparam;
279 smb_t2_done(t2p);
284 t2p->t2_maxpcount = 2;
285 t2p->t2_maxdcount = vcp->vc_txmax;
286 error = smb_t2_request(t2p);
288 smb_t2_done(t2p);
297 mdp = &t2p->t2_rdata;
364 smb_t2_done(t2p);
388 struct smb_t2rq *t2p; local
468 struct smb_t2rq *t2p; local
598 struct smb_t2rq *t2p; local
630 struct smb_t2rq *t2p; local
1027 struct smb_t2rq *t2p; local
1899 struct smb_t2rq *t2p; local
2066 struct smb_t2rq *t2p; local
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/traceroute/
H A Dtraceroute.c2010 deltaT(struct timeval *t1p, struct timeval *t2p) argument
2014 dt = (double)(t2p->tv_sec - t1p->tv_sec) * 1000.0 +
2015 (double)(t2p->tv_usec - t1p->tv_usec) / 1000.0;

Completed in 68 milliseconds