/external/openssh/openbsd-compat/ |
bsd-statvfs.c | 32 int fstatvfs(int fd, struct statvfs *buf) function
|
bsd-statvfs.h | 67 int fstatvfs(int, struct statvfs *);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/ |
statvfs.h | 74 extern int fstatvfs (int __fildes, struct statvfs *__buf) 78 extern int __REDIRECT_NTH (fstatvfs, (int __fildes, struct statvfs *__buf), 81 # define fstatvfs fstatvfs64 macro
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
statvfs.h | 74 extern int fstatvfs (int __fildes, struct statvfs *__buf) 78 extern int __REDIRECT_NTH (fstatvfs, (int __fildes, struct statvfs *__buf), 81 # define fstatvfs fstatvfs64 macro
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
statvfs.h | 74 extern int fstatvfs (int __fildes, struct statvfs *__buf) 78 extern int __REDIRECT_NTH (fstatvfs, (int __fildes, struct statvfs *__buf), 81 # define fstatvfs fstatvfs64 macro
|
/bionic/tests/ |
statvfs_test.cpp | 47 TEST(statvfs, fstatvfs) { 52 ASSERT_EQ(0, fstatvfs(fd, &sb)); 63 ASSERT_EQ(0, fstatvfs(fd, &sb));
|
/bionic/libc/include/sys/ |
statvfs.h | 51 extern int fstatvfs(int, struct statvfs*) __nonnull((2));
|
/bionic/libc/bionic/ |
statvfs.cpp | 54 int fstatvfs(int fd, struct statvfs* result) { function
|
/libcore/luni/src/main/java/libcore/io/ |
ForwardingOs.java | 57 public StructStatVfs fstatvfs(FileDescriptor fd) throws ErrnoException { return os.fstatvfs(fd); } method in class:ForwardingOs
|
Os.java | 48 public StructStatVfs fstatvfs(FileDescriptor fd) throws ErrnoException; method in interface:Os
|
Posix.java | 51 public native StructStatVfs fstatvfs(FileDescriptor fd) throws ErrnoException; method in class:Posix
|
/external/llvm/include/llvm/Target/ |
TargetLibraryInfo.h | 282 /// int fstatvfs(int fildes, struct statvfs *buf); 283 fstatvfs, enumerator in enum:llvm::LibFunc::Func
|
/external/llvm/lib/Target/ |
TargetLibraryInfo.cpp | 157 "fstatvfs", 488 TLI.setUnavailable(LibFunc::fstatvfs);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_posix.py | 128 if hasattr(posix, 'fstatvfs'): 131 self.assertTrue(posix.fstatvfs(fp.fileno()))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_posix.py | 128 if hasattr(posix, 'fstatvfs'): 131 self.assertTrue(posix.fstatvfs(fp.fileno()))
|
/libcore/luni/src/main/native/ |
libcore_io_Posix.cpp | 579 int rc = TEMP_FAILURE_RETRY(fstatvfs(fd, &sb)); 581 throwErrnoException(env, "fstatvfs"); [all...] |
/external/openssh/ |
sftp-server.c | 535 /* fstatvfs extension */ 536 buffer_put_cstring(&msg, "fstatvfs@openssh.com"); 1216 debug("request %u: fstatvfs \"%s\" (handle %u)", 1222 if (fstatvfs(fd, &st) != 0) 1261 else if (strcmp(request, "fstatvfs@openssh.com") == 0) [all...] |
configure | [all...] |
/external/llvm/lib/Transforms/IPO/ |
FunctionAttrs.cpp | [all...] |