| /openbmc/openbmc-tools/pwmtachtool/src/ |
| H A D | pwmtach_ioctl.h | 45 #define GET_TACH_VALUE_BY_TACH_CHANNEL _IOR('P', 6, int) 54 #define GET_TACH_STATUS _IOR('P', 15, int) 55 #define GET_PWM_STATUS _IOR('P', 16, int) 56 #define GET_PWM_CHANNEL_STATUS _IOR('P', 17, int) 62 #define SHOW_FANMAP_TABLE _IOR('P', 23, int) 63 #define SHOW_FANPROPERTY_TABLE _IOR('P', 24, int) 64 #define GET_FAN_RPM_RANGE _IOR('P', 25, int) 65 #define GET_DUTY_CYCLE _IOR('P', 26, int) 67 #define GET_TACH_PROPERTY _IOR('P', 28, int) 69 #define GET_PWM_PROPERTY _IOR('P', 30, int)
|
| /openbmc/ipmitool/src/plugins/open/ |
| H A D | open.h | 97 #define IPMICTL_SEND_COMMAND _IOR(IPMI_IOC_MAGIC, 13, struct ipmi_req) 98 #define IPMICTL_REGISTER_FOR_CMD _IOR(IPMI_IOC_MAGIC, 14, struct ipmi_cmdspec) 99 #define IPMICTL_UNREGISTER_FOR_CMD _IOR(IPMI_IOC_MAGIC, 15, struct ipmi_cmdspec) 100 #define IPMICTL_SET_GETS_EVENTS_CMD _IOR(IPMI_IOC_MAGIC, 16, int) 101 #define IPMICTL_SET_MY_ADDRESS_CMD _IOR(IPMI_IOC_MAGIC, 17, unsigned int) 102 #define IPMICTL_GET_MY_ADDRESS_CMD _IOR(IPMI_IOC_MAGIC, 18, unsigned int) 103 #define IPMICTL_SET_MY_LUN_CMD _IOR(IPMI_IOC_MAGIC, 19, unsigned int) 104 #define IPMICTL_GET_MY_LUN_CMD _IOR(IPMI_IOC_MAGIC, 20, unsigned int)
|
| /openbmc/qemu/linux-user/xtensa/ |
| H A D | termbits.h | 227 #define TARGET_FIONREAD _IOR('f', 127, int) 229 #define TARGET_FIOQSIZE _IOR('f', 128, loff_t) 249 #define TARGET_TIOCOUTQ _IOR('t', 115, int) /* output queue size */ 252 #define TARGET_TIOCGPGRP _IOR('t', 119, int) 259 #define TARGET_TIOCMGET _IOR('T', 21, unsigned int) 275 #define TARGET_TIOCGSOFTCAR _IOR('T', 25, unsigned int) 294 #define TARGET_TIOCGETD _IOR('T', 36, int) 298 #define TARGET_TIOCGSID _IOR('T', 41, pid_t) /* Return the session ID of FD*/ 299 #define TARGET_TCGETS2 _IOR('T', 42, struct termios2) 303 #define TARGET_TIOCGRS485 _IOR('T', 46, struct serial_rs485) [all …]
|
| /openbmc/qemu/backends/tpm/ |
| H A D | tpm_ioctl.h | 290 PTM_GET_CAPABILITY = _IOR('P', 0, ptm_cap), 292 PTM_SHUTDOWN = _IOR('P', 2, ptm_res), 293 PTM_GET_TPMESTABLISHED = _IOR('P', 3, ptm_est), 295 PTM_HASH_START = _IOR('P', 5, ptm_res), 297 PTM_HASH_END = _IOR('P', 7, ptm_res), 298 PTM_CANCEL_TPM_CMD = _IOR('P', 8, ptm_res), 299 PTM_STORE_VOLATILE = _IOR('P', 9, ptm_res), 303 PTM_STOP = _IOR('P', 13, ptm_res), 304 PTM_GET_CONFIG = _IOR('P', 14, ptm_getconfig), 305 PTM_SET_DATAFD = _IOR('P', 15, ptm_res),
|
| /openbmc/u-boot/include/mtd/ |
| H A D | mtd-abi.h | 147 #define MEMGETINFO _IOR('M', 1, struct mtd_info_user) 159 #define MEMGETREGIONCOUNT _IOR('M', 7, int) 163 #define MEMGETOOBSEL _IOR('M', 10, struct nand_oobinfo) 169 #define OTPSELECT _IOR('M', 13, int) 175 #define OTPLOCK _IOR('M', 16, struct otp_info) 177 #define ECCGETLAYOUT _IOR('M', 17, struct nand_ecclayout_user) 179 #define ECCGETSTATS _IOR('M', 18, struct mtd_ecc_stats) 189 #define MEMISLOCKED _IOR('M', 23, struct erase_info_user)
|
| H A D | ubi-user.h | 187 #define UBI_IOCEBISMAP _IOR(UBI_VOL_IOC_MAGIC, 5, __s32)
|
| /openbmc/openbmc/poky/meta/recipes-devtools/python/python3-maturin/ |
| H A D | 0001-Define-more-ioctl-codes-on-riscv32gc-unknown-linux-g.patch | 7 `_IOR` and `_IOW` so that they're automatically supported on all 21 +use crate::{Ioctl, _IOR, _IOW}; 96 +pub const FS_IOC_GETFLAGS: Ioctl = _IOR::<c_long>('f' as u32, 1) as Ioctl; 98 +pub const FS_IOC_GETVERSION: Ioctl = _IOR::<c_long>('v' as u32, 1) as Ioctl; 100 +pub const FS_IOC32_GETFLAGS: Ioctl = _IOR::<c_int>('f' as u32, 1) as Ioctl; 102 +pub const FS_IOC32_GETVERSION: Ioctl = _IOR::<c_int>('v' as u32, 1) as Ioctl; 107 +pub const TUNGETFILTER: Ioctl = _IOR::<crate::sock_fprog>('T' as u32, 219) as Ioctl;
|
| /openbmc/qemu/linux-headers/linux/ |
| H A D | userfaultfd.h | 90 #define UFFDIO_UNREGISTER _IOR(UFFDIO, _UFFDIO_UNREGISTER, \ 92 #define UFFDIO_WAKE _IOR(UFFDIO, _UFFDIO_WAKE, \
|
| /openbmc/openbmc/meta-openembedded/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc/ |
| H A D | 0008-kexec.c-replace-mising-BLKGETSIZE64.patch | 27 +#define BLKGETSIZE64 _IOR(0x12,114,size_t)
|
| /openbmc/u-boot/include/asm-generic/ |
| H A D | ioctl.h | 84 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size))) macro
|
| /openbmc/openbmc/poky/meta/recipes-devtools/syslinux/syslinux/ |
| H A D | 0012-libinstaller-Fix-build-with-glibc-2.36.patch | 45 +#define FS_IOC_GETFLAGS _IOR('f', 1, long)
|
| H A D | 0001-ext2_fs.h-do-not-carry-an-outdated-copy.patch | 682 -#define EXT2_IOC_GETFLAGS _IOR('f', 1, long) 684 -#define EXT2_IOC_GETVERSION _IOR('v', 1, long) 686 -#define EXT2_IOC_GETVERSION_NEW _IOR('f', 3, long)
|