/src/sys/fs/ntfs/ |
ntfs_vnops.c | 334 u_int32_t towrite; local in function:ntfs_strategy 340 towrite = MIN(bp->b_bcount, 342 dprintf(("ntfs_strategy: towrite: %d, fsize: %d\n", 343 towrite,(u_int32_t)fp->f_size)); 346 fp->f_attrname, ntfs_cntob(bp->b_blkno),towrite, 373 u_int64_t towrite; local in function:ntfs_write 387 towrite = MIN(uio->uio_resid, fp->f_size - uio->uio_offset); 389 dprintf((", towrite: %qu\n",(long long)towrite)); 392 fp->f_attrname, uio->uio_offset, towrite, NULL, &written, uio) [all...] |
ntfs_vnops.c | 334 u_int32_t towrite; local in function:ntfs_strategy 340 towrite = MIN(bp->b_bcount, 342 dprintf(("ntfs_strategy: towrite: %d, fsize: %d\n", 343 towrite,(u_int32_t)fp->f_size)); 346 fp->f_attrname, ntfs_cntob(bp->b_blkno),towrite, 373 u_int64_t towrite; local in function:ntfs_write 387 towrite = MIN(uio->uio_resid, fp->f_size - uio->uio_offset); 389 dprintf((", towrite: %qu\n",(long long)towrite)); 392 fp->f_attrname, uio->uio_offset, towrite, NULL, &written, uio) [all...] |
ntfs_subr.c | 1207 off_t off = roff, left = rsize, towrite; local in function:ntfs_writeattr_plain 1217 towrite = MIN(left, ntfs_cntob(vap->va_vcnend + 1) - off); 1219 (long long) off, (long long) towrite, 1224 towrite, data, &init, uio); 1228 __func__, (long long) off, (long long) towrite)); 1236 left -= towrite; 1237 off += towrite; 1238 data = (char *)data + towrite;
|
ntfs_subr.c | 1207 off_t off = roff, left = rsize, towrite; local in function:ntfs_writeattr_plain 1217 towrite = MIN(left, ntfs_cntob(vap->va_vcnend + 1) - off); 1219 (long long) off, (long long) towrite, 1224 towrite, data, &init, uio); 1228 __func__, (long long) off, (long long) towrite)); 1236 left -= towrite; 1237 off += towrite; 1238 data = (char *)data + towrite;
|