Searched refs:ioctl (Results 1 - 25 of 516) sorted by relevance

1234567891011>>

/external/kernel-headers/original/uapi/asm-arm/asm/
H A Dioctl.h1 #include <asm-generic/ioctl.h>
/external/kernel-headers/original/uapi/asm-arm64/asm/
H A Dioctl.h1 #include <asm-generic/ioctl.h>
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dioctl.h1 #include <asm-generic/ioctl.h>
H A Dmsr.h9 #include <linux/ioctl.h>
/external/kernel-headers/original/uapi/linux/
H A Dif_ppp.h1 #include <linux/ppp-ioctl.h>
H A Dioctl.h4 #include <asm/ioctl.h>
H A Dnvram.h4 #include <linux/ioctl.h>
H A Dradeonfb.h4 #include <asm/ioctl.h>
/external/strace/test/
H A Dubi.c7 #include <sys/ioctl.h>
37 ioctl(fd, UBI_IOCMKVOL, &mkvol);
38 ioctl(fd, UBI_IOCRSVOL, &rsvol);
39 ioctl(fd, UBI_IOCRNVOL, &rnvol);
40 ioctl(fd, UBI_IOCATT, &attach);
41 ioctl(fd, UBI_IOCVOLUP, &bytes);
42 ioctl(fd, UBI_IOCEBMAP, &map);
43 ioctl(fd, UBI_IOCSETVOLPROP, &prop);
45 ioctl(fd, UBI_IOCSETVOLPROP, &prop);
46 ioctl(f
[all...]
H A Dmtd.c6 #include <sys/ioctl.h>
27 ioctl(fd, MEMGETINFO, &minfo);
29 ioctl(fd, MEMERASE, &einfo);
30 ioctl(fd, MEMERASE64, &einfo64);
32 ioctl(fd, MEMGETBADBLOCK, &f);
34 ioctl(fd, OTPSELECT, &i);
35 ioctl(fd, MEMSETBADBLOCK, &f);
37 ioctl(fd, MEMREADOOB, &mbuf);
38 ioctl(fd, MEMREADOOB64, &mbuf64);
40 ioctl(f
[all...]
/external/e2fsprogs/lib/e2p/
H A Dsetversion.c22 #include <sys/ioctl.h>
32 return ioctl (fd, EXT2_IOC_SETVERSION, &ver);
H A Dgetversion.c22 #include <sys/ioctl.h>
31 r = ioctl (fd, EXT2_IOC_GETVERSION, &ver);
/external/chromium_org/ui/ozone/platform/dri/
H A Dvirtual_terminal_manager.cc11 #include <sys/ioctl.h>
32 if (ioctl(fd_, VT_ACTIVATE, kVT) || ioctl(fd_, VT_WAITACTIVE, kVT))
36 if (ioctl(fd_, KDGETMODE, &vt_mode_))
39 if (ioctl(fd_, KDSETMODE, KD_GRAPHICS))
52 if (ioctl(fd_, KDGKBMODE, &previous_keyboard_mode_))
55 if (ioctl(fd_, KDSKBMODE, K_OFF) && ioctl(fd_, KDSKBMODE, K_RAW))
63 if (ioctl(fd_, KDSETMODE, &vt_mode_))
66 if (ioctl(fd
[all...]
/external/kernel-headers/original/uapi/asm-mips/asm/
H A Dioctl.h18 * And this turns out useful to catch old ioctl numbers in header
25 #include <asm-generic/ioctl.h>
H A Dsockios.h13 #include <asm/ioctl.h>
/external/chromium_org/third_party/ashmem/
H A Dashmem-dev.c27 #include <sys/ioctl.h>
54 ret = ioctl(fd, ASHMEM_SET_NAME, buf);
59 ret = ioctl(fd, ASHMEM_SET_SIZE, size);
72 return ioctl(fd, ASHMEM_SET_PROT_MASK, prot);
78 return ioctl(fd, ASHMEM_PIN, &pin);
84 return ioctl(fd, ASHMEM_UNPIN, &pin);
89 return ioctl(fd, ASHMEM_GET_SIZE, NULL);
97 const int ret = ioctl(fd, ASHMEM_PURGE_ALL_CACHES, 0);
/external/compiler-rt/test/asan/TestCases/Posix/
H A Dioctl.cc9 #include <sys/ioctl.h>
17 int res = ioctl(fd, FIONBIO, &nonblock + 1);
20 // CHECK: {{#.* in main .*ioctl.cc:}}[[@LINE-3]]
/external/compiler-rt/test/msan/
H A Dioctl.cc6 #include <sys/ioctl.h>
14 int res = ioctl(fd, FIOGETOWN, &z);
H A Dioctl_sound.cc9 #include <sys/ioctl.h>
24 assert(ioctl(fd, SNDRV_CTL_IOCTL_CARD_INFO, info) >= 0);
/external/e2fsprogs/lib/ext2fs/
H A Dflushb.c21 #include <sys/ioctl.h>
66 if (ioctl (fd, BLKFLSBUF, 0) == 0)
72 return ioctl(fd, FDFLUSH, 0); /* In case this is a floppy */
/external/qemu/distrib/ext4_utils/src/
H A Dwipe.c25 #include <sys/ioctl.h>
47 ret = ioctl(fd, BLKSECDISCARD, &range);
51 ret = ioctl(fd, BLKDISCARD, &range);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/include/sys/
H A Dioctl.h22 int ioctl(int fd, unsigned long request, ...);
/external/android-clat/
H A Dmtu.c23 #include <sys/ioctl.h>
42 if(ioctl(fd, SIOCGIFMTU, &if_mtu) < 0) {
/external/e2fsprogs/e2fsck/
H A Dflushb.c21 #include <sys/ioctl.h>
52 * Note: to reread the partition table, use the ioctl
56 if (ioctl(fd, BLKFLSBUF, 0) < 0) {
57 perror("ioctl BLKFLSBUF");
63 _("BLKFLSBUF ioctl not supported! Can't flush buffers.\n"));
/external/f2fs-tools/mkfs/
H A Df2fs_format_utils.c13 #include <sys/ioctl.h>
43 if (ioctl(config.fd, BLKDISCARD, &range) < 0) {

Completed in 2262 milliseconds

1234567891011>>