Searched refs:_IOC_TYPECHECK (Results 1 – 2 of 2) sorted by relevance
/linux/include/uapi/asm-generic/ |
H A D | ioctl.h | 76 #define _IOC_TYPECHECK(t) (sizeof(t)) macro 86 #define _IOR(type,nr,argtype) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(argtype))) 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)))
|
/linux/include/asm-generic/ |
H A D | ioctl.h | 8 #define _IOC_TYPECHECK(t) (sizeof(t)) macro 12 #define _IOC_TYPECHECK(t) \ macro
|