Searched refs:handle_eintr_errno (Results 1 – 6 of 6) sorted by relevance
/external/crosvm/usb_util/src/ |
D | device.rs | 17 use base::handle_eintr_errno; 94 let ret = handle_eintr_errno!(base::ioctl(&*self.fd, nr)); in ioctl() 102 let ret = handle_eintr_errno!(base::ioctl_with_ref(&*self.fd, nr, arg)); in ioctl_with_ref() 110 let ret = handle_eintr_errno!(base::ioctl_with_mut_ref(&*self.fd, nr, arg)); in ioctl_with_mut_ref() 118 let ret = handle_eintr_errno!(base::ioctl_with_mut_ptr(&*self.fd, nr, arg)); in ioctl_with_mut_ptr() 505 handle_eintr_errno!(base::ioctl_with_mut_ptr( in cancel()
|
/external/crosvm/base/src/sys/unix/ |
D | handle_eintr.rs | 157 macro_rules! handle_eintr_errno { macro 221 let res = handle_eintr_errno!(dummy()); in i32_eintr_errno()
|
D | timer.rs | 92 let ret = handle_eintr_errno!(unsafe { in wait()
|
D | net.rs | 712 let ret = handle_eintr_errno!(libc::bind( in bind() 720 let ret = handle_eintr_errno!(libc::listen(descriptor.as_raw_descriptor(), 128)); in bind() 801 handle_eintr_errno!(libc::getsockname( in path()
|
D | poll.rs | 230 handle_eintr_errno!(epoll_wait(
|
D | signal.rs | 399 let ret = handle_eintr_errno!(unsafe { sigtimedwait(&sigset, null_mut(), &ts) }); in wait_for_signal()
|