Searched refs:statvfs (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/base/
H A Dsys_info_posix.cc24 #define statvfs statfs // Android uses a statvfs-like statfs struct and call. macro
26 #include <sys/statvfs.h>
93 struct statvfs stats;
94 if (HANDLE_EINTR(statvfs(path.value().c_str(), &stats)) != 0)
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dfuse.h135 int (*statfs)(const char*, struct statvfs*);
/external/chromium_org/third_party/webrtc/base/
H A Dunixfilesystem.cc22 #include <sys/statvfs.h>
31 #include <sys/statvfs.h>
523 struct statvfs vfs;
525 if (0 != statvfs(existing_path.pathname().c_str(), &vfs))
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
H A Dprivate_api_file_system.cc7 #include <sys/statvfs.h>
56 struct statvfs stat = {}; // Zero-clear
57 if (HANDLE_EINTR(statvfs(mount_path.c_str(), &stat)) == 0) {
66 struct statvfs stat = {};
67 if (HANDLE_EINTR(statvfs(path.c_str(), &stat)) != 0) {
68 // The filesystem seems not supporting statvfs(). Assume it to be a commonly
70 LOG(ERROR) << "Cannot statvfs() the name length limit for: " << path;
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h317 /// int fstatvfs(int fildes, struct statvfs *buf);
553 /// int statvfs(const char *path, struct statvfs *buf);
554 statvfs, enumerator in enum:llvm::LibFunc::Func
/external/qemu/util/
H A Dosdep.c46 #include <sys/statvfs.h>
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_posix.cc80 # include <sys/statvfs.h>
129 #include <sys/statvfs.h>
234 unsigned struct_statvfs_sz = sizeof(struct statvfs);
H A Dsanitizer_common_interceptors.inc3098 INTERCEPTOR(int, statvfs, char *path, void *buf) {
3100 COMMON_INTERCEPTOR_ENTER(ctx, statvfs, path, buf);
3105 int res = REAL(statvfs)(path, buf);
3120 COMMON_INTERCEPT_FUNCTION(statvfs); \
/external/llvm/lib/Target/
H A DTargetLibraryInfo.cpp285 "statvfs",
571 TLI.setUnavailable(LibFunc::statvfs);
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc46 #include <sys/statvfs.h>
695 TEST(MemorySanitizer, statvfs) {
696 struct statvfs st;
697 int res = statvfs("/", &st);
706 struct statvfs st;
/external/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp951 case LibFunc::statvfs:
/external/sqlite/dist/orig/
H A Dsqlite3.c[all...]
/external/sqlite/dist/
H A Dsqlite3.c[all...]

Completed in 797 milliseconds