Searched refs:ioflag (Results 1 - 25 of 83) sorted by relevance

1234

/freebsd-13-stable/sys/fs/fuse/
H A Dfuse_io.h68 int fuse_io_dispatch(struct vnode *vp, struct uio *uio, int ioflag,
H A Dfuse_io.c128 fuse_read_biobackend(struct vnode *vp, struct uio *uio, int ioflag,
133 int ioflag, bool pages);
136 struct ucred *cred, struct fuse_filehandle *fufh, int ioflag, pid_t pid);
195 fuse_io_dispatch(struct vnode *vp, struct uio *uio, int ioflag, argument
217 vp, uio, ioflag, cred);
223 SDT_PROBE5(fusefs, , io, io_dispatch, vp, uio, ioflag, cred, fufh);
235 directio = (ioflag & IO_DIRECT) || !fsess_opt_datacache(vnode_mount(vp));
246 err = fuse_read_biobackend(vp, uio, ioflag, cred, fufh,
254 bool pages = (ioflag & IO_VMIO) != 0;
272 filesize, ioflag, page
299 fuse_read_biobackend(struct vnode *vp, struct uio *uio, int ioflag, struct ucred *cred, struct fuse_filehandle *fufh, pid_t pid) argument
467 fuse_write_directbackend(struct vnode *vp, struct uio *uio, struct ucred *cred, struct fuse_filehandle *fufh, off_t filesize, int ioflag, bool pages) argument
630 fuse_write_biobackend(struct vnode *vp, struct uio *uio, struct ucred *cred, struct fuse_filehandle *fufh, int ioflag, pid_t pid) argument
[all...]
H A Dfuse_device.c285 fuse_device_read(struct cdev *dev, struct uio *uio, int ioflag) argument
310 if (ioflag & O_NONBLOCK) {
414 fuse_device_write(struct cdev *dev, struct uio *uio, int ioflag) argument
/freebsd-13-stable/share/examples/kld/cdev/module/
H A Dcdev.c151 mydev_write(struct cdev *dev, struct uio *uio, int ioflag) argument
155 printf("mydev_write: dev_t=%lu, uio=%p, ioflag=%d\n",
156 dev2udev(dev), uio, ioflag);
171 mydev_read(struct cdev *dev, struct uio *uio, int ioflag) argument
175 printf("mydev_read: dev_t=%lu, uio=%p, ioflag=%d\n",
176 dev2udev(dev), uio, ioflag);
/freebsd-13-stable/sys/sys/
H A Dttydisc.h49 int ttydisc_read(struct tty *tp, struct uio *uio, int ioflag);
50 int ttydisc_write(struct tty *tp, struct uio *uio, int ioflag);
H A Dbio.h182 int physio(struct cdev *dev, struct uio *uio, int ioflag);
/freebsd-13-stable/sys/ufs/ffs/
H A Dffs_vnops.c127 static int ffs_extread(struct vnode *vp, struct uio *uio, int ioflag);
128 static int ffs_extwrite(struct vnode *vp, struct uio *uio, int ioflag,
649 int bflag, error, ioflag, seqcount; local
653 ioflag = ap->a_ioflag;
656 return (ffs_extread(vp, uio, ioflag));
661 if ((ioflag & IO_DIRECT) != 0) {
797 vfs_bio_brelse(bp, ioflag);
807 vfs_bio_brelse(bp, ioflag);
836 int blkoffset, error, flags, ioflag, size, xfersize; local
845 ioflag
1037 ffs_extread(struct vnode *vp, struct uio *uio, int ioflag) argument
1157 ffs_extwrite(struct vnode *vp, struct uio *uio, int ioflag, struct ucred *ucred) argument
[all...]
/freebsd-13-stable/sys/dev/xen/xenstore/
H A Dxenstored_dev.c52 static int xsd_dev_read(struct cdev *dev, struct uio *uio, int ioflag);
64 xsd_dev_read(struct cdev *dev, struct uio *uio, int ioflag) argument
/freebsd-13-stable/sys/security/audit/
H A Daudit_trigger.c101 audit_read(struct cdev *dev, struct uio *uio, int ioflag) argument
126 audit_write(struct cdev *dev, struct uio *uio, int ioflag) argument
/freebsd-13-stable/sys/kern/
H A Dtty_ttydisc.c111 ttydisc_read_canonical(struct tty *tp, struct uio *uio, int ioflag) argument
158 else if (ioflag & IO_NDELAY)
184 ttydisc_read_raw_no_timer(struct tty *tp, struct uio *uio, int ioflag) argument
213 else if (ioflag & IO_NDELAY)
223 ttydisc_read_raw_read_timer(struct tty *tp, struct uio *uio, int ioflag, argument
265 else if (ioflag & IO_NDELAY)
277 ttydisc_read_raw_interbyte_timer(struct tty *tp, struct uio *uio, int ioflag) argument
314 else if (ioflag & IO_NDELAY)
322 return ttydisc_read_raw_read_timer(tp, uio, ioflag, oresid);
326 ttydisc_read(struct tty *tp, struct uio *uio, int ioflag) argument
455 ttydisc_write(struct tty *tp, struct uio *uio, int ioflag) argument
[all...]
/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
H A Dzfs_vnops.c177 * ioflag - O_SYNC flags; used to provide FRSYNC semantics.
190 zfs_read(struct znode *zp, zfs_uio_t *uio, int ioflag, cred_t *cr) argument
235 frsync = !!(ioflag & FRSYNC);
268 if (zn_has_cached_data(zp) && !(ioflag & O_DIRECT)) {
302 * ioflag - O_APPEND flag set if in append mode.
317 zfs_write(znode_t *zp, zfs_uio_t *uio, int ioflag, cred_t *cr) argument
358 ((zp->z_pflags & ZFS_APPENDONLY) && !(ioflag & O_APPEND) &&
367 offset_t woff = ioflag & O_APPEND ? zp->z_size : zfs_uio_offset(uio);
389 if (ioflag & O_APPEND) {
591 !(ioflag
[all...]
/freebsd-13-stable/sys/contrib/rdma/krping/
H A Dkrping_dev.c129 krping_read(struct cdev *dev, struct uio *uio, int ioflag) argument
169 krping_write(struct cdev *dev, struct uio *uio, int ioflag) argument
/freebsd-13-stable/sys/fs/smbfs/
H A Dsmbfs_node.h99 int smbfs_writevnode(struct vnode *vp, struct uio *uiop, struct ucred *cred, int ioflag);
/freebsd-13-stable/sys/fs/nfsclient/
H A Dnfs_clbio.c78 struct ucred *cred, int ioflag);
425 ncl_bioread(struct vnode *vp, struct uio *uio, int ioflag, struct ucred *cred) argument
460 if (newnfs_directio_enable && (ioflag & IO_DIRECT) && (vp->v_type == VREG))
467 seqcount = (int)((off_t)(ioflag >> IO_SEQSHIFT) * biosize / BKVASIZE);
753 nfs_directio_write(vp, uiop, cred, ioflag)
757 int ioflag;
768 if (ioflag & IO_SYNC) {
900 int ioflag = ap->a_ioflag; local
937 if (ioflag & (IO_APPEND | IO_SYNC)) {
947 if (ioflag
[all...]
/freebsd-13-stable/sys/ufs/ufs/
H A Dufs_extattr.c1063 int error = 0, ioflag; local
1122 ioflag = IO_NODELOCKED;
1124 ioflag |= IO_SYNC;
1125 error = VOP_WRITE(attribute->uele_backing_vnode, &local_aio, ioflag,
1140 ioflag = IO_NODELOCKED;
1142 ioflag |= IO_SYNC;
1143 error = VOP_WRITE(attribute->uele_backing_vnode, uio, ioflag,
1171 int error = 0, ioflag; local
1257 ioflag = IO_NODELOCKED;
1259 ioflag |
[all...]
/freebsd-13-stable/sys/dev/fb/
H A Dfbd.c155 fb_read(struct cdev *dev, struct uio *uio, int ioflag) argument
162 fb_write(struct cdev *dev, struct uio *uio, int ioflag) argument
/freebsd-13-stable/sys/dev/firewire/
H A Dfwdev.c269 fw_read_async(struct fw_drv1 *d, struct uio *uio, int ioflag) argument
316 fw_read(struct cdev *dev, struct uio *uio, int ioflag) argument
325 return (physio(dev, uio, ioflag));
332 return (fw_read_async(d, uio, ioflag));
393 fw_write_async(struct fw_drv1 *d, struct uio *uio, int ioflag) argument
449 fw_write(struct cdev *dev, struct uio *uio, int ioflag) argument
459 return (physio(dev, uio, ioflag));
466 return (fw_write_async(d, uio, ioflag));
/freebsd-13-stable/sys/dev/iir/
H A Diir_ctrl.c166 iir_write(struct cdev *dev, struct uio * uio, int ioflag) argument
174 iir_read(struct cdev *dev, struct uio * uio, int ioflag) argument
/freebsd-13-stable/sys/powerpc/powernv/
H A Dopal_nvram.c213 opal_nvram_read(struct cdev *dev, struct uio *uio, int ioflag) argument
250 opal_nvram_write(struct cdev *dev, struct uio *uio, int ioflag) argument
/freebsd-13-stable/sys/dev/cfi/
H A Dcfi_dev.c184 cfi_devread(struct cdev *dev, struct uio *uio, int ioflag) argument
225 cfi_devwrite(struct cdev *dev, struct uio *uio, int ioflag) argument
/freebsd-13-stable/sys/fs/ext2fs/
H A Dext2_vnops.c2052 int ioflag; local
2056 ioflag = ap->a_ioflag;
2132 vfs_bio_brelse(bp, ioflag);
2142 vfs_bio_brelse(bp, ioflag);
2190 int blkoffset, error, flags, ioflag, resid, size, seqcount, xfersize; local
2192 ioflag = ap->a_ioflag;
2196 seqcount = ioflag >> IO_SEQSHIFT;
2206 if (ioflag & IO_APPEND)
2215 if ((ioflag & IO_SYNC) == 0)
2242 if ((ioflag
[all...]
/freebsd-13-stable/sys/dev/iicbus/
H A Diic.c74 static int iicuio(struct cdev *dev, struct uio *uio, int ioflag);
243 iicuio(struct cdev *dev, struct uio *uio, int ioflag) argument
265 (ioflag & O_NONBLOCK) ? IIC_DONTWAIT : (IIC_WAIT | IIC_INTR));
/freebsd-13-stable/sys/dev/pccard/
H A Dpccard_device.c164 pccard_read(struct cdev *dev, struct uio *uio, int ioflag) argument
/freebsd-13-stable/sys/dev/cardbus/
H A Dcardbus_device.c157 cardbus_read(struct cdev *dev, struct uio *uio, int ioflag) argument
/freebsd-13-stable/sys/contrib/ipfilter/netinet/
H A Dmlfk_ipl.c539 static int ipfread(dev, uio, ioflag)
540 int ioflag;
582 static int ipfwrite(dev, uio, ioflag)
583 int ioflag;

Completed in 169 milliseconds

1234