Searched refs:handle_eintr_errno (Results 1 – 6 of 6) sorted by relevance
/external/crosvm/usb_util/src/ |
D | device.rs | 10 use base::{handle_eintr_errno, AsRawDescriptor, IoctlNr, RawDescriptor}; 72 let ret = handle_eintr_errno!(base::ioctl(&*self.fd, nr)); in ioctl() 80 let ret = handle_eintr_errno!(base::ioctl_with_ref(&*self.fd, nr, arg)); in ioctl_with_ref() 88 let ret = handle_eintr_errno!(base::ioctl_with_mut_ref(&*self.fd, nr, arg)); in ioctl_with_mut_ref() 96 let ret = handle_eintr_errno!(base::ioctl_with_mut_ptr(&*self.fd, nr, arg)); in ioctl_with_mut_ptr() 443 handle_eintr_errno!(base::ioctl_with_mut_ptr( in cancel()
|
/external/crosvm/sys_util/src/ |
D | rand.rs | 14 handle_eintr_errno, 54 let bytes = handle_eintr_errno!(unsafe { in rand_bytes()
|
D | handle_eintr.rs | 157 macro_rules! handle_eintr_errno { macro 221 let res = handle_eintr_errno!(dummy()); in i32_eintr_errno()
|
D | net.rs | 645 let ret = handle_eintr_errno!(libc::bind(fd, &addr as *const _ as *const _, len)); in bind() 649 let ret = handle_eintr_errno!(libc::listen(fd, 128)); in bind() 685 handle_eintr_errno!(libc::getsockname( in path()
|
D | poll.rs | 464 handle_eintr_errno!(epoll_wait( in wait_timeout()
|
D | signal.rs | 400 let ret = handle_eintr_errno!(unsafe { sigtimedwait(&sigset, null_mut(), &ts) }); in wait_for_signal()
|