/third_party/libinput/include/linux/linux/ |
D | input.h | 132 #define EVIOCGNAME(len) _IOC(_IOC_READ, 'E', 0x06, len) /* get device name */ 133 #define EVIOCGPHYS(len) _IOC(_IOC_READ, 'E', 0x07, len) /* get physical location */ 134 #define EVIOCGUNIQ(len) _IOC(_IOC_READ, 'E', 0x08, len) /* get unique identifier */ 135 #define EVIOCGPROP(len) _IOC(_IOC_READ, 'E', 0x09, len) /* get device properties */ 161 #define EVIOCGMTSLOTS(len) _IOC(_IOC_READ, 'E', 0x0a, len) 163 #define EVIOCGKEY(len) _IOC(_IOC_READ, 'E', 0x18, len) /* get global key state */ 164 #define EVIOCGLED(len) _IOC(_IOC_READ, 'E', 0x19, len) /* get all LEDs */ 165 #define EVIOCGSND(len) _IOC(_IOC_READ, 'E', 0x1a, len) /* get all sounds status */ 166 #define EVIOCGSW(len) _IOC(_IOC_READ, 'E', 0x1b, len) /* get all switch states */ 168 #define EVIOCGBIT(ev,len) _IOC(_IOC_READ, 'E', 0x20 + (ev), len) /* get event bits */
|
/third_party/libinput/include/linux/freebsd/ |
D | input.h | 133 #define EVIOCGNAME(len) _IOC(IOC_OUT, 'E', 0x06, len) /* get device name */ 134 #define EVIOCGPHYS(len) _IOC(IOC_OUT, 'E', 0x07, len) /* get physical location */ 135 #define EVIOCGUNIQ(len) _IOC(IOC_OUT, 'E', 0x08, len) /* get unique identifier */ 136 #define EVIOCGPROP(len) _IOC(IOC_OUT, 'E', 0x09, len) /* get device properties */ 162 #define EVIOCGMTSLOTS(len) _IOC(IOC_INOUT, 'E', 0x0a, len) 164 #define EVIOCGKEY(len) _IOC(IOC_OUT, 'E', 0x18, len) /* get global key state */ 165 #define EVIOCGLED(len) _IOC(IOC_OUT, 'E', 0x19, len) /* get all LEDs */ 166 #define EVIOCGSND(len) _IOC(IOC_OUT, 'E', 0x1a, len) /* get all sounds status */ 167 #define EVIOCGSW(len) _IOC(IOC_OUT, 'E', 0x1b, len) /* get all switch states */ 169 #define EVIOCGBIT(ev,len) _IOC(IOC_OUT, 'E', 0x20 + (ev), len) /* get event bits */
|
/third_party/libevdev/include/linux/linux/ |
D | input.h | 137 #define EVIOCGNAME(len) _IOC(_IOC_READ, 'E', 0x06, len) /* get device name */ 138 #define EVIOCGPHYS(len) _IOC(_IOC_READ, 'E', 0x07, len) /* get physical location */ 139 #define EVIOCGUNIQ(len) _IOC(_IOC_READ, 'E', 0x08, len) /* get unique identifier */ 140 #define EVIOCGPROP(len) _IOC(_IOC_READ, 'E', 0x09, len) /* get device properties */ 166 #define EVIOCGMTSLOTS(len) _IOC(_IOC_READ, 'E', 0x0a, len) 168 #define EVIOCGKEY(len) _IOC(_IOC_READ, 'E', 0x18, len) /* get global key state */ 169 #define EVIOCGLED(len) _IOC(_IOC_READ, 'E', 0x19, len) /* get all LEDs */ 170 #define EVIOCGSND(len) _IOC(_IOC_READ, 'E', 0x1a, len) /* get all sounds status */ 171 #define EVIOCGSW(len) _IOC(_IOC_READ, 'E', 0x1b, len) /* get all switch states */ 173 #define EVIOCGBIT(ev,len) _IOC(_IOC_READ, 'E', 0x20 + (ev), len) /* get event bits */
|
D | uinput.h | 160 #define UI_GET_SYSNAME(len) _IOC(_IOC_READ, UINPUT_IOCTL_BASE, 44, len)
|
/third_party/musl/porting/uniproton/kernel/include/bits/ |
D | ioctl.h | 1 #define _IOC(a,b,c,d) ( ((a)<<30) | ((b)<<8) | (c) | ((d)<<16) ) macro 6 #define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0) 7 #define _IOW(a,b,c) _IOC(_IOC_WRITE,(a),(b),sizeof(c)) 8 #define _IOR(a,b,c) _IOC(_IOC_READ,(a),(b),sizeof(c)) 9 #define _IOWR(a,b,c) _IOC(_IOC_READ|_IOC_WRITE,(a),(b),sizeof(c))
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/ |
D | ioctl.h | 1 #define _IOC(a,b,c,d) ( ((a)<<30) | ((b)<<8) | (c) | ((d)<<16) ) macro 6 #define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0) 7 #define _IOW(a,b,c) _IOC(_IOC_WRITE,(a),(b),sizeof(c)) 8 #define _IOR(a,b,c) _IOC(_IOC_READ,(a),(b),sizeof(c)) 9 #define _IOWR(a,b,c) _IOC(_IOC_READ|_IOC_WRITE,(a),(b),sizeof(c))
|
/third_party/musl/porting/liteos_m/kernel/include/bits/ |
D | ioctl.h | 1 #define _IOC(a,b,c,d) ( ((a)<<30) | ((b)<<8) | (c) | ((d)<<16) ) macro 6 #define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0) 7 #define _IOW(a,b,c) _IOC(_IOC_WRITE,(a),(b),sizeof(c)) 8 #define _IOR(a,b,c) _IOC(_IOC_READ,(a),(b),sizeof(c)) 9 #define _IOWR(a,b,c) _IOC(_IOC_READ|_IOC_WRITE,(a),(b),sizeof(c))
|
/third_party/musl/arch/generic/bits/ |
D | ioctl.h | 1 #define _IOC(a,b,c,d) ( ((a)<<30) | ((b)<<8) | (c) | ((d)<<16) ) macro 6 #define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0) 7 #define _IOW(a,b,c) _IOC(_IOC_WRITE,(a),(b),sizeof(c)) 8 #define _IOR(a,b,c) _IOC(_IOC_READ,(a),(b),sizeof(c)) 9 #define _IOWR(a,b,c) _IOC(_IOC_READ|_IOC_WRITE,(a),(b),sizeof(c))
|
/third_party/musl/arch/mips64/bits/ |
D | ioctl.h | 1 #define _IOC(a,b,c,d) ( ((a)<<29) | ((b)<<8) | (c) | ((d)<<16) ) macro 6 #define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0) 7 #define _IOW(a,b,c) _IOC(_IOC_WRITE,(a),(b),sizeof(c)) 8 #define _IOR(a,b,c) _IOC(_IOC_READ,(a),(b),sizeof(c)) 9 #define _IOWR(a,b,c) _IOC(_IOC_READ|_IOC_WRITE,(a),(b),sizeof(c))
|
/third_party/musl/arch/mipsn32/bits/ |
D | ioctl.h | 1 #define _IOC(a,b,c,d) ( ((a)<<29) | ((b)<<8) | (c) | ((d)<<16) ) macro 6 #define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0) 7 #define _IOW(a,b,c) _IOC(_IOC_WRITE,(a),(b),sizeof(c)) 8 #define _IOR(a,b,c) _IOC(_IOC_READ,(a),(b),sizeof(c)) 9 #define _IOWR(a,b,c) _IOC(_IOC_READ|_IOC_WRITE,(a),(b),sizeof(c))
|
/third_party/musl/arch/mips/bits/ |
D | ioctl.h | 1 #define _IOC(a,b,c,d) ( ((a)<<29) | ((b)<<8) | (c) | ((d)<<16) ) macro 6 #define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0) 7 #define _IOW(a,b,c) _IOC(_IOC_WRITE,(a),(b),sizeof(c)) 8 #define _IOR(a,b,c) _IOC(_IOC_READ,(a),(b),sizeof(c)) 9 #define _IOWR(a,b,c) _IOC(_IOC_READ|_IOC_WRITE,(a),(b),sizeof(c))
|
/third_party/musl/porting/liteos_a/kernel/include/bits/ |
D | ioctl.h | 1 #define _IOC(a,b,c,d) ( ((a)<<30) | ((b)<<8) | (c) | ((d)<<16) ) macro 12 #define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0) 13 #define _IOW(a,b,c) _IOC(_IOC_WRITE,(a),(b),sizeof(c)) 14 #define _IOR(a,b,c) _IOC(_IOC_READ,(a),(b),sizeof(c)) 15 #define _IOWR(a,b,c) _IOC(_IOC_READ|_IOC_WRITE,(a),(b),sizeof(c))
|
/third_party/musl/arch/powerpc64/bits/ |
D | ioctl.h | 1 #define _IOC(a,b,c,d) ( ((a)<<29) | ((b)<<8) | (c) | ((d)<<16) ) macro 6 #define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0) 7 #define _IOW(a,b,c) _IOC(_IOC_WRITE,(a),(b),sizeof(c)) 8 #define _IOR(a,b,c) _IOC(_IOC_READ,(a),(b),sizeof(c)) 9 #define _IOWR(a,b,c) _IOC(_IOC_READ|_IOC_WRITE,(a),(b),sizeof(c))
|
/third_party/musl/arch/powerpc/bits/ |
D | ioctl.h | 1 #define _IOC(a,b,c,d) ( ((a)<<29) | ((b)<<8) | (c) | ((d)<<16) ) macro 6 #define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0) 7 #define _IOW(a,b,c) _IOC(_IOC_WRITE,(a),(b),sizeof(c)) 8 #define _IOR(a,b,c) _IOC(_IOC_READ,(a),(b),sizeof(c)) 9 #define _IOWR(a,b,c) _IOC(_IOC_READ|_IOC_WRITE,(a),(b),sizeof(c))
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/bits/ |
D | ioctl.h | 1 #define _IOC(a,b,c,d) ( ((a)<<30) | ((b)<<8) | (c) | ((d)<<16) ) macro 12 #define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0) 13 #define _IOW(a,b,c) _IOC(_IOC_WRITE,(a),(b),sizeof(c)) 14 #define _IOR(a,b,c) _IOC(_IOC_READ,(a),(b),sizeof(c)) 15 #define _IOWR(a,b,c) _IOC(_IOC_READ|_IOC_WRITE,(a),(b),sizeof(c))
|
/third_party/musl/arch/sh/bits/ |
D | ioctl.h | 1 #define _IOC(a,b,c,d) ( ((a)<<30) | ((b)<<8) | (c) | ((d)<<16) ) macro 6 #define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0) 7 #define _IOW(a,b,c) _IOC(_IOC_WRITE,(a),(b),sizeof(c)) 8 #define _IOR(a,b,c) _IOC(_IOC_READ,(a),(b),sizeof(c)) 9 #define _IOWR(a,b,c) _IOC(_IOC_READ|_IOC_WRITE,(a),(b),sizeof(c))
|
/third_party/alsa-lib/include/sound/uapi/ |
D | sb16_csp.h | 110 _IOC(_IOC_WRITE, 'H', 0x11, sizeof(struct snd_sb_csp_microcode))
|
/third_party/mtdev/include/ |
D | mtdev.h | 73 #define EVIOCGMTSLOTS(len) _IOC(_IOC_READ, 'E', 0x0a, len)
|
/third_party/libdrm/ |
D | xf86drm.h | 57 #define DRM_IOC(dir, group, nr, size) _IOC(dir, group, nr, size) 67 #define DRM_IOC(dir, group, nr, size) _IOC(dir, group, nr, size)
|