Lines Matching refs:error
87 /// `AioCb::error`
160 fn error(self: Pin<&mut Self>) -> Result<()> {
203 /// Otherwise, dropping constitutes a resource leak, which is an error
219 /// Should only be called once for each operation, after [`Aio::error`]
261 /// while (aiocb.as_mut().error() == Err(Errno::EINPROGRESS)) {
274 /// Retrieve error status of an asynchronous operation.
277 /// returns `Ok` or any other error.
281 /// Issue an aio operation and use `error` to poll for completion. Polling
300 /// while (aiocb.as_mut().error() == Err(Errno::EINPROGRESS)) {
309 fn error(self: Pin<&mut Self>) -> Result<()>;
335 /// while (aiof.as_mut().error() == Err(Errno::EINPROGRESS)) {
366 fn error(self: Pin<&mut Self>) -> Result<()> {
367 self.aiocb().error()
425 /// while (aiof.as_mut().error() == Err(Errno::EINPROGRESS)) {
536 /// while (aior.as_mut().error() == Err(Errno::EINPROGRESS)) {
655 /// while (aior.as_mut().error() == Err(Errno::EINPROGRESS)) {
770 /// while (aiow.as_mut().error() == Err(Errno::EINPROGRESS)) {
887 /// while (aiow.as_mut().error() == Err(Errno::EINPROGRESS)) {
1001 /// while (aiocb.as_mut().error() == Err(Errno::EINPROGRESS)) {
1073 /// this case, there is no need to use aio_suspend to wait or `error` to poll.
1120 /// while (aiow.as_mut().error() == Err(Errno::EINPROGRESS)) {