Home
last modified time | relevance | path

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

/bionic/libc/include/sys/
Dstatvfs.h46 struct statvfs { __STATVFS64_BODY }; struct
62 extern int statvfs(const char* __restrict, struct statvfs* __restrict) __nonnull((1, 2));
64 extern int fstatvfs(int, struct statvfs*) __nonnull((2));
/bionic/tests/
Dsys_statvfs_test.cpp35 TEST(sys_statvfs, statvfs) { in TEST() argument
36 struct statvfs sb; in TEST()
37 ASSERT_EQ(0, statvfs("/proc", &sb)); in TEST()
48 struct statvfs sb; in TEST()
/bionic/libc/bionic/
Dstatvfs.cpp33 static void __statfs_to_statvfs(const struct statfs& in, struct statvfs* out) { in __statfs_to_statvfs()
47 int statvfs(const char* path, struct statvfs* result) { in statvfs() function
56 __strong_alias(statvfs64, statvfs);
58 int fstatvfs(int fd, struct statvfs* result) { in fstatvfs()
Dgetentropy_linux.c419 struct statvfs stvfs; in getentropy_fallback()
483 HX(statvfs(".", &stvfs) == -1, stvfs); in getentropy_fallback()
487 HX(statvfs("/", &stvfs) == -1, stvfs); in getentropy_fallback()
/bionic/libc/
DAndroid.mk204 bionic/statvfs.cpp \