Searched refs:smb_vc (Results 1 - 20 of 20) sorted by relevance

/freebsd-10-stable/sys/netsmb/
H A Dsmb_tran.h52 int (*tr_create)(struct smb_vc *vcp, struct thread *td);
53 int (*tr_done)(struct smb_vc *vcp, struct thread *td);
54 int (*tr_bind)(struct smb_vc *vcp, struct sockaddr *sap, struct thread *td);
55 int (*tr_connect)(struct smb_vc *vcp, struct sockaddr *sap, struct thread *td);
56 int (*tr_disconnect)(struct smb_vc *vcp, struct thread *td);
57 int (*tr_send)(struct smb_vc *vcp, struct mbuf *m0, struct thread *td);
58 int (*tr_recv)(struct smb_vc *vcp, struct mbuf **mpp, struct thread *td);
59 void (*tr_timo)(struct smb_vc *vcp);
60 void (*tr_intr)(struct smb_vc *vcp);
61 int (*tr_getparam)(struct smb_vc *vc
[all...]
H A Dsmb_conn.h170 struct smb_vc;
229 struct smb_vc { struct
308 #define CPTOVC(cp) ((struct smb_vc*)(cp))
357 struct smb_vc **vcpp);
373 struct smb_cred *scred, struct smb_vc **vcpp);
374 int smb_vc_connect(struct smb_vc *vcp, struct smb_cred *scred);
375 int smb_vc_access(struct smb_vc *vcp, struct smb_cred *scred, mode_t mode);
376 int smb_vc_get(struct smb_vc *vcp, struct smb_cred *scred);
377 void smb_vc_put(struct smb_vc *vcp, struct smb_cred *scred);
378 void smb_vc_ref(struct smb_vc *vc
[all...]
H A Dsmb_subr.h97 struct smb_vc;
111 int smb_calcmackey(struct smb_vc *vcp);
115 int smb_put_dmem(struct mbchain *mbp, struct smb_vc *vcp,
117 int smb_put_dstring(struct mbchain *mbp, struct smb_vc *vcp,
H A Dsmb_trantcp.h53 struct smb_vc * nbp_vc;
H A Dsmb_conn.c62 static int smb_vc_disconnect(struct smb_vc *vcp);
120 struct smb_cred *scred, struct smb_vc **vcpp)
123 struct smb_vc *vcp;
131 vcp = (struct smb_vc *)scp;
180 struct smb_cred *scred, struct smb_vc **vcpp)
182 struct smb_vc *vcp;
387 struct smb_cred *scred, struct smb_vc **vcpp)
389 struct smb_vc *vcp;
407 smb_co_init(VCTOCP(vcp), SMBL_VC, "smb_vc ilock", "smb_vc");
[all...]
H A Dsmb_dev.h161 struct smb_vc * sd_vc; /* reference to VC */
184 struct smb_vc **vcpp, struct smb_share **sspp);
186 struct smb_cred *scred, struct smb_vc **vcpp);
187 int smb_usr_openshare(struct smb_vc *vcp, struct smbioc_oshare *data,
H A Dsmb_trantcp.c77 static int smb_nbst_disconnect(struct smb_vc *vcp, struct thread *td);
452 smb_nbst_create(struct smb_vc *vcp, struct thread *td)
468 smb_nbst_done(struct smb_vc *vcp, struct thread *td)
484 smb_nbst_bind(struct smb_vc *vcp, struct sockaddr *sap, struct thread *td)
517 smb_nbst_connect(struct smb_vc *vcp, struct sockaddr *sap, struct thread *td)
563 smb_nbst_disconnect(struct smb_vc *vcp, struct thread *td)
583 smb_nbst_send(struct smb_vc *vcp, struct mbuf *m0, struct thread *td)
604 smb_nbst_recv(struct smb_vc *vcp, struct mbuf **mpp, struct thread *td)
617 smb_nbst_timo(struct smb_vc *vcp)
623 smb_nbst_intr(struct smb_vc *vc
[all...]
H A Dsmb_rq.h65 struct smb_vc;
70 struct smb_vc * sr_vc;
125 struct smb_vc * t2_vc;
H A Dsmb_iod.c99 struct smb_vc *vcp = iod->iod_vc;
120 struct smb_vc *vcp = iod->iod_vc;
174 struct smb_vc *vcp = iod->iod_vc;
216 struct smb_vc *vcp = iod->iod_vc;
285 struct smb_vc *vcp = iod->iod_vc;
403 struct smb_vc *vcp = rqp->sr_vc;
465 struct smb_vc *vcp = rqp->sr_vc;
533 struct smb_vc *vcp = iod->iod_vc;
583 /* struct smb_vc *vcp = iod->iod_vc;*/
672 smb_iod_create(struct smb_vc *vc
[all...]
H A Dsmb_usr.c127 struct smb_vc **vcpp, struct smb_share **sspp)
129 struct smb_vc *vcp = NULL;
161 * If no errors occured smb_vc returned locked and referenced.
165 struct smb_vc **vcpp)
167 struct smb_vc *vcp = NULL;
183 smb_usr_openshare(struct smb_vc *vcp, struct smbioc_oshare *dp,
H A Dsmb_crypt.c145 smb_calcmackey(struct smb_vc *vcp)
205 struct smb_vc *vcp = rqp->sr_vc;
268 struct smb_vc *vcp = rqp->sr_vc;
H A Dsmb_smb.c74 smb_vc_maxread(struct smb_vc *vcp)
92 smb_vc_maxwrite(struct smb_vc *vcp)
105 smb_smb_nomux(struct smb_vc *vcp, struct smb_cred *scred, const char *name)
114 smb_smb_negotiate(struct smb_vc *vcp, struct smb_cred *scred)
294 smb_smb_ssnsetup(struct smb_vc *vcp, struct smb_cred *scred)
441 smb_smb_ssnclose(struct smb_vc *vcp, struct smb_cred *scred)
501 struct smb_vc *vcp;
931 smb_smb_echo(struct smb_vc *vcp, struct smb_cred *scred)
H A Dsmb_subr.c341 smb_put_dmem(struct mbchain *mbp, struct smb_vc *vcp, const char *src,
359 smb_put_dstring(struct mbchain *mbp, struct smb_vc *vcp, const char *src,
H A Dsmb_rq.c56 struct smb_vc **vcpp, struct smb_share **sspp);
109 struct smb_vc *vcp = rqp->sr_vc;
161 struct smb_vc *vcp = rqp->sr_vc;
279 struct smb_vc **vcpp, struct smb_share **sspp)
281 struct smb_vc *vcp = NULL;
551 struct smb_vc *vcp = t2p->t2_vc;
H A Dsmb_dev.c145 struct smb_vc *vcp;
178 struct smb_vc *vcp;
/freebsd-10-stable/sys/fs/smbfs/
H A Dsmbfs_subr.c111 smbfs_fullpath(struct mbchain *mbp, struct smb_vc *vcp, struct smbnode *dnp,
152 smbfs_fname_tolocal(struct smb_vc *vcp, char *name, int *nmlen, int caseopt)
H A Dsmbfs_subr.h166 int smbfs_fullpath(struct mbchain *mbp, struct smb_vc *vcp,
171 int smbfs_fname_tolocal(struct smb_vc *vcp, char *name, int *nmlen, int caseopt);
H A Dsmbfs_vfsops.c134 struct smb_vc *vcp;
H A Dsmbfs_smb.c481 struct smb_vc *vcp = SSTOVC(ssp);
536 struct smb_vc *vcp = SSTOVC(ssp);
947 struct smb_vc *vcp = SSTOVC(ctx->f_ssp);
1097 struct smb_vc *vcp = SSTOVC(ctx->f_ssp);
H A Dsmbfs_vnops.c301 struct smb_vc *vcp = SSTOVC(ssp);
895 struct smb_vc *vcp = SSTOVC(smp->sm_share);

Completed in 99 milliseconds