Lines Matching refs:request
546 int FAST_FUNC ioctl_or_perror_and_die(int fd, unsigned request, void *argp, const char *fmt,...) in ioctl_or_perror_and_die() argument
551 ret = ioctl(fd, request, argp); in ioctl_or_perror_and_die()
562 int FAST_FUNC ioctl_or_perror(int fd, unsigned request, void *argp, const char *fmt,...) in ioctl_or_perror() argument
565 int ret = ioctl(fd, request, argp); in ioctl_or_perror()
576 int FAST_FUNC bb_ioctl_or_warn(int fd, unsigned request, void *argp, const char *ioctl_name) in bb_ioctl_or_warn() argument
580 ret = ioctl(fd, request, argp); in bb_ioctl_or_warn()
585 int FAST_FUNC bb_xioctl(int fd, unsigned request, void *argp, const char *ioctl_name) in bb_xioctl() argument
589 ret = ioctl(fd, request, argp); in bb_xioctl()
595 int FAST_FUNC bb_ioctl_or_warn(int fd, unsigned request, void *argp) in bb_ioctl_or_warn() argument
599 ret = ioctl(fd, request, argp); in bb_ioctl_or_warn()
601 bb_perror_msg("ioctl %#x failed", request); in bb_ioctl_or_warn()
604 int FAST_FUNC bb_xioctl(int fd, unsigned request, void *argp) in bb_xioctl() argument
608 ret = ioctl(fd, request, argp); in bb_xioctl()
610 bb_perror_msg_and_die("ioctl %#x failed", request); in bb_xioctl()