| /linux/arch/sparc/include/uapi/asm/ |
| H A D | ioctl.h | 37 #define _IOC_WRITE 4U macro 47 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size)) 48 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size)) 52 ( (((((nr) >> _IOC_DIRSHIFT) & _IOC_DIRMASK) & (_IOC_WRITE|_IOC_READ)) != 0)? \ 53 (((nr) >> _IOC_DIRSHIFT) & (_IOC_WRITE|_IOC_READ)): \ 58 ((((((nr) >> _IOC_DIRSHIFT) & _IOC_DIRMASK) & (_IOC_WRITE|_IOC_READ)) == 0)? \ 62 #define IOC_IN (_IOC_WRITE << _IOC_DIRSHIFT) 64 #define IOC_INOUT ((_IOC_WRITE|_IOC_READ) << _IOC_DIRSHIFT)
|
| /linux/include/uapi/asm-generic/ |
| H A D | ioctl.h | 61 #ifndef _IOC_WRITE 62 # define _IOC_WRITE 1U macro 87 #define _IOW(type,nr,argtype) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(argtype))) 88 #define _IOWR(type,nr,argtype) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(argtype))) 90 #define _IOW_BAD(type,nr,argtype) _IOC(_IOC_WRITE,(type),(nr),sizeof(argtype)) 91 #define _IOWR_BAD(type,nr,argtype) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(argtype)) 101 #define IOC_IN (_IOC_WRITE << _IOC_DIRSHIFT) 103 #define IOC_INOUT ((_IOC_WRITE|_IOC_READ) << _IOC_DIRSHIFT)
|
| /linux/include/uapi/linux/ |
| H A D | hidraw.h | 40 #define HIDIOCSFEATURE(len) _IOC(_IOC_WRITE|_IOC_READ, 'H', 0x06, len) 41 #define HIDIOCGFEATURE(len) _IOC(_IOC_WRITE|_IOC_READ, 'H', 0x07, len) 44 #define HIDIOCSINPUT(len) _IOC(_IOC_WRITE|_IOC_READ, 'H', 0x09, len) 45 #define HIDIOCGINPUT(len) _IOC(_IOC_WRITE|_IOC_READ, 'H', 0x0A, len) 47 #define HIDIOCSOUTPUT(len) _IOC(_IOC_WRITE|_IOC_READ, 'H', 0x0B, len) 48 #define HIDIOCGOUTPUT(len) _IOC(_IOC_WRITE|_IOC_READ, 'H', 0x0C, len)
|
| H A D | vboxguest.h | 102 #define VBG_IOCTL_VMMDEV_REQUEST(s) _IOC(_IOC_READ | _IOC_WRITE, 'V', 2, s) 176 #define VBG_IOCTL_HGCM_CALL_32(s) _IOC(_IOC_READ | _IOC_WRITE, 'V', 6, s) 177 #define VBG_IOCTL_HGCM_CALL_64(s) _IOC(_IOC_READ | _IOC_WRITE, 'V', 7, s)
|
| H A D | soundcard.h | 95 #define _SIOC_WRITE _IOC_WRITE
|
| /linux/arch/alpha/include/uapi/asm/ |
| H A D | ioctl.h | 38 #define _IOC_WRITE 4U macro 50 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size)) 51 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size)) 61 #define IOC_IN (_IOC_WRITE << _IOC_DIRSHIFT) 63 #define IOC_INOUT ((_IOC_WRITE|_IOC_READ) << _IOC_DIRSHIFT)
|
| /linux/arch/s390/include/uapi/asm/ |
| H A D | zcrypt.h | 307 #define ICARSAMODEXPO _IOC(_IOC_READ | _IOC_WRITE, ZCRYPT_IOCTL_MAGIC, 0x05, 0) 308 #define ICARSACRT _IOC(_IOC_READ | _IOC_WRITE, ZCRYPT_IOCTL_MAGIC, 0x06, 0) 309 #define ZSECSENDCPRB _IOC(_IOC_READ | _IOC_WRITE, ZCRYPT_IOCTL_MAGIC, 0x81, 0) 310 #define ZSENDEP11CPRB _IOC(_IOC_READ | _IOC_WRITE, ZCRYPT_IOCTL_MAGIC, 0x04, 0) 312 #define ZCRYPT_DEVICE_STATUS _IOC(_IOC_READ | _IOC_WRITE, ZCRYPT_IOCTL_MAGIC, 0x5f, 0) 354 #define ZDEVICESTATUS _IOC(_IOC_READ | _IOC_WRITE, ZCRYPT_IOCTL_MAGIC, 0x4f, 0)
|
| /linux/tools/testing/selftests/hid/ |
| H A D | hidraw.c | 347 bad_cmd = _IOC(_IOC_WRITE|_IOC_READ, 'H', 0x00, sizeof(buf)); /* 0 is not valid */ in TEST_F() 375 bad_cmd = _IOC(_IOC_WRITE|_IOC_READ, 'H', 0x42, sizeof(buf)); in TEST_F() 395 bad_cmd = _IOC(_IOC_WRITE|_IOC_READ, 'I', 0x01, sizeof(buf)); /* 'I' should be 'H' */ in TEST_F() 419 bad_cmd = _IOC(_IOC_WRITE, 'H', 0x07, sizeof(buf)); /* should be _IOC_WRITE|_IOC_READ */ in TEST_F() 447 bad_cmd = _IOC(_IOC_WRITE, 'H', 0x04, sizeof(buf)); /* should be _IOC_READ */ in TEST_F() 455 bad_cmd = _IOC(_IOC_WRITE|_IOC_READ, 'H', 0x04, sizeof(buf)); /* should be only _IOC_READ */ in TEST_F()
|
| /linux/rust/kernel/ |
| H A D | ioctl.rs | 40 _IOC(uapi::_IOC_WRITE, ty, nr, core::mem::size_of::<T>()) in _IOW() 47 uapi::_IOC_READ | uapi::_IOC_WRITE, in _IOWR()
|
| /linux/drivers/virt/vboxguest/ |
| H A D | vboxguest_core.h | 30 #define VBG_IOCTL_VMMDEV_REQUEST_BIG_ALT _IOC(_IOC_READ | _IOC_WRITE, 'V', 3, 0) 31 #define VBG_IOCTL_LOG_ALT(s) _IOC(_IOC_READ | _IOC_WRITE, 'V', 9, s)
|
| /linux/samples/hidraw/ |
| H A D | hid-example.c | 24 #define HIDIOCSFEATURE(len) _IOC(_IOC_WRITE|_IOC_READ, 'H', 0x06, len) 25 #define HIDIOCGFEATURE(len) _IOC(_IOC_WRITE|_IOC_READ, 'H', 0x07, len)
|
| /linux/arch/parisc/include/uapi/asm/ |
| H A D | ioctl.h | 40 #define _IOC_WRITE 2U macro
|
| /linux/arch/mips/include/uapi/asm/ |
| H A D | ioctl.h | 24 #define _IOC_WRITE 4U macro
|
| /linux/arch/powerpc/include/uapi/asm/ |
| H A D | ioctl.h | 10 #define _IOC_WRITE 4U macro
|
| /linux/include/uapi/sound/ |
| H A D | sb16_csp.h | 95 _IOC(_IOC_WRITE, 'H', 0x11, sizeof(struct snd_sb_csp_microcode))
|
| /linux/drivers/usb/class/ |
| H A D | usblp.c | 83 #define LPIOC_SET_PROTOCOL _IOC(_IOC_WRITE, 'P', IOCNR_SET_PROTOCOL, 0) 85 #define LPIOC_HP_SET_CHANNEL _IOC(_IOC_WRITE, 'P', IOCNR_HP_SET_CHANNEL, 0) 592 if (_IOC_DIR(cmd) != _IOC_WRITE) { in usblp_ioctl() 613 if (_IOC_DIR(cmd) != _IOC_WRITE || in usblp_ioctl()
|
| /linux/fs/fuse/ |
| H A D | ioctl.c | 271 if (_IOC_DIR(cmd) & _IOC_WRITE) { in fuse_do_ioctl() 459 if (_IOC_DIR(cmd) & _IOC_WRITE) in fuse_priv_ioctl()
|
| /linux/drivers/media/dvb-core/ |
| H A D | dvbdev.c | 977 case _IOC_WRITE: in dvb_usercopy() 978 case (_IOC_WRITE | _IOC_READ): in dvb_usercopy() 1006 case (_IOC_WRITE | _IOC_READ): in dvb_usercopy()
|
| /linux/tools/perf/trace/beauty/ |
| H A D | ioctl.c | 162 if (dir & _IOC_WRITE) { in ioctl__scnprintf_cmd()
|
| /linux/drivers/spi/ |
| H A D | spidev.c | 335 || _IOC_DIR(cmd) != _IOC_WRITE) in spidev_get_ioc_message() 560 && _IOC_DIR(cmd) == _IOC_WRITE) in spidev_compat_ioctl()
|
| /linux/drivers/s390/char/ |
| H A D | uvdevice.c | 479 if (_IOC_DIR(cmd) != (_IOC_READ | _IOC_WRITE)) in uvio_copy_and_check_ioctl()
|
| /linux/drivers/android/binder/ |
| H A D | process.rs | 1652 use kernel::uapi::{_IOC_READ, _IOC_WRITE}; in ioctl() 1658 const _IOC_READ_WRITE: u32 = _IOC_READ | _IOC_WRITE; in ioctl() 1661 _IOC_WRITE => Self::ioctl_write_only(this, file, cmd, &mut user_slice.reader()), in ioctl()
|
| /linux/drivers/scsi/ |
| H A D | pmcraid.h | 1033 _IOC(_IOC_READ|_IOC_WRITE, PMCRAID_DRIVER_IOCTL, (n), (size))
|
| /linux/drivers/hid/ |
| H A D | hidraw.c | 541 case (_IOC_READ | _IOC_WRITE): in hidraw_ioctl()
|
| /linux/drivers/media/rc/ |
| H A D | lirc_dev.c | 370 if (_IOC_DIR(cmd) & _IOC_WRITE) { in lirc_ioctl()
|