Home
last modified time | relevance | path

Searched refs:flush_async (Results 1 – 5 of 5) sorted by relevance

/external/rust/android-crates-io/crates/memmap2/src/
Dstub.rs47 pub fn flush_async(&self, _: usize, _: usize) -> io::Result<()> { in flush_async() method
Dlib.rs910 pub fn flush_async(&self) -> Result<()> { in flush_async() method
912 self.inner.flush_async(0, len) in flush_async()
938 self.inner.flush_async(offset, len) in flush_async_range()
1183 pub fn flush_async(&self) -> Result<()> { in flush_async() method
1185 self.inner.flush_async(0, len) in flush_async()
1211 self.inner.flush_async(offset, len) in flush_async_range()
Dwindows.rs395 self.flush_async(offset, len)?; in flush()
407 pub fn flush_async(&self, offset: usize, len: usize) -> io::Result<()> { in flush_async() method
Dunix.rs316 pub fn flush_async(&self, offset: usize, len: usize) -> io::Result<()> { in flush_async() method
/external/rust/android-crates-io/crates/memmap2/
DCHANGELOG.md137 - `flush`, `flush_async`, `flush_range` and `flush_async_range` to `MmapRaw` matching
192 - Fix alignment computation for `flush_async` to match `flush`.