HomeSort by relevance Sort by last modified time
    Searched refs:ioctl (Results 251 - 275 of 870) sorted by null

<<11121314151617181920>>

  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
auto_fs.h 15 #include <linux/ioctl.h>
msm_adsp.h 16 #include <linux/ioctl.h>
serio.h 15 #include <linux/ioctl.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/sys/
mount.h 32 #include <sys/ioctl.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
android_alarm.h 15 #include <asm/ioctl.h>
android_pmem.h 48 long (*ioctl) (struct file *, unsigned int, unsigned long); member in struct:pmem_file_operations
auto_fs.h 15 #include <linux/ioctl.h>
msm_adsp.h 16 #include <linux/ioctl.h>
serio.h 15 #include <linux/ioctl.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/sys/
mount.h 32 #include <sys/ioctl.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
android_alarm.h 15 #include <asm/ioctl.h>
auto_fs.h 15 #include <linux/ioctl.h>
msm_adsp.h 16 #include <linux/ioctl.h>
serio.h 15 #include <linux/ioctl.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/sys/
mount.h 32 #include <sys/ioctl.h>
  /system/bluetooth/bluedroid/
bluetooth.c 21 #include <sys/ioctl.h>
165 // firmware and then turned on hci device via HCIUARTSETPROTO ioctl
170 if (!ioctl(hci_sock, HCIDEVUP, HCI_DEV_ID)) {
210 ioctl(hci_sock, HCIDEVDOWN, HCI_DEV_ID);
247 if (ioctl(hci_sock, HCIGETDEVINFO, (void *)&dev_info) < 0) {
  /system/core/toolbox/
umount.c 65 if (ioctl(loop_fd, LOOP_CLR_FD, 0) < 0) {
66 perror("ioctl LOOP_CLR_FD failed");
nandread.c 9 #include <sys/ioctl.h>
123 ret = ioctl(fd, MEMGETINFO, &mtdinfo);
149 ret = ioctl(fd, ECCGETLAYOUT, &ecclayout);
162 ret = ioctl(fd, ECCGETSTATS, &initial_ecc);
179 ret = ioctl(fd, MTDFILEMODE, MTD_MODE_RAW);
200 ret = ioctl(fd, MEMREADOOB, &oobbuf);
206 ret = ioctl(fd, ECCGETSTATS, &ecc);
213 ret = ioctl(fd, MEMGETBADBLOCK, &bpos);
  /development/simulator/wrapsim/
DevAudio.c 14 #include <sys/ioctl.h>
108 newDev->ioctl = ioctlAudio;
  /device/samsung/crespo/alsa-lib/src/rawmidi/
rawmidi_hw.c 28 #include <sys/ioctl.h>
88 if (ioctl(hw->fd, SNDRV_RAWMIDI_IOCTL_INFO, info) < 0) {
99 if (ioctl(hw->fd, SNDRV_RAWMIDI_IOCTL_PARAMS, params) < 0) {
110 if (ioctl(hw->fd, SNDRV_RAWMIDI_IOCTL_STATUS, status) < 0) {
121 if (ioctl(hw->fd, SNDRV_RAWMIDI_IOCTL_DROP, &str) < 0) {
132 if (ioctl(hw->fd, SNDRV_RAWMIDI_IOCTL_DRAIN, &str) < 0) {
248 if (ioctl(fd, SNDRV_RAWMIDI_IOCTL_PVERSION, &ver) < 0) {
263 if (ioctl(fd, SNDRV_RAWMIDI_IOCTL_INFO, &info) < 0) {
  /external/chromium/base/
sync_socket_posix.cc 11 #include <sys/ioctl.h>
104 if (-1 == ioctl(handle_, FIONREAD, &number_chars)) {
105 // If there is an error in ioctl, signal that the channel would block.
  /external/iproute2/lib/
ll_addr.c 17 #include <sys/ioctl.h>
19 #include <sys/ioctl.h>
  /external/dhcpcd/
bpf.c 28 #include <sys/ioctl.h>
80 if (ioctl(fd, BIOCVERSION, &pv) == -1)
90 if (ioctl(fd, BIOCSETIF, &ifr) == -1)
94 if (ioctl(fd, BIOCGBLEN, &buf_len) == -1)
105 if (ioctl(fd, BIOCIMMEDIATE, &flags) == -1)
119 if (ioctl(fd, BIOCSETF, &pf) == -1)
  /external/dropbear/
sshpty.c 141 if (ioctl(*ttyfd, I_PUSH, "ptem") < 0) {
143 "ioctl I_PUSH ptem: %.100s", strerror(errno));
145 if (ioctl(*ttyfd, I_PUSH, "ldterm") < 0) {
147 "ioctl I_PUSH ldterm: %.100s", strerror(errno));
150 if (ioctl(*ttyfd, I_PUSH, "ttcompat") < 0) {
152 "ioctl I_PUSH ttcompat: %.100s", strerror(errno));
280 (void) ioctl(fd, TIOCNOTTY, NULL);
301 if (ioctl(*ttyfd, TIOCSCTTY, NULL) < 0) {
303 "ioctl(TIOCSCTTY): %.100s", strerror(errno));
352 (void) ioctl(ptyfd, TIOCSWINSZ, &w)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/paudio/
SDL_paudio.c 32 #include <sys/ioctl.h>
146 if ( ioctl(audio_fd, AUDIO_BUFFER, &paud_bufinfo) < 0 ) {
259 if ( ioctl(audio_fd, AUDIO_BUFFER, &paud_bufinfo) < 0 ) {
421 if ( ioctl(audio_fd, AUDIO_INIT, &paud_init) < 0 ) {
476 if ( ioctl(audio_fd, AUDIO_CONTROL, &paud_control) < 0 ) {
488 if ( ioctl(audio_fd, AUDIO_CONTROL, &paud_control) < 0 ) {

Completed in 1390 milliseconds

<<11121314151617181920>>