Home
last modified time | relevance | path

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

/external/libcxx/src/experimental/filesystem/
Doperations.cpp763 struct statvfs m_svfs = {}; in __space() local
764 if (::statvfs(p.c_str(), &m_svfs) == -1) { in __space()
773 out = other * m_svfs.f_frsize; in __space()
774 if (other == 0 || out / other != m_svfs.f_frsize) in __space()
777 do_mult(si.capacity, m_svfs.f_blocks); in __space()
778 do_mult(si.free, m_svfs.f_bfree); in __space()
779 do_mult(si.available, m_svfs.f_bavail); in __space()