/prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/linux/ |
blkpg.h | 16 #include <linux/ioctl.h>
|
omap_csmi.h | 15 #include <asm/ioctl.h>
|
random.h | 15 #include <linux/ioctl.h>
|
/prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/linux/ |
blkpg.h | 16 #include <linux/ioctl.h>
|
omap_csmi.h | 15 #include <asm/ioctl.h>
|
random.h | 15 #include <linux/ioctl.h>
|
/prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/asm/ |
ioctl.h | 19 #include <asm-generic/ioctl.h>
|
/prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/linux/ |
blkpg.h | 16 #include <linux/ioctl.h>
|
omap_csmi.h | 15 #include <asm/ioctl.h>
|
random.h | 15 #include <linux/ioctl.h>
|
/system/core/libion/original-kernel-headers/linux/ |
ion.h | 20 #include <linux/ioctl.h> 84 * Provided by userspace as an argument to the ioctl 118 * struct ion_custom_data - metadata passed to/from userspace for a custom ioctl 119 * @cmd: the custom ioctl function to call 120 * @arg: additional data to pass to the custom ioctl, typically a user 123 * This works just like the regular cmd and arg fields of an ioctl. 189 * DOC: ION_IOC_CUSTOM - call architecture specific ion ioctl 191 * Takes the argument of the architecture specific ioctl to call and 192 * passes appropriate userdata for that ioctl
|
/system/core/toolbox/ |
ioctl.c | 40 #include <sys/ioctl.h> 116 // IOCTL(2) wants second parameter as a signed int. 118 // numbers, for the case where ioctl number is larger than INT_MAX. 123 error(1, errno, "couldn't parse ioctl number '%s'", argv[optind]); 151 printf("sending ioctl 0x%x", ioctl_nr); 160 res = ioctl(fd, ioctl_nr, *(uint32_t*)ioctl_args); 162 res = ioctl(fd, ioctl_nr, ioctl_args); 164 res = ioctl(fd, ioctl_nr, 0); 167 error(1, errno, "ioctl 0x%x failed (returned %d)", ioctl_nr, res);
|
/system/sepolicy/ |
sgdisk.te | 10 allow sgdisk devpts:chr_file { read write ioctl getattr };
|
/hardware/qcom/media/msm8974/mm-video-legacy/vidc/venc/src/ |
video_encoder_device_copper.cpp | 29 #include <sys/ioctl.h> 190 rc = ioctl(pfd.fd, VIDIOC_DQBUF, &v4l2_buf); 207 rc = ioctl(pfd.fd, VIDIOC_DQBUF, &v4l2_buf); 217 rc = ioctl(pfd.fd, VIDIOC_DQEVENT, &dqevent); 229 DEBUG_PRINT_ERROR("\nERROR: Wrong ioctl message"); 258 if(/*ioctl (m_nDriver_fd, VEN_IOCTL_GET_NUMBER_INSTANCES, (void*)&ioctl_msg) < */0 ) 305 if(/*ioctl (m_nDriver_fd,VEN_IOCTL_SET_BASE_CFG,(void*)&ioctl_msg) < */0 ) 319 ret = ioctl(m_nDriver_fd, VIDIOC_SUBSCRIBE_EVENT, &sub); 329 ret = ioctl(m_nDriver_fd, VIDIOC_QUERYCAP, &cap); 341 while (ioctl(m_nDriver_fd, VIDIOC_ENUM_FMT, &fdesc) == 0) [all...] |
/system/extras/sound/ |
playwav.c | 10 #include <sys/ioctl.h> 13 #include <linux/ioctl.h> 54 if(ioctl(afd, AUDIO_GET_CONFIG, &config)) { 61 if (ioctl(afd, AUDIO_SET_CONFIG, &config)) { 80 ioctl(afd, AUDIO_START, 0); 84 if (ioctl(afd, AUDIO_GET_STATS, &stats) == 0) 232 if (ioctl(afd, AUDIO_GET_CONFIG, &cfg)) { 239 if (ioctl(afd, AUDIO_SET_CONFIG, &cfg)) { 244 if (ioctl(afd, AUDIO_GET_CONFIG, &cfg)) { 256 if (ioctl(afd, AUDIO_START, 0)) [all...] |
/bionic/libc/bionic/ |
ioctl.cpp | 29 #include <sys/ioctl.h> 34 int ioctl(int fd, int request, ...) { function
|
/development/ndk/platforms/android-3/include/sys/ |
ioctl.h | 32 #include <linux/ioctl.h> 39 extern int ioctl(int, int, ...);
|
/external/android-clat/ |
mtu.c | 23 #include <sys/ioctl.h> 42 if(ioctl(fd, SIOCGIFMTU, &if_mtu) < 0) {
|
/external/autotest/client/deps/fakemodem/src/ |
fakenet.c | 17 #include <sys/ioctl.h> 45 if ((err = ioctl (fd, TUNSETIFF, (void *) &ifr)) < 0) {
|
/external/e2fsprogs/lib/blkid/ |
getsize.c | 27 #include <sys/ioctl.h> 81 if (ioctl(fd, DKIOCGETBLOCKCOUNT, &size64) >= 0) { 101 ioctl(fd, BLKGETSIZE64, &size64) >= 0) { 114 if (ioctl(fd, BLKGETSIZE, &size) >= 0) 121 if (ioctl(fd, DIOCGMEDIASIZE, &size64) >= 0) 129 if (ioctl(fd, FDGETPRM, &this_floppy) >= 0) 154 if (part >= 0 && (ioctl(fd, DIOCGDINFO, (char *)&lab) >= 0)) { 174 * OK, we couldn't figure it out by using a specialized ioctl,
|
/external/e2fsprogs/lib/e2p/ |
fgetversion.c | 29 #include <sys/ioctl.h> 48 r = ioctl (fd, EXT2_IOC_GETVERSION, &ver);
|
fsetversion.c | 29 #include <sys/ioctl.h> 49 r = ioctl (fd, EXT2_IOC_SETVERSION, &ver);
|
getflags.c | 25 #include <sys/ioctl.h> 60 r = ioctl(fd, EXT2_IOC_GETFLAGS, &f);
|
setflags.c | 25 #include <sys/ioctl.h> 70 return ioctl(fd, EXT2_IOC_SETFLAGS, &f);
|
/external/e2fsprogs/lib/ext2fs/ |
getsize.c | 27 #include <sys/ioctl.h> 153 if (ioctl(fd, DKIOCGETBLOCKCOUNT, &size64) >= 0) { 171 ioctl(fd, BLKGETSIZE64, &size64) >= 0) { 182 if (ioctl(fd, BLKGETSIZE, &size) >= 0) { 193 if (ioctl(fd, FDGETPRM, &this_floppy) >= 0) { 211 if (ioctl(fd, DIOCGMEDIASIZE, &ms) >= 0) { 228 if (part >= 0 && (ioctl(fd, DIOCGDINFO, (char *)&lab) >= 0)) { 250 * OK, we couldn't figure it out by using a specialized ioctl,
|