aiocb             543 examples/VFS/skel_opaque.c static int skel_aio_read(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb             545 examples/VFS/skel_opaque.c 	return vfswrap_aio_read(NULL, fsp, aiocb);
aiocb             548 examples/VFS/skel_opaque.c static int skel_aio_write(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb             550 examples/VFS/skel_opaque.c 	return vfswrap_aio_write(NULL, fsp, aiocb);
aiocb             553 examples/VFS/skel_opaque.c static ssize_t skel_aio_return(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb             555 examples/VFS/skel_opaque.c 	return vfswrap_aio_return(NULL, fsp, aiocb);
aiocb             558 examples/VFS/skel_opaque.c static int skel_aio_cancel(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb             560 examples/VFS/skel_opaque.c 	return vfswrap_aio_cancel(NULL, fsp, aiocb);
aiocb             563 examples/VFS/skel_opaque.c static int skel_aio_error(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb             565 examples/VFS/skel_opaque.c 	return vfswrap_aio_error(NULL, fsp, aiocb);
aiocb             568 examples/VFS/skel_opaque.c static int skel_aio_fsync(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_STRUCT_AIOCB *aiocb)
aiocb             570 examples/VFS/skel_opaque.c 	return vfswrap_aio_fsync(NULL, fsp, op, aiocb);
aiocb             573 examples/VFS/skel_opaque.c static int skel_aio_suspend(struct vfs_handle_struct *handle, struct files_struct *fsp, const SMB_STRUCT_AIOCB * const aiocb[], int n, const struct timespec *ts)
aiocb             575 examples/VFS/skel_opaque.c 	return vfswrap_aio_suspend(NULL, fsp, aiocb, n, ts);
aiocb             503 examples/VFS/skel_transparent.c static int skel_aio_read(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb             505 examples/VFS/skel_transparent.c 	return SMB_VFS_NEXT_AIO_READ(handle, fsp, aiocb);
aiocb             508 examples/VFS/skel_transparent.c static int skel_aio_write(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb             510 examples/VFS/skel_transparent.c 	return SMB_VFS_NEXT_AIO_WRITE(handle, fsp, aiocb);
aiocb             513 examples/VFS/skel_transparent.c static ssize_t skel_aio_return(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb             515 examples/VFS/skel_transparent.c 	return SMB_VFS_NEXT_AIO_RETURN(handle, fsp, aiocb);
aiocb             518 examples/VFS/skel_transparent.c static int skel_aio_cancel(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb             520 examples/VFS/skel_transparent.c 	return SMB_VFS_NEXT_AIO_CANCEL(handle, fsp, aiocb);
aiocb             523 examples/VFS/skel_transparent.c static int skel_aio_error(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb             525 examples/VFS/skel_transparent.c 	return SMB_VFS_NEXT_AIO_ERROR(handle, fsp, aiocb);
aiocb             528 examples/VFS/skel_transparent.c static int skel_aio_fsync(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_STRUCT_AIOCB *aiocb)
aiocb             530 examples/VFS/skel_transparent.c 	return SMB_VFS_NEXT_AIO_FSYNC(handle, fsp, op, aiocb);
aiocb             533 examples/VFS/skel_transparent.c static int skel_aio_suspend(struct vfs_handle_struct *handle, struct files_struct *fsp, const SMB_STRUCT_AIOCB * const aiocb[], int n, const struct timespec *ts)
aiocb             535 examples/VFS/skel_transparent.c 	return SMB_VFS_NEXT_AIO_SUSPEND(handle, fsp, aiocb, n, ts);
aiocb             515 source3/include/includes.h #      define SMB_STRUCT_AIOCB struct aiocb
aiocb             968 source3/include/proto.h int sys_aio_read(SMB_STRUCT_AIOCB *aiocb);
aiocb             969 source3/include/proto.h int sys_aio_write(SMB_STRUCT_AIOCB *aiocb);
aiocb             970 source3/include/proto.h ssize_t sys_aio_return(SMB_STRUCT_AIOCB *aiocb);
aiocb             971 source3/include/proto.h int sys_aio_cancel(int fd, SMB_STRUCT_AIOCB *aiocb);
aiocb             972 source3/include/proto.h int sys_aio_error(const SMB_STRUCT_AIOCB *aiocb);
aiocb             973 source3/include/proto.h int sys_aio_fsync(int op, SMB_STRUCT_AIOCB *aiocb);
aiocb             975 source3/include/proto.h int sys_aio_read(SMB_STRUCT_AIOCB *aiocb);
aiocb             976 source3/include/proto.h int sys_aio_write(SMB_STRUCT_AIOCB *aiocb);
aiocb             977 source3/include/proto.h ssize_t sys_aio_return(SMB_STRUCT_AIOCB *aiocb);
aiocb             978 source3/include/proto.h int sys_aio_cancel(int fd, SMB_STRUCT_AIOCB *aiocb);
aiocb             979 source3/include/proto.h int sys_aio_error(const SMB_STRUCT_AIOCB *aiocb);
aiocb             980 source3/include/proto.h int sys_aio_fsync(int op, SMB_STRUCT_AIOCB *aiocb);
aiocb             487 source3/include/vfs.h 		int (*aio_read)(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
aiocb             488 source3/include/vfs.h 		int (*aio_write)(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
aiocb             489 source3/include/vfs.h 		ssize_t (*aio_return_fn)(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
aiocb             490 source3/include/vfs.h 		int (*aio_cancel)(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
aiocb             491 source3/include/vfs.h 		int (*aio_error_fn)(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
aiocb             492 source3/include/vfs.h 		int (*aio_fsync)(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_STRUCT_AIOCB *aiocb);
aiocb             493 source3/include/vfs.h 		int (*aio_suspend)(struct vfs_handle_struct *handle, struct files_struct *fsp, const SMB_STRUCT_AIOCB * const aiocb[], int n, const struct timespec *timeout);
aiocb             144 source3/include/vfs_macros.h #define SMB_VFS_AIO_READ(fsp,aiocb) ((fsp)->conn->vfs.ops.aio_read((fsp)->conn->vfs.handles.aio_read,(fsp),(aiocb)))
aiocb             145 source3/include/vfs_macros.h #define SMB_VFS_AIO_WRITE(fsp,aiocb) ((fsp)->conn->vfs.ops.aio_write((fsp)->conn->vfs.handles.aio_write,(fsp),(aiocb)))
aiocb             146 source3/include/vfs_macros.h #define SMB_VFS_AIO_RETURN(fsp,aiocb) ((fsp)->conn->vfs.ops.aio_return_fn((fsp)->conn->vfs.handles.aio_return,(fsp),(aiocb)))
aiocb             147 source3/include/vfs_macros.h #define SMB_VFS_AIO_CANCEL(fsp,aiocb) ((fsp)->conn->vfs.ops.aio_cancel((fsp)->conn->vfs.handles.aio_cancel,(fsp),(aiocb)))
aiocb             148 source3/include/vfs_macros.h #define SMB_VFS_AIO_ERROR(fsp,aiocb) ((fsp)->conn->vfs.ops.aio_error_fn((fsp)->conn->vfs.handles.aio_error,(fsp),(aiocb)))
aiocb             149 source3/include/vfs_macros.h #define SMB_VFS_AIO_FSYNC(fsp,op,aiocb) ((fsp)->conn->vfs.ops.aio_fsync((fsp)->conn->vfs.handles.aio_fsync,(fsp),(op),(aiocb)))
aiocb             150 source3/include/vfs_macros.h #define SMB_VFS_AIO_SUSPEND(fsp,aiocb,n,ts) ((fsp)->conn->vfs.ops.aio_suspend((fsp)->conn->vfs.handles.aio_suspend,(fsp),(aiocb),(n),(ts)))
aiocb             278 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_AIO_READ(fsp,aiocb) ((fsp)->conn->vfs_opaque.ops.aio_read((fsp)->conn->vfs_opaque.handles.aio_read,(fsp),(aiocb)))
aiocb             279 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_AIO_WRITE(fsp,aiocb) ((fsp)->conn->vfs_opaque.ops.aio_write((fsp)->conn->vfs_opaque.handles.aio_write,(fsp),(aiocb)))
aiocb             280 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_AIO_RETURN(fsp,aiocb) ((fsp)->conn->vfs_opaque.ops.aio_return_fn((fsp)->conn->vfs_opaque.handles.aio_return,(fsp),(aiocb)))
aiocb             281 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_AIO_CANCEL(fsp,aiocb) ((fsp)->conn->vfs_opaque.ops.aio_cancel((fsp)->conn->vfs_opaque.handles.cancel,(fsp),(aiocb)))
aiocb             282 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_AIO_ERROR(fsp,aiocb) ((fsp)->conn->vfs_opaque.ops.aio_error_fn((fsp)->conn->vfs_opaque.handles.aio_error,(fsp),(aiocb)))
aiocb             283 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_AIO_FSYNC(fsp,op,aiocb) ((fsp)->conn->vfs_opaque.ops.aio_fsync((fsp)->conn->vfs_opaque.handles.aio_fsync,(fsp),(op),(aiocb)))
aiocb             284 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_AIO_SUSPEND(fsp,aiocb,n,ts) ((fsp)->conn->vfs_opaque.ops.aio_suspend((fsp)->conn->vfs_opaque.handles.aio_suspend,(fsp),(aiocb),(n),(ts)))
aiocb             413 source3/include/vfs_macros.h #define SMB_VFS_NEXT_AIO_READ(handle,fsp,aiocb) ((handle)->vfs_next.ops.aio_read((handle)->vfs_next.handles.aio_read,(fsp),(aiocb)))
aiocb             414 source3/include/vfs_macros.h #define SMB_VFS_NEXT_AIO_WRITE(handle,fsp,aiocb) ((handle)->vfs_next.ops.aio_write((handle)->vfs_next.handles.aio_write,(fsp),(aiocb)))
aiocb             415 source3/include/vfs_macros.h #define SMB_VFS_NEXT_AIO_RETURN(handle,fsp,aiocb) ((handle)->vfs_next.ops.aio_return_fn((handle)->vfs_next.handles.aio_return,(fsp),(aiocb)))
aiocb             416 source3/include/vfs_macros.h #define SMB_VFS_NEXT_AIO_CANCEL(handle,fsp,aiocb) ((handle)->vfs_next.ops.aio_cancel((handle)->vfs_next.handles.aio_cancel,(fsp),(aiocb)))
aiocb             417 source3/include/vfs_macros.h #define SMB_VFS_NEXT_AIO_ERROR(handle,fsp,aiocb) ((handle)->vfs_next.ops.aio_error_fn((handle)->vfs_next.handles.aio_error,(fsp),(aiocb)))
aiocb             418 source3/include/vfs_macros.h #define SMB_VFS_NEXT_AIO_FSYNC(handle,fsp,op,aiocb) ((handle)->vfs_next.ops.aio_fsync((handle)->vfs_next.handles.aio_fsync,(fsp),(op),(aiocb)))
aiocb             419 source3/include/vfs_macros.h #define SMB_VFS_NEXT_AIO_SUSPEND(handle,fsp,aiocb,n,ts) ((handle)->vfs_next.ops.aio_suspend((handle)->vfs_next.handles.aio_suspend,(fsp),(aiocb),(n),(ts)))
aiocb            2107 source3/lib/system.c int sys_aio_read(SMB_STRUCT_AIOCB *aiocb)
aiocb            2110 source3/lib/system.c         return aio_read64(aiocb);
aiocb            2112 source3/lib/system.c         return aio_read(aiocb);
aiocb            2123 source3/lib/system.c int sys_aio_write(SMB_STRUCT_AIOCB *aiocb)
aiocb            2126 source3/lib/system.c         return aio_write64(aiocb);
aiocb            2128 source3/lib/system.c         return aio_write(aiocb);
aiocb            2139 source3/lib/system.c ssize_t sys_aio_return(SMB_STRUCT_AIOCB *aiocb)
aiocb            2142 source3/lib/system.c         return aio_return64(aiocb);
aiocb            2144 source3/lib/system.c         return aio_return(aiocb);
aiocb            2155 source3/lib/system.c int sys_aio_cancel(int fd, SMB_STRUCT_AIOCB *aiocb)
aiocb            2158 source3/lib/system.c         return aio_cancel64(fd, aiocb);
aiocb            2160 source3/lib/system.c         return aio_cancel(fd, aiocb);
aiocb            2171 source3/lib/system.c int sys_aio_error(const SMB_STRUCT_AIOCB *aiocb)
aiocb            2174 source3/lib/system.c         return aio_error64(aiocb);
aiocb            2176 source3/lib/system.c         return aio_error(aiocb);
aiocb            2187 source3/lib/system.c int sys_aio_fsync(int op, SMB_STRUCT_AIOCB *aiocb)
aiocb            2190 source3/lib/system.c         return aio_fsync64(op, aiocb);
aiocb            2192 source3/lib/system.c         return aio_fsync(op, aiocb);
aiocb            2216 source3/lib/system.c int sys_aio_read(SMB_STRUCT_AIOCB *aiocb)
aiocb            2222 source3/lib/system.c int sys_aio_write(SMB_STRUCT_AIOCB *aiocb)
aiocb            2228 source3/lib/system.c ssize_t sys_aio_return(SMB_STRUCT_AIOCB *aiocb)
aiocb            2234 source3/lib/system.c int sys_aio_cancel(int fd, SMB_STRUCT_AIOCB *aiocb)
aiocb            2240 source3/lib/system.c int sys_aio_error(const SMB_STRUCT_AIOCB *aiocb)
aiocb            2246 source3/lib/system.c int sys_aio_fsync(int op, SMB_STRUCT_AIOCB *aiocb)
aiocb              87 source3/modules/vfs_aio_fork.c 	SMB_STRUCT_AIOCB *aiocb;
aiocb             231 source3/modules/vfs_aio_fork.c 		if (child->aiocb != NULL) {
aiocb             400 source3/modules/vfs_aio_fork.c 		child->aiocb = NULL;
aiocb             406 source3/modules/vfs_aio_fork.c 		SMB_ASSERT(child->retval.size <= child->aiocb->aio_nbytes);
aiocb             407 source3/modules/vfs_aio_fork.c 		memcpy((void *)child->aiocb->aio_buf, (void *)child->map->ptr,
aiocb             411 source3/modules/vfs_aio_fork.c 	mid = child->aiocb->aio_sigevent.sigev_value.sival_int;
aiocb             420 source3/modules/vfs_aio_fork.c 	SMB_ASSERT((child->aiocb == NULL) || child->cancelled);
aiocb             528 source3/modules/vfs_aio_fork.c 		if (child->aiocb == NULL) {
aiocb             552 source3/modules/vfs_aio_fork.c 			 struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb             559 source3/modules/vfs_aio_fork.c 	if (aiocb->aio_nbytes > 128*1024) {
aiocb             572 source3/modules/vfs_aio_fork.c 	child->aiocb = aiocb;
aiocb             576 source3/modules/vfs_aio_fork.c 	cmd.n = aiocb->aio_nbytes;
aiocb             577 source3/modules/vfs_aio_fork.c 	cmd.offset = aiocb->aio_offset;
aiocb             593 source3/modules/vfs_aio_fork.c 			  struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb             600 source3/modules/vfs_aio_fork.c 	if (aiocb->aio_nbytes > 128*1024) {
aiocb             613 source3/modules/vfs_aio_fork.c 	child->aiocb = aiocb;
aiocb             616 source3/modules/vfs_aio_fork.c 	memcpy((void *)child->map->ptr, (void *)aiocb->aio_buf,
aiocb             617 source3/modules/vfs_aio_fork.c 	       aiocb->aio_nbytes);
aiocb             620 source3/modules/vfs_aio_fork.c 	cmd.n = aiocb->aio_nbytes;
aiocb             621 source3/modules/vfs_aio_fork.c 	cmd.offset = aiocb->aio_offset;
aiocb             637 source3/modules/vfs_aio_fork.c 					     SMB_STRUCT_AIOCB *aiocb)
aiocb             648 source3/modules/vfs_aio_fork.c 		if (child->aiocb == aiocb) {
aiocb             658 source3/modules/vfs_aio_fork.c 				  SMB_STRUCT_AIOCB *aiocb)
aiocb             660 source3/modules/vfs_aio_fork.c 	struct aio_child *child = aio_fork_find_child(handle, aiocb);
aiocb             668 source3/modules/vfs_aio_fork.c 	child->aiocb = NULL;
aiocb             679 source3/modules/vfs_aio_fork.c 			   SMB_STRUCT_AIOCB *aiocb)
aiocb             691 source3/modules/vfs_aio_fork.c 		if (child->aiocb == NULL) {
aiocb             694 source3/modules/vfs_aio_fork.c 		if (child->aiocb->aio_fildes != fsp->fh->fd) {
aiocb             697 source3/modules/vfs_aio_fork.c 		if ((aiocb != NULL) && (child->aiocb != aiocb)) {
aiocb             714 source3/modules/vfs_aio_fork.c 			     SMB_STRUCT_AIOCB *aiocb)
aiocb             716 source3/modules/vfs_aio_fork.c 	struct aio_child *child = aio_fork_find_child(handle, aiocb);
aiocb            1477 source3/modules/vfs_default.c static int vfswrap_aio_read(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb            1487 source3/modules/vfs_default.c 	ret = sys_aio_read(aiocb);
aiocb            1492 source3/modules/vfs_default.c static int vfswrap_aio_write(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb            1502 source3/modules/vfs_default.c 	ret = sys_aio_write(aiocb);
aiocb            1507 source3/modules/vfs_default.c static ssize_t vfswrap_aio_return(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb            1509 source3/modules/vfs_default.c 	return sys_aio_return(aiocb);
aiocb            1512 source3/modules/vfs_default.c static int vfswrap_aio_cancel(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb            1514 source3/modules/vfs_default.c 	return sys_aio_cancel(fsp->fh->fd, aiocb);
aiocb            1517 source3/modules/vfs_default.c static int vfswrap_aio_error(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb            1519 source3/modules/vfs_default.c 	return sys_aio_error(aiocb);
aiocb            1522 source3/modules/vfs_default.c static int vfswrap_aio_fsync(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_STRUCT_AIOCB *aiocb)
aiocb            1524 source3/modules/vfs_default.c 	return sys_aio_fsync(op, aiocb);
aiocb            1527 source3/modules/vfs_default.c static int vfswrap_aio_suspend(struct vfs_handle_struct *handle, struct files_struct *fsp, const SMB_STRUCT_AIOCB * const aiocb[], int n, const struct timespec *timeout)
aiocb            1529 source3/modules/vfs_default.c 	return sys_aio_suspend(aiocb, n, timeout);
aiocb             350 source3/modules/vfs_full_audit.c static int smb_full_audit_aio_read(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
aiocb             351 source3/modules/vfs_full_audit.c static int smb_full_audit_aio_write(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
aiocb             352 source3/modules/vfs_full_audit.c static ssize_t smb_full_audit_aio_return(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
aiocb             353 source3/modules/vfs_full_audit.c static int smb_full_audit_aio_cancel(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
aiocb             354 source3/modules/vfs_full_audit.c static int smb_full_audit_aio_error(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
aiocb             355 source3/modules/vfs_full_audit.c static int smb_full_audit_aio_fsync(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_STRUCT_AIOCB *aiocb);
aiocb             356 source3/modules/vfs_full_audit.c static int smb_full_audit_aio_suspend(struct vfs_handle_struct *handle, struct files_struct *fsp, const SMB_STRUCT_AIOCB * const aiocb[], int n, const struct timespec *ts);
aiocb            2366 source3/modules/vfs_full_audit.c static int smb_full_audit_aio_read(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb            2370 source3/modules/vfs_full_audit.c 	result = SMB_VFS_NEXT_AIO_READ(handle, fsp, aiocb);
aiocb            2377 source3/modules/vfs_full_audit.c static int smb_full_audit_aio_write(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb            2381 source3/modules/vfs_full_audit.c 	result = SMB_VFS_NEXT_AIO_WRITE(handle, fsp, aiocb);
aiocb            2388 source3/modules/vfs_full_audit.c static ssize_t smb_full_audit_aio_return(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb            2392 source3/modules/vfs_full_audit.c 	result = SMB_VFS_NEXT_AIO_RETURN(handle, fsp, aiocb);
aiocb            2399 source3/modules/vfs_full_audit.c static int smb_full_audit_aio_cancel(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb            2403 source3/modules/vfs_full_audit.c 	result = SMB_VFS_NEXT_AIO_CANCEL(handle, fsp, aiocb);
aiocb            2410 source3/modules/vfs_full_audit.c static int smb_full_audit_aio_error(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
aiocb            2414 source3/modules/vfs_full_audit.c 	result = SMB_VFS_NEXT_AIO_ERROR(handle, fsp, aiocb);
aiocb            2421 source3/modules/vfs_full_audit.c static int smb_full_audit_aio_fsync(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_STRUCT_AIOCB *aiocb)
aiocb            2425 source3/modules/vfs_full_audit.c 	result = SMB_VFS_NEXT_AIO_FSYNC(handle, fsp, op, aiocb);
aiocb            2432 source3/modules/vfs_full_audit.c static int smb_full_audit_aio_suspend(struct vfs_handle_struct *handle, struct files_struct *fsp, const SMB_STRUCT_AIOCB * const aiocb[], int n, const struct timespec *ts)
aiocb            2436 source3/modules/vfs_full_audit.c 	result = SMB_VFS_NEXT_AIO_SUSPEND(handle, fsp, aiocb, n, ts);
aiocb             265 source3/modules/vfs_tsmsm.c 				SMB_STRUCT_AIOCB *aiocb)
aiocb             269 source3/modules/vfs_tsmsm.c 	result = SMB_VFS_NEXT_AIO_RETURN(handle, fsp, aiocb);