HomeSort by relevance Sort by last modified time
    Searched refs:Ioctl (Results 1 - 8 of 8) sorted by null

  /device/google/cuttlefish_common/common/libs/utils/
network.cpp 57 int err = tap_fd->Ioctl(TUNSETIFF, &ifr);
69 tap_fd->Ioctl(TUNSETOFFLOAD,
73 tap_fd->Ioctl(TUNSETVNETHDRSZ, &len);
  /device/google/cuttlefish_common/guest/vsoc/lib/
region_control.cpp 21 #include <sys/ioctl.h>
62 int rval = region_fd_->Ioctl(VSOC_SEND_INTERRUPT_TO_HOST, 0);
64 LOG(INFO) << __FUNCTION__ << ": ioctl failed (" << strerror(errno) << ")";
70 region_fd_->Ioctl(VSOC_SELF_INTERRUPT, 0);
74 region_fd_->Ioctl(VSOC_WAIT_FOR_INCOMING_INTERRUPT, 0);
78 return region_fd_->Ioctl(VSOC_COND_WAKE, reinterpret_cast<void*>(offset));
91 int rval = region_fd_->Ioctl(VSOC_COND_WAIT, &wait);
126 int retval = region_fd_->Ioctl(VSOC_CREATE_FD_SCOPED_PERMISSION, &perm);
162 if (fd->Ioctl(VSOC_DESCRIBE_REGION, &desc)) {
  /external/v4l2_codec2/vda/
v4l2_device.h 60 // Parameters and return value are the same as for the standard ioctl() system
62 int Ioctl(int request, void* arg);
v4l2_device.cc 12 #include <sys/ioctl.h>
137 int V4L2Device::Ioctl(int request, void* arg) {
139 return HANDLE_EINTR(ioctl(device_fd_.get(), request, arg));
248 if (Ioctl(VIDIOC_EXPBUF, &expbuf) != 0) {
290 for (; Ioctl(VIDIOC_ENUM_FRAMESIZES, &frame_size) == 0; ++frame_size.index) {
338 for (; Ioctl(VIDIOC_ENUM_FMT, &fmtdesc) == 0; ++fmtdesc.index) {
v4l2_video_decode_accelerator.cc 16 #include <sys/ioctl.h>
44 if (device_->Ioctl(type, arg) != 0) { \
45 VPLOGF(1) << "ioctl() failed: " << type_str; \
59 if (device_->Ioctl(type, arg) != 0) \
60 VPLOGF(1) << "ioctl() failed: " << #type; \
202 VLOGF(1) << "ioctl() failed: VIDIOC_QUERYCAP"
    [all...]
  /device/google/cuttlefish_common/common/libs/fs/
shared_fd.h 24 #include <sys/ioctl.h>
297 int Ioctl(int request, void* val = nullptr) {
299 int rval = TEMP_FAILURE_RETRY(ioctl(fd_, request, val));
  /external/syzkaller/vendor/golang.org/x/sys/unix/
syscall_darwin.go 305 //sys ioctl(fd int, req uint, arg uintptr) (err error)
307 // ioctl itself should not be exposed directly, but additional get/set
310 // IoctlSetInt performs an ioctl operation which sets an integer value
313 return ioctl(fd, req, uintptr(value))
317 return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
321 return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
324 // IoctlGetInt performs an ioctl operation which gets an integer value
328 err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
334 err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
340 err := ioctl(fd, req, uintptr(unsafe.Pointer(&value))
    [all...]
syscall_freebsd.go 356 //sys ioctl(fd int, req uint, arg uintptr) (err error)
358 // ioctl itself should not be exposed directly, but additional get/set
361 // IoctlSetInt performs an ioctl operation which sets an integer value
364 return ioctl(fd, req, uintptr(value))
368 return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
372 return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
375 // IoctlGetInt performs an ioctl operation which gets an integer value
379 err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
385 err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
391 err := ioctl(fd, req, uintptr(unsafe.Pointer(&value))
    [all...]

Completed in 383 milliseconds