Home
last modified time | relevance | path

Searched defs:ioctl_with_ref (Results 1 – 6 of 6) sorted by relevance

/external/crosvm/base/src/
Dioctl.rs26 pub unsafe fn ioctl_with_ref<T>(descriptor: &dyn AsRawDescriptor, nr: IoctlNr, arg: &T) -> c_int { in ioctl_with_ref() function
/external/crosvm/base/src/windows/win/
Dioctl.rs181 pub unsafe fn ioctl_with_ref<T>(handle: &dyn AsRawDescriptor, nr: IoctlNr, arg: &T) -> c_int { in ioctl_with_ref() function
/external/crosvm/base/src/unix/
Dioctl.rs161 pub unsafe fn ioctl_with_ref<F: AsRawFd, T>(fd: &F, nr: IoctlNr, arg: &T) -> c_int { in ioctl_with_ref() function
/external/crosvm/common/sys_util/src/
Dioctl.rs161 pub unsafe fn ioctl_with_ref<F: AsRawFd, T>(fd: &F, nr: IoctlNr, arg: &T) -> c_int { in ioctl_with_ref() function
/external/crosvm/base/src/windows/
Dioctl.rs166 pub unsafe fn ioctl_with_ref<F: AsRawDescriptor, T>(descriptor: &F, nr: IoctlNr, arg: &T) -> c_int { in ioctl_with_ref() function
/external/crosvm/usb_util/src/
Ddevice.rs82 unsafe fn ioctl_with_ref<T>(&self, nr: IoctlNr, arg: &T) -> Result<i32> { in ioctl_with_ref() method