Home
last modified time | relevance | path

Searched refs:vnode_setsize (Results 1 – 10 of 10) sorted by relevance

/xnu-8019.80.24/bsd/vm/
H A Dvm_compressor_backing_file.c130 error = vnode_setsize(vp, *size, IO_NOZEROFILL, ctx); in vm_swapfile_preallocate()
/xnu-8019.80.24/bsd/sys/
H A Dvnode_internal.h557 errno_t vnode_setsize(vnode_t, off_t, int ioflag, vfs_context_t);
/xnu-8019.80.24/bsd/kern/
H A Dkern_shutdown.c340 vnode_setsize(sd_logvp, (off_t)0, 0, ctx); in sd_openlog()
H A Dkern_symfile.c349 error = vnode_setsize(ref->vp, set_file_size, IO_NOZEROFILL | IO_NOAUTH, ref->ctx); in kern_open_file_for_direct_io()
H A Ddecmpfs.c2179 int error = vnode_setsize(vp, 0, 0, decmpfs_ctx);
H A Dkern_descrip.c3463 error = vnode_setsize(vp, offset, IO_NOZEROFILL, &context); in sys_fcntl_nocancel()
3465 error = vnode_setsize(vp, offset, 0, &context); in sys_fcntl_nocancel()
/xnu-8019.80.24/bsd/dev/vn/
H A Dvn.c432 vnode_setsize(vn->sc_shadow_vp, size, IO_SYNC, ctx); in vnwrite_shadow()
715 vnode_setsize(vn->sc_shadow_vp, size, IO_SYNC, ctx); in shadow_write()
/xnu-8019.80.24/bsd/vfs/
H A Dvfs_xattr.c2012 error = vnode_setsize(xvp, ainfo.filesize, 0, context); in default_setxattr()
2221 error = vnode_setsize(xvp, ainfo.filesize, 0, context); in default_removexattr()
2946 vnode_setsize(xvp, filehdr->entries[1].offset + delta, 0, context); in get_xattrinfo()
H A Dvfs_subr.c6865 vnode_setsize(vnode_t vp, off_t size, int ioflag, vfs_context_t ctx) in vnode_setsize() function
H A Dvfs_syscalls.c4254 if ((flags & O_TRUNC) && ((error = vnode_setsize(vp, (off_t)0, 0, ctx)) != 0)) { in open1()