Searched refs:hfs_vget (Results 1 - 10 of 10) sorted by relevance

/xnu-2782.1.97/bsd/hfs/
H A Dhfs_lookup.c336 if ((retval = hfs_vget(hfsmp, hfs_currentparent(VTOC(dvp)), &tvp, 0, 0))) {
H A Dhfs_link.c468 if ((error = hfs_vget(hfsmp, hfs_currentparent(VTOC(vp)), &fdvp, 1, 0))) {
1001 if (hfs_vget(hfsmp, kRootDirID, &dvp, 0, 0) != 0) {
H A Dhfs_vfsops.c2227 return hfs_vget(VFSTOHFS(mp), (cnid_t)kHFSRootFolderID, vpp, 1, 0);
2616 * - call hfs_vget() to get the locked cnode
2634 result = hfs_vget(VFSTOHFS(mp), ntohl(hfsfhp->hfsfid_cnid), &nvp, 0, 0);
2940 if (hfs_vget (hfsmp, jinfo_attr.ca_fileid, &jib_vp, 1, 0)) {
3213 error = hfs_vget(hfsmp, (cnid_t)ino, vpp, 1, 0);
3255 hfs_vget(struct hfsmount *hfsmp, cnid_t cnid, struct vnode **vpp, int skiplock, int allow_deleted) function
H A Dhfs_resize.c103 error = hfs_vget(hfsmp, kHFSRootFolderID, &vp, 0, 0);
3036 * so provide allow_deleted == 1 for hfs_vget().
3038 if (hfs_vget(hfsmp, key->fileID, &vp, 0, 1) != 0) {
3159 if (hfs_vget(hfsmp, filerec.fileID, &vp, 0, 1) != 0) {
3161 printf("hfs_reclaim_filespace: hfs_vget(%u) failed.\n", filerec.fileID);
H A Dhfs_hotfiles.c1140 error = hfs_vget(hfsmp, listp->hfl_hotfile[i].hf_fileid, &vp, 0, 0);
1363 error = hfs_vget(hfsmp, key->fileID, &vp, 0, 0);
H A Dhfs.h750 extern int hfs_vget(struct hfsmount *, cnid_t, struct vnode **, int, int);
H A Dhfs_search.c596 myErr = hfs_vget(hfsmp, myNodeID, &vp, 0, 0);
H A Dhfs_attrlist.c384 if (hfs_vget(hfsmp, cattrp->ca_fileid, &vp, 0, 0) != 0) {
H A Dhfs_readwrite.c1208 myErr = hfs_vget(hfsmp, thisNodeID, &vp, 0, 0);
1486 myErr = hfs_vget(hfsmp, cnid, &cvp, 0, 0);
1659 * hfs_vget, since we will need the parent for build_path call.
H A Dhfs_vnops.c241 * present, it will use hfs_vget() to create a new vnode for the
278 if (0 == hfs_vget(VTOHFS(cp->c_rsrc_vp), cp->c_cnid, data_vp, 1, 0) &&
375 int putaway = 0; /* flag to remember if we used hfs_vget() */
385 if (0 != hfs_vget(hfsmp, fid, &vp, skiplock, 0)) { /* vnode is null, use hfs_vget() to get it */
388 putaway = 1; /* note that hfs_vget() was used to aquire the vnode */
418 if (putaway) { /* did we use hfs_vget() to get this vnode? */

Completed in 188 milliseconds