fromfsp           160 examples/VFS/skel_opaque.c static ssize_t skel_sendfile(vfs_handle_struct *handle, int tofd, files_struct *fromfsp, const DATA_BLOB *hdr,
fromfsp           163 examples/VFS/skel_opaque.c 	return vfswrap_sendfile(NULL, tofd, fromfsp, hdr, offset, n);
fromfsp           154 examples/VFS/skel_transparent.c static ssize_t skel_sendfile(vfs_handle_struct *handle, int tofd, files_struct *fromfsp, const DATA_BLOB *hdr, SMB_OFF_T offset, size_t n)
fromfsp           156 examples/VFS/skel_transparent.c 	return SMB_VFS_NEXT_SENDFILE(handle, tofd, fromfsp, hdr, offset, n);
fromfsp           354 source3/include/vfs.h 		ssize_t (*sendfile)(struct vfs_handle_struct *handle, int tofd, files_struct *fromfsp, const DATA_BLOB *header, SMB_OFF_T offset, size_t count);
fromfsp            59 source3/include/vfs_macros.h #define SMB_VFS_SENDFILE(tofd, fromfsp, header, offset, count) ((fromfsp)->conn->vfs.ops.sendfile((fromfsp)->conn->vfs.handles.sendfile, (tofd), (fromfsp), (header), (offset), (count)))
fromfsp           193 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_SENDFILE(tofd, fromfsp, header, offset, count) ((fromfsp)->conn->vfs_opaque.ops.sendfile((fromfsp)->conn->vfs_opaque.handles.sendfile, (tofd), (fromfsp), (header), (offset), (count)))
fromfsp           328 source3/include/vfs_macros.h #define SMB_VFS_NEXT_SENDFILE(handle, tofd, fromfsp, header, offset, count) ((handle)->vfs_next.ops.sendfile((handle)->vfs_next.handles.sendfile, (tofd), (fromfsp), (header), (offset), (count)))
fromfsp           127 source3/modules/vfs_cacheprime.c                 files_struct *              fromfsp,
fromfsp           133 source3/modules/vfs_cacheprime.c                 prime_cache(handle, fromfsp, offset, count);
fromfsp           136 source3/modules/vfs_cacheprime.c         return SMB_VFS_NEXT_SENDFILE(handle, tofd, fromfsp,
fromfsp           442 source3/modules/vfs_default.c static ssize_t vfswrap_sendfile(vfs_handle_struct *handle, int tofd, files_struct *fromfsp, const DATA_BLOB *hdr,
fromfsp           448 source3/modules/vfs_default.c 	result = sys_sendfile(tofd, fromfsp->fh->fd, hdr, offset, n);
fromfsp           145 source3/modules/vfs_full_audit.c 			      files_struct *fromfsp,
fromfsp          1311 source3/modules/vfs_full_audit.c 			      files_struct *fromfsp,
fromfsp          1317 source3/modules/vfs_full_audit.c 	result = SMB_VFS_NEXT_SENDFILE(handle, tofd, fromfsp, hdr, offset, n);
fromfsp          1320 source3/modules/vfs_full_audit.c 	       "%s", fromfsp->fsp_name);
fromfsp            59 source3/modules/vfs_onefs.c 			      files_struct *fromfsp, const DATA_BLOB *header,
fromfsp            65 source3/modules/vfs_onefs.c 	result = onefs_sys_sendfile(handle->conn, tofd, fromfsp->fh->fd,
fromfsp            38 source3/modules/vfs_readahead.c 					files_struct *fromfsp,
fromfsp            47 source3/modules/vfs_readahead.c 		int err = readahead(fromfsp->fh->fd, offset, (size_t)rhd->len);
fromfsp            49 source3/modules/vfs_readahead.c 			(unsigned int)fromfsp->fh->fd,
fromfsp            54 source3/modules/vfs_readahead.c 		int err = posix_fadvise(fromfsp->fh->fd, offset, (off_t)rhd->len, POSIX_FADV_WILLNEED);
fromfsp            56 source3/modules/vfs_readahead.c 			(unsigned int)fromfsp->fh->fd,
fromfsp            69 source3/modules/vfs_readahead.c 					fromfsp,