Home
last modified time | relevance | path

Searched refs:test_ioctl (Results 1 – 21 of 21) sorted by relevance

/external/v4l-utils/utils/v4l2-ctl/
Dv4l2-ctl-io.cpp90 if (test_ioctl(fd, VIDIOC_ENUMINPUT, &vin) >= 0) in io_set()
124 if (test_ioctl(fd, VIDIOC_ENUMINPUT, &vin) >= 0) in io_get()
136 if (test_ioctl(fd, VIDIOC_ENUMOUTPUT, &vout) >= 0) { in io_get()
163 while (test_ioctl(fd, VIDIOC_ENUMINPUT, &vin) >= 0) { in io_list()
184 while (test_ioctl(fd, VIDIOC_ENUMOUTPUT, &vout) >= 0) { in io_list()
202 while (test_ioctl(fd, VIDIOC_ENUMAUDIO, &vaudio) >= 0) { in io_list()
215 while (test_ioctl(fd, VIDIOC_ENUMAUDOUT, &vaudio) >= 0) { in io_list()
Dv4l2-ctl-vidcap.cpp75 if (test_ioctl(fd, VIDIOC_G_FMT, &fmt) < 0) in print_video_fields()
87 if (test_ioctl(fd, VIDIOC_TRY_FMT, &tmp) < 0) in print_video_fields()
365 while (test_ioctl(fd.g_fd(), VIDIOC_ENUM_FRAMESIZES, &frmsize) >= 0) { in vidcap_list()
389 while (test_ioctl(fd.g_fd(), VIDIOC_ENUM_FRAMEINTERVALS, &frmival) >= 0) { in vidcap_list()
Dv4l2-ctl-vidout.cpp58 if (test_ioctl(fd, VIDIOC_G_FMT, &fmt) < 0) in print_video_out_fields()
70 if (test_ioctl(fd, VIDIOC_TRY_FMT, &tmp) < 0) in print_video_out_fields()
Dv4l2-ctl-stds.cpp479 if (test_ioctl(fd, VIDIOC_ENUMSTD, &vs) >= 0) { in stds_set()
633 while (test_ioctl(fd, VIDIOC_ENUMSTD, &vs) >= 0) { in stds_list()
657 while (test_ioctl(fd, VIDIOC_ENUM_DV_TIMINGS, &dv_enum_timings) >= 0) { in stds_list()
Dv4l2-ctl-subdev.cpp785 if (test_ioctl(fd, VIDIOC_SUBDEV_G_SELECTION, &sel) == 0) in subdev_get()
861 int ret = test_ioctl(fd, VIDIOC_SUBDEV_ENUM_MBUS_CODE, &mbus_code); in print_mbus_codes()
929 while (test_ioctl(fd, VIDIOC_SUBDEV_ENUM_FRAME_SIZE, &frmsize) >= 0) { in subdev_list()
944 while (test_ioctl(fd, VIDIOC_SUBDEV_ENUM_FRAME_INTERVAL, &frmival) >= 0) { in subdev_list()
Dv4l2-ctl-common.cpp572 if (test_ioctl(fd, VIDIOC_QUERYMENU, &qmenu)) in print_value()
740 if (test_ioctl(fd, VIDIOC_QUERYMENU, &qmenu)) in print_qctrl()
784 if (test_ioctl(fd, VIDIOC_G_EXT_CTRLS, &ctrls)) { in print_control()
792 if (test_ioctl(fd, VIDIOC_G_CTRL, &ctrl)) { in print_control()
811 rc = test_ioctl(fd, VIDIOC_QUERY_EXT_CTRL, &qctrl); in query_ext_ctrl_ioctl()
816 rc = test_ioctl(fd, VIDIOC_QUERYCTRL, &qc); in query_ext_ctrl_ioctl()
926 rc = test_ioctl(fd.g_fd(), VIDIOC_QUERY_EXT_CTRL, &qc); in common_process_controls()
Dv4l2-ctl-tuner.cpp206 while (test_ioctl(fd, VIDIOC_ENUM_FREQ_BANDS, &band) >= 0) { in tuner_set()
Dv4l2-ctl.h298 int test_ioctl(int fd, unsigned long cmd, void *arg);
Dv4l2-ctl.cpp305 int test_ioctl(int fd, unsigned long cmd, void *arg) in test_ioctl() function
312 int retval = test_ioctl(fd, request, parm); in doioctl_name()
395 while (test_ioctl(fd, VIDIOC_ENUM_FMT, &fmt) >= 0) { in printfmtname()
/external/ltp/testcases/kernel/device-drivers/nls/
DnlsTest.c62 static int test_ioctl(struct inode *, struct file *,
67 static int test_ioctl(struct block_device *bdev, fmode_t mode,
81 .ioctl = test_ioctl,
107 static int test_ioctl(struct inode *ino, struct file *f, in test_ioctl() function
110 static int test_ioctl(struct block_device *bdev, fmode_t mode, in test_ioctl()
/external/ltp/testcases/kernel/device-drivers/include/
DincludeTest.c62 static int test_ioctl(struct inode *, struct file *, unsigned int,
80 ioctl: test_ioctl,
99 static int test_ioctl(struct inode *ino, struct file *f, unsigned int cmd, in test_ioctl() function
/external/ltp/testcases/kernel/syscalls/ioctl/
DMakefile8 INSTALL_TARGETS += test_ioctl
/external/rust/android-crates-io/crates/nix/test/sys/
Dmod.rs21 mod test_ioctl; module
/external/python/cpython3/Lib/test/
Dtest_ioctl.py30 def test_ioctl(self): member in IoctlTests
/external/ethtool/
Dtest-common.c262 int test_ioctl(const struct cmd_expect *expect, void *cmd) in test_ioctl() function
Dinternal.h242 int test_ioctl(const struct cmd_expect *expect, void *cmd);
Dtest-features.c504 int rc = test_ioctl(expect_next, cmd); in send_ioctl()
/external/ltp/runtest/
Dsyscalls578 ioctl02 test_ioctl
/external/v4l-utils/
DChangeLog787 v4l2-ctl: Fix test_ioctl cmd type
1934 v4l2-ctl: don't use doioctl to query timings, use test_ioctl
/external/ltp/
Dgen.bp24958 src: "testcases/kernel/syscalls/ioctl/test_ioctl",
24960 filename: "test_ioctl",
/external/python/cpython3/Misc/
DHISTORY12637 - Issue #7564: Skip test_ioctl if another process is attached to /dev/tty.