Home
last modified time | relevance | path

Searched refs:_IOC (Results 1 – 25 of 30) sorted by relevance

12

/external/kernel-headers/original/uapi/xen/
Devtchn.h41 _IOC(_IOC_NONE, 'E', 0, sizeof(struct ioctl_evtchn_bind_virq))
51 _IOC(_IOC_NONE, 'E', 1, sizeof(struct ioctl_evtchn_bind_interdomain))
61 _IOC(_IOC_NONE, 'E', 2, sizeof(struct ioctl_evtchn_bind_unbound_port))
70 _IOC(_IOC_NONE, 'E', 3, sizeof(struct ioctl_evtchn_unbind))
79 _IOC(_IOC_NONE, 'E', 4, sizeof(struct ioctl_evtchn_notify))
86 _IOC(_IOC_NONE, 'E', 5, 0)
98 _IOC(_IOC_NONE, 'E', 6, sizeof(struct ioctl_evtchn_restrict_domid))
Dgntdev.h51 _IOC(_IOC_NONE, 'G', 0, sizeof(struct ioctl_gntdev_map_grant_ref))
71 _IOC(_IOC_NONE, 'G', 1, sizeof(struct ioctl_gntdev_unmap_grant_ref))
94 _IOC(_IOC_NONE, 'G', 2, sizeof(struct ioctl_gntdev_get_offset_for_vaddr))
114 _IOC(_IOC_NONE, 'G', 3, sizeof(struct ioctl_gntdev_set_max_grants))
132 _IOC(_IOC_NONE, 'G', 7, sizeof(struct ioctl_gntdev_unmap_notify))
191 _IOC(_IOC_NONE, 'G', 8, sizeof(struct ioctl_gntdev_grant_copy))
Dprivcmd.h94 _IOC(_IOC_NONE, 'P', 0, sizeof(struct privcmd_hypercall))
96 _IOC(_IOC_NONE, 'P', 2, sizeof(struct privcmd_mmap))
98 _IOC(_IOC_NONE, 'P', 3, sizeof(struct privcmd_mmapbatch))
100 _IOC(_IOC_NONE, 'P', 4, sizeof(struct privcmd_mmapbatch_v2))
Dgntalloc.h20 _IOC(_IOC_NONE, 'G', 5, sizeof(struct ioctl_gntalloc_alloc_gref))
44 _IOC(_IOC_NONE, 'G', 6, sizeof(struct ioctl_gntalloc_dealloc_gref))
64 _IOC(_IOC_NONE, 'G', 7, sizeof(struct ioctl_gntalloc_unmap_notify))
/external/kernel-headers/original/uapi/asm-generic/
Dioctl.h65 #define _IOC(dir,type,nr,size) \ macro
76 #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0)
77 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size)))
78 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size)))
79 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size)))
80 #define _IOR_BAD(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size))
81 #define _IOW_BAD(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size))
82 #define _IOWR_BAD(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size))
/external/kernel-headers/original/uapi/linux/
Dinput.h117 #define EVIOCGNAME(len) _IOC(_IOC_READ, 'E', 0x06, len) /* get device name */
118 #define EVIOCGPHYS(len) _IOC(_IOC_READ, 'E', 0x07, len) /* get physical location */
119 #define EVIOCGUNIQ(len) _IOC(_IOC_READ, 'E', 0x08, len) /* get unique identifier */
120 #define EVIOCGPROP(len) _IOC(_IOC_READ, 'E', 0x09, len) /* get device properties */
146 #define EVIOCGMTSLOTS(len) _IOC(_IOC_READ, 'E', 0x0a, len)
148 #define EVIOCGKEY(len) _IOC(_IOC_READ, 'E', 0x18, len) /* get global key state */
149 #define EVIOCGLED(len) _IOC(_IOC_READ, 'E', 0x19, len) /* get all LEDs */
150 #define EVIOCGSND(len) _IOC(_IOC_READ, 'E', 0x1a, len) /* get all sounds status */
151 #define EVIOCGSW(len) _IOC(_IOC_READ, 'E', 0x1b, len) /* get all switch states */
153 #define EVIOCGBIT(ev,len) _IOC(_IOC_READ, 'E', 0x20 + (ev), len) /* get event bits */
Dhidraw.h36 #define HIDIOCGRAWNAME(len) _IOC(_IOC_READ, 'H', 0x04, len)
37 #define HIDIOCGRAWPHYS(len) _IOC(_IOC_READ, 'H', 0x05, len)
39 #define HIDIOCSFEATURE(len) _IOC(_IOC_WRITE|_IOC_READ, 'H', 0x06, len)
40 #define HIDIOCGFEATURE(len) _IOC(_IOC_WRITE|_IOC_READ, 'H', 0x07, len)
Dhiddev.h159 #define HIDIOCGNAME(len) _IOC(_IOC_READ, 'H', 0x06, len)
171 #define HIDIOCGPHYS(len) _IOC(_IOC_READ, 'H', 0x12, len)
Djoystick.h62 #define JSIOCGNAME(len) _IOC(_IOC_READ, 'j', 0x13, len) /* get identifier string */
Duinput.h160 #define UI_GET_SYSNAME(len) _IOC(_IOC_READ, UINPUT_IOCTL_BASE, 44, len)
/external/strace/tests/
Dioctl_evdev.c258 ioctl(-1, _IOC(_IOC_READ, 0x45, 0x1, 0xff), lmagic); in main()
262 ioctl(-1, _IOC(_IOC_WRITE, 0x45, 0x1, 0xff), lmagic); in main()
266 ioctl(-1, _IOC(_IOC_READ|_IOC_WRITE, 0x45, 0xfe, 0xff), lmagic); in main()
270 ioctl(-1, _IOC(_IOC_READ|_IOC_WRITE, 0x45, 0, 0), lmagic); in main()
Dioctl.c92 (void) ioctl(-1, _IOC(_IOC_WRITE, 0xde, 0, 0), (kernel_ulong_t) -1ULL); in main()
Dioctl_block.c200 ioctl(-1, _IOC(_IOC_READ, 0x12, 0xfe, 0xff), lmagic); in main()
Dioctl_mtd.c194 ioctl(-1, _IOC(_IOC_READ|_IOC_WRITE, 0x4d, 0xfe, 0xff), lmagic); in main()
/external/strace/tests-mx32/
Dioctl_evdev.c258 ioctl(-1, _IOC(_IOC_READ, 0x45, 0x1, 0xff), lmagic); in main()
262 ioctl(-1, _IOC(_IOC_WRITE, 0x45, 0x1, 0xff), lmagic); in main()
266 ioctl(-1, _IOC(_IOC_READ|_IOC_WRITE, 0x45, 0xfe, 0xff), lmagic); in main()
270 ioctl(-1, _IOC(_IOC_READ|_IOC_WRITE, 0x45, 0, 0), lmagic); in main()
Dioctl.c92 (void) ioctl(-1, _IOC(_IOC_WRITE, 0xde, 0, 0), (kernel_ulong_t) -1ULL); in main()
Dioctl_block.c200 ioctl(-1, _IOC(_IOC_READ, 0x12, 0xfe, 0xff), lmagic); in main()
Dioctl_mtd.c194 ioctl(-1, _IOC(_IOC_READ|_IOC_WRITE, 0x4d, 0xfe, 0xff), lmagic); in main()
Dioctl_dm.c166 _IOC(_IOC_READ, DM_IOCTL, 0, 0x1fff); in main()
168 _IOC(_IOC_READ|_IOC_WRITE, DM_IOCTL, 0xed, 0); in main()
/external/strace/tests-m32/
Dioctl_evdev.c258 ioctl(-1, _IOC(_IOC_READ, 0x45, 0x1, 0xff), lmagic); in main()
262 ioctl(-1, _IOC(_IOC_WRITE, 0x45, 0x1, 0xff), lmagic); in main()
266 ioctl(-1, _IOC(_IOC_READ|_IOC_WRITE, 0x45, 0xfe, 0xff), lmagic); in main()
270 ioctl(-1, _IOC(_IOC_READ|_IOC_WRITE, 0x45, 0, 0), lmagic); in main()
Dioctl.c92 (void) ioctl(-1, _IOC(_IOC_WRITE, 0xde, 0, 0), (kernel_ulong_t) -1ULL); in main()
Dioctl_block.c200 ioctl(-1, _IOC(_IOC_READ, 0x12, 0xfe, 0xff), lmagic); in main()
Dioctl_mtd.c194 ioctl(-1, _IOC(_IOC_READ|_IOC_WRITE, 0x4d, 0xfe, 0xff), lmagic); in main()
/external/valgrind/none/tests/
Dioctl_moans.c13 #define IOCTL_REQUEST_BASE (0x12345670 | _IOC(_IOC_NONE,0,0,0))
/external/kernel-headers/original/uapi/sound/
Dsb16_csp.h109 _IOC(_IOC_WRITE, 'H', 0x11, sizeof(struct snd_sb_csp_microcode))

12