We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The implementation of size() looks like this:
fn size(&self) -> raw::off_t { self.as_raw_stat().st_size as raw::off_t }
The field st_size has type c_longlong, and the type raw::off_t has type i32 on 32-bit Android. The combination doesn't work well.
st_size
c_longlong
raw::off_t
i32