Home
last modified time | relevance | path

Searched refs:poll_next (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/fs/
H A Dasync_dir.rs555 fn poll_next(&mut self, cx: &mut Context<'_>) -> Poll<io::Result<Option<DirEntry>>> { in poll_next() method
613 poll_fn(|cx| self.poll_next(cx)).await in next()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/io/
H A Dread_task.rs401 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<Option<Vec<u8>>>> { in poll_next() function
417 poll_fn(|cx| Pin::new(&mut *self).poll_next(cx)).await in next()