Home
last modified time | relevance | path

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

/external/libcxx/src/experimental/filesystem/
Doperations.cpp853 struct statvfs m_svfs = {}; in __space() local
854 if (::statvfs(p.c_str(), &m_svfs) == -1) { in __space()
863 out = other * m_svfs.f_frsize; in __space()
864 if (other == 0 || out / other != m_svfs.f_frsize) in __space()
867 do_mult(si.capacity, m_svfs.f_blocks); in __space()
868 do_mult(si.free, m_svfs.f_bfree); in __space()
869 do_mult(si.available, m_svfs.f_bavail); in __space()