Searched refs:fhlen (Results 1 - 9 of 9) sorted by relevance

/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs_boot.c756 u_int32_t fhlen; local
760 fhlen = ntohl(*(u_int32_t*)rdata->data);
762 if (mlen < (int)(sizeof(u_int32_t)*2 + fhlen))
764 bcopy(fh, fhp, fhlen);
765 *fhlenp = fhlen;
H A Dnfs_syscalls.c413 int error, fhlen, fidlen; local
429 error = copyin(uap->fhp, &fhlen, sizeof(fhlen));
433 if ((fhlen != NFSV2_MAX_FH_SIZE) && (fhlen != NFSV3_MAX_FH_SIZE))
434 fhlen = NFSV3_MAX_FH_SIZE;
435 fidlen = fhlen - sizeof(struct nfs_exphandle);
H A Dnfs_vnops.c5153 int i, error = ESRCH, fhlen; local
5161 fhlen = dp->d_name[dp->d_namlen+1];
5177 if ((fhp->fh_len == fhlen) && !bcmp(&dp->d_name[dp->d_namlen+2], fhp->fh_data, fhlen)) {
5187 fhp->fh_len = fhlen;
5353 uint32_t namlen, skiplen, fhlen, xlen, attrlen, reclen, space_free, space_needed; local
5470 fhlen = rdirplus ? (1 + dnp->n_fhsize) : 0;
5471 xlen = rdirplus ? (fhlen + sizeof(time_t)) : 0;
5548 fhlen = fh.fh_len + 1;
5549 xlen = fhlen
[all...]
H A Dnfs4_vnops.c722 uint32_t namlen, skiplen, fhlen, xlen, attrlen, reclen, space_free, space_needed; local
793 fhlen = rdirplus ? fh.fh_len + 1 : 0;
794 xlen = rdirplus ? (fhlen + sizeof(time_t)) : 0;
919 fhlen = rdirplus ? (1 + dnp->n_fhsize) : 0;
920 xlen = rdirplus ? (fhlen + sizeof(time_t)) : 0;
1002 fhlen = fh.fh_len + 1;
1003 xlen = fhlen + sizeof(time_t);
1017 fhlen = fh.fh_len + 1;
1018 xlen = fhlen + sizeof(time_t);
1020 bzero(&dp->d_name[dp->d_namlen+1], fhlen);
4556 nfs4_open_confirm_rpc( struct nfsmount *nmp, nfsnode_t dnp, u_char *fhp, int fhlen, struct nfs_open_owner *noop, nfs_stateid *sid, thread_t thd, kauth_cred_t cred, struct nfs_vattr *nvap, uint64_t *xidp) argument
5972 nfs4_delegreturn_rpc(struct nfsmount *nmp, u_char *fhp, int fhlen, struct nfs_stateid *sid, int flags, thread_t thd, kauth_cred_t cred) argument
[all...]
H A Dnfs_vfsops.c4728 __unused int fhlen,
4726 nfs_vfs_fhtovp( __unused mount_t mp, __unused int fhlen, __unused unsigned char *fhp, __unused vnode_t *vpp, __unused vfs_context_t ctx) argument
/darwin-on-arm/xnu/bsd/sys/
H A Dmount.h627 @param fhlen Size of file handle structure, as returned by vfs_vptofh.
633 int (*vfs_fhtovp)(struct mount *mp, int fhlen, unsigned char *fhp, struct vnode **vpp,
640 @param fhlen Size of buffer provided for handle; set to size of actual handle returned.
645 int (*vfs_vptofh)(struct vnode *vp, int *fhlen, unsigned char *fhp, vfs_context_t context);
/darwin-on-arm/xnu/bsd/miscfs/devfs/
H A Ddevfs_vfsops.c454 devfs_fhtovp (__unused struct mount *mp, __unused int fhlen, __unused unsigned char *fhp, __unused struct vnode **vpp, __unused vfs_context_t ctx) argument
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_vfsops.c146 static int hfs_fhtovp(struct mount *mp, int fhlen, unsigned char *fhp, struct vnode **vpp, vfs_context_t context);
2706 hfs_fhtovp(struct mount *mp, int fhlen, unsigned char *fhp, struct vnode **vpp, __unused vfs_context_t context) argument
2715 if (fhlen < (int)sizeof(struct hfsfid))
/darwin-on-arm/xnu/bsd/vfs/
H A Dkpi_vfs.c538 VFS_FHTOVP(mount_t mp, int fhlen, unsigned char * fhp, vnode_t * vpp, vfs_context_t ctx) argument
560 error = (*mp->mnt_op->vfs_fhtovp)(mp, fhlen, fhp, vpp, ctx);

Completed in 84 milliseconds