Home
last modified time | relevance | path

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

/external/libcxx/src/filesystem/
Doperations.cpp1167 struct statvfs m_svfs = {}; in __space() local
1168 if (::statvfs(p.c_str(), &m_svfs) == -1) { in __space()
1175 out = other * m_svfs.f_frsize; in __space()
1176 if (other == 0 || out / other != m_svfs.f_frsize) in __space()
1179 do_mult(si.capacity, m_svfs.f_blocks); in __space()
1180 do_mult(si.free, m_svfs.f_bfree); in __space()
1181 do_mult(si.available, m_svfs.f_bavail); in __space()