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

/macosx-10.10/xnu-2782.1.97/bsd/vm/
H A Dvm_compressor_backing_file.c56 if ((error = vnode_open(path, (O_CREAT | O_TRUNC | FREAD | FWRITE), S_IRUSR | S_IWUSR, 0, vp, ctx))) {
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dkern_core.c285 if ((error = vnode_open(name, (O_CREAT | FWRITE | O_NOFOLLOW), S_IRUSR, VNODE_LOOKUP_NOFOLLOW, &vp, ctx)))
H A Dkern_shutdown.c222 if ((error = vnode_open(PROC_SHUTDOWN_LOG, (O_CREAT | FWRITE | O_NOFOLLOW), 0644, 0, &sd_logvp, ctx))) {
H A Dkern_symfile.c226 if ((error = vnode_open(name, (create_file) ? (O_CREAT | FWRITE) : FWRITE,
H A Dkdebug.c3153 if ((error = vnode_open(filename, (O_CREAT | FWRITE | O_NOFOLLOW), 0600, 0, &vp, ctx)))
/macosx-10.10/xnu-2782.1.97/bsd/hfs/
H A Dhfs_quota.c565 error = vnode_open(fnamep, FREAD|FWRITE, 0, 0, &vp, NULL);
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dvnode.h1616 @abstract Close a file as opened with vnode_open().
1617 @discussion vnode_close() drops the refcount (persistent reference) picked up in vnode_open() and calls down to the filesystem with VNOP_CLOSE. It should
1640 * Flags for the vnode_lookup and vnode_open
1656 @function vnode_open
1658 @discussion If vnode_open() succeeds, it returns with both an iocount and a usecount on the returned vnode. These must
1669 errno_t vnode_open(const char *, int, int, int, vnode_t *, vfs_context_t);
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIOPMrootDomain.cpp8818 if (vnode_open(name, (O_CREAT | FWRITE | O_NOFOLLOW),
8869 if (vnode_open(dstFname, (O_CREAT | FWRITE | O_NOFOLLOW),
9011 if (vnode_open(hibernateFilename, (FREAD | O_NOFOLLOW), 0,
/macosx-10.10/BootCache-109/
H A Dkext.c5155 kret = vnode_open(BC_BOOT_BACKINGFILE, (O_CREAT | O_NOFOLLOW | FREAD),
5158 debug("vnode_open failed - %d", kret);
/macosx-10.10/xnu-2782.1.97/bsd/vfs/
H A Dvfs_subr.c5182 vnode_open(const char *path, int fmode, int cmode, int flags, vnode_t *vpp, vfs_context_t ctx) function

Completed in 300 milliseconds