HomeSort by relevance Sort by last modified time
    Searched defs:ioctl (Results 1 - 25 of 41) sorted by null

1 2

  /bionic/libc/include/bits/
ioctl.h 32 * @file bits/ioctl.h
33 * @brief The ioctl() function.
41 * [ioctl(2)](http://man7.org/linux/man-pages/man2/ioctl.2.html) operates on device files.
43 int ioctl(int __fd, int __request, ...);
46 * Work around unsigned -> signed conversion warnings: many common ioctl
49 * Since this workaround introduces an overload to ioctl, it's possible that it
50 * will break existing code that takes the address of ioctl. If such a breakage
52 * - specifying a concrete, correct type for ioctl (whether it be through a cast
53 * in `(int (*)(int, int, ...))ioctl`, creating a temporary variable with th
60 int ioctl(int __fd, unsigned __request, ...) __overloadable __enable_if(1, "") __RENAME(ioctl); variable
    [all...]
  /bionic/libc/bionic/
ioctl.cpp 29 #include <sys/ioctl.h>
34 int ioctl(int fd, int request, ...) { function
  /external/u-boot/include/
misc.h 96 int (*ioctl)(struct udevice *dev, unsigned long request, void *buf); member in struct:misc_ops
  /external/bcc/src/python/bcc/
perf.py 69 ioctl = libc.ioctl # not declaring vararg types variable in class:Perf
81 if Perf.ioctl(pfd, Perf.PERF_EVENT_IOC_SET_FILTER,
88 if Perf.ioctl(pfd, Perf.PERF_EVENT_IOC_ENABLE, 0) < 0:
  /external/libdrm/tests/nouveau/
threaded.c 23 #include <sys/ioctl.h>
34 static typeof(ioctl) *old_ioctl;
39 int ioctl(int fd, unsigned long request, ...) function
79 old_ioctl = dlsym(RTLD_NEXT, "ioctl");
  /external/mesa3d/src/gallium/winsys/svga/drm/
vmw_screen.h 79 } ioctl; member in struct:vmw_winsys_screen
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
SysCalls.c 1078 ioctl( function
    [all...]
  /external/libdrm/nouveau/
nouveau.c 46 #include "nvif/ioctl.h"
97 struct nvif_ioctl_v0 ioctl; member in struct:__anon28105
113 args->ioctl.version = 0;
114 args->ioctl.type = NVIF_IOCTL_V0_MTHD;
139 struct nvif_ioctl_v0 ioctl; member in struct:__anon28106
153 args->ioctl.version = 0;
154 args->ioctl.type = NVIF_IOCTL_V0_SCLASS;
214 struct nvif_ioctl_v0 ioctl; member in struct:__anon28107
217 .ioctl.type = NVIF_IOCTL_V0_DEL,
237 struct nvif_ioctl_v0 ioctl; member in struct:__anon28108
    [all...]
  /external/toybox/toys/net/
ifconfig.c 119 if (ioctl(TT.sockfd, SIOCGIFFLAGS, &ifre)<0) perror_exit_raw(name);
127 ioctl(TT.sockfd, SIOCGIFADDR, &ifre);
129 if (!ioctl(TT.sockfd, SIOCGIFNETMASK, &ifre))
159 ioctl(TT.sockfd, SIOCGIFADDR, &ifre);
167 int flag, ioctl; member in struct:__anon46479
181 if (addr[i].ioctl && ioctl(TT.sockfd, addr[i].ioctl, &ifre))
254 if (ioctl(TT.sockfd, SIOCGIFMTU, &ifre) < 0) ifre.ifr_mtu = 0;
256 if (ioctl(TT.sockfd, SIOCGIFMETRIC, &ifre) < 0) ifre.ifr_metric = 0
    [all...]
  /external/curl/lib/
curl_setup.h 300 # include <sys/socket.h> /* for select and ioctl*/
491 # include <sys/ioctl.h>
493 # define ioctl(x,y,z) ioctlsocket(x,y,(char *)(z)) macro
  /external/curl/tests/python_dependencies/impacket/
smb3.py 1126 def ioctl(self, treeId, fileId = None, ctlCode = -1, flags = 0, inputBlob = '', maxInputResponse = None, maxOutputResponse = None, waitAnswer = 1): member in class:SMB3
    [all...]
  /external/u-boot/include/linux/usb/
gadget.h 444 int (*ioctl)(struct usb_gadget *, member in struct:usb_gadget_ops
    [all...]
  /external/syzkaller/vendor/golang.org/x/sys/unix/
zsyscall_darwin_386.go 489 func ioctl(fd int, req uint, arg uintptr) (err error) { func
    [all...]
zsyscall_darwin_amd64.go 489 func ioctl(fd int, req uint, arg uintptr) (err error) { func
    [all...]
zsyscall_darwin_arm.go 489 func ioctl(fd int, req uint, arg uintptr) (err error) { func
    [all...]
zsyscall_darwin_arm64.go 489 func ioctl(fd int, req uint, arg uintptr) (err error) { func
    [all...]
zsyscall_dragonfly_amd64.go 443 func ioctl(fd int, req uint, arg uintptr) (err error) { func
    [all...]
zsyscall_freebsd_386.go 409 func ioctl(fd int, req uint, arg uintptr) (err error) { func
    [all...]
zsyscall_freebsd_amd64.go 409 func ioctl(fd int, req uint, arg uintptr) (err error) { func
    [all...]
zsyscall_freebsd_arm.go 409 func ioctl(fd int, req uint, arg uintptr) (err error) { func
    [all...]
zsyscall_linux_386.go 32 func ioctl(fd int, req uint, arg uintptr) (err error) { func
    [all...]
zsyscall_linux_arm.go 32 func ioctl(fd int, req uint, arg uintptr) (err error) { func
    [all...]
zsyscall_linux_arm64.go 32 func ioctl(fd int, req uint, arg uintptr) (err error) { func
    [all...]
zsyscall_linux_s390x.go 32 func ioctl(fd int, req uint, arg uintptr) (err error) { func
    [all...]
zsyscall_netbsd_386.go 426 func ioctl(fd int, req uint, arg uintptr) (err error) { func
    [all...]

Completed in 1423 milliseconds

1 2