Searched refs:headOff (Results 1 – 1 of 1) sorted by relevance
| /xnu-11215/bsd/vfs/ |
| H A D | vfs_cluster.c | 210 …off_t headOff, off_t tailOff, int flags, int (*)(buf_t, void *), void *callback_arg) __attribute__… 2746 cluster_write(vnode_t vp, struct uio *uio, off_t oldEOF, off_t newEOF, off_t headOff, off_t tailOff… in cluster_write() argument 2748 return cluster_write_ext(vp, uio, oldEOF, newEOF, headOff, tailOff, xflags, NULL, NULL); in cluster_write() 2753 cluster_write_ext(vnode_t vp, struct uio *uio, off_t oldEOF, off_t newEOF, off_t headOff, off_t tai… in cluster_write_ext() argument 2854 headOff, (off_t)0, zflags | IO_HEADZEROFILL | IO_SYNC, callback, callback_arg); in cluster_write_ext() 3924 if (headOff < uio->uio_offset) { in cluster_write_copy() 3925 zero_cnt = uio->uio_offset - headOff; in cluster_write_copy() 3926 zero_off = headOff; in cluster_write_copy() 3928 } else if (headOff < newEOF) { in cluster_write_copy() 3929 zero_cnt = newEOF - headOff; in cluster_write_copy() [all …]
|