Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dstatvfs.cpp24 extern "C" int __fstatfs(int, struct statfs*);
25 extern "C" int __statfs(const char*, struct statfs*);
29 extern "C" int __fstatfs64(int, size_t, struct statfs*);
30 extern "C" int __statfs64(const char*, size_t, struct statfs*);
37 static void __statfs_to_statvfs(const struct statfs& in, struct statvfs* out) { in __statfs_to_statvfs()
51 int fstatfs(int fd, struct statfs* result) { in fstatfs()
61 int statfs(const char* path, struct statfs* result) { in statfs() function
69 __strong_alias(statfs64, statfs);
72 struct statfs tmp; in statvfs()
73 int rc = statfs(path, &tmp); in statvfs()
[all …]
Dpathconf.cpp35 static long __filesizebits(const struct statfs& s) { in __filesizebits()
46 static long __link_max(const struct statfs& s) { in __link_max()
64 static long __2_symlinks(const struct statfs& s) { in __2_symlinks()
77 static long __pathconf(const struct statfs& s, int name) { in __pathconf()
143 struct statfs sb; in pathconf()
144 if (statfs(path, &sb) == -1) { in pathconf()
151 struct statfs sb; in fpathconf()
/bionic/tests/
Dsys_vfs_test.cpp41 TEST(sys_vfs, statfs) { in TEST() argument
42 struct statfs sb; in TEST()
43 ASSERT_EQ(0, statfs("/proc", &sb)); in TEST()
54 struct statfs sb; in TEST()
Dfcntl_test.cpp294 struct statfs sfs; in TEST()
Ddlext_test.cpp956 struct statfs st; in TEST()
/bionic/libc/include/sys/
Dvfs.h108 struct statfs { __STATFS64_BODY }; struct
140 int statfs(const char* __path, struct statfs* __buf);
142 int fstatfs(int __fd, struct statfs* __buf);
/bionic/libc/kernel/uapi/asm-mips/asm/
Dstatfs.h23 struct statfs { struct
/bionic/libc/kernel/uapi/asm-generic/
Dstatfs.h29 struct statfs { struct
/bionic/libc/
DSYSCALLS.TXT185 int __fstatfs64:fstatfs64(int, size_t, struct statfs*) lp32
186 int __fstatfs:fstatfs(int, struct statfs*) lp64
187 int __statfs64:statfs64(const char*, size_t, struct statfs*) lp32
188 int __statfs:statfs(const char*, struct statfs*) lp64
Dlibc.map.txt988 statfs;
/bionic/tools/versioner/platforms/
Dlibc.map.txt988 statfs;
/bionic/linker/
Dlinker.cpp1310 struct statfs fs_stat; in load_library()