Home
last modified time | relevance | path

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

/frameworks/av/media/mtp/
DMtpStorage.cpp63 struct statfs stat; in getMaxCapacity()
64 if (statfs(getPath(), &stat)) in getMaxCapacity()
72 struct statfs stat; in getFreeSpace()
73 if (statfs(getPath(), &stat)) in getFreeSpace()
/frameworks/base/services/core/java/com/android/server/
DDiskStatsService.java162 StatFs statfs = new StatFs(path.getPath()); in reportFreeSpace() local
163 long bsize = statfs.getBlockSize(); in reportFreeSpace()
164 long avail = statfs.getAvailableBlocks(); in reportFreeSpace()
165 long total = statfs.getBlockCount(); in reportFreeSpace()