/frameworks/compile/mclinker/lib/Support/ |
FileHandle.cpp | 68 if (-1 == ::fstat(pHandler, &file_stat)) {
|
/libcore/luni/src/main/java/android/system/ |
Os.java | 132 * See <a href="http://man7.org/linux/man-pages/man2/fstat.2.html">fstat(2)</a>. 134 public static StructStat fstat(FileDescriptor fd) throws ErrnoException { return Libcore.os.fstat(fd); } method in class:Os
|
/libcore/ojluni/src/main/native/ |
FileDispatcherImpl.c | 54 #define fstat64 fstat
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
StorageUtils.java | 103 dev = Os.fstat(fd).st_dev;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
SimpleHTTPServer.py | 93 fs = os.fstat(f.fileno())
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
SimpleHTTPServer.py | 93 fs = os.fstat(f.fileno())
|
/prebuilts/go/darwin-x86/src/syscall/ |
syscall_linux_arm.go | 85 //sys Fstat(fd int, stat *Stat_t) (err error) = SYS_FSTAT64
|
syscall_openbsd.go | 138 //sys Fstat(fd int, stat *Stat_t) (err error)
|
zsyscall_plan9_386.go | 265 func Fstat(fd int, edir []byte) (n int, err error) {
|
zsyscall_plan9_amd64.go | 265 func Fstat(fd int, edir []byte) (n int, err error) {
|
/prebuilts/go/linux-x86/src/syscall/ |
syscall_linux_arm.go | 85 //sys Fstat(fd int, stat *Stat_t) (err error) = SYS_FSTAT64
|
syscall_openbsd.go | 138 //sys Fstat(fd int, stat *Stat_t) (err error)
|
zsyscall_plan9_386.go | 265 func Fstat(fd int, edir []byte) (n int, err error) {
|
zsyscall_plan9_amd64.go | 265 func Fstat(fd int, edir []byte) (n int, err error) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
SimpleHTTPServer.py | 93 fs = os.fstat(f.fileno())
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
SimpleHTTPServer.py | 93 fs = os.fstat(f.fileno())
|
/system/extras/boot_control_copy/ |
boot_control_copy.c | 50 if (fstat(fd, &statbuf) != 0) {
|
/system/sepolicy/tools/ |
sepolicy-check.c | 199 if (fstat(fd, &sb) < 0) {
|
/bionic/libc/ |
SYSCALLS.TXT | 189 int fstat64|fstat:fstat64(int, struct stat*) arm,mips,x86 190 int fstat64|fstat:fstat(int, struct stat*) arm64,x86_64
|
/external/curl/lib/ |
curl_setup.h | 361 # undef fstat macro 362 # define fstat(fdes,stp) _fstati64(fdes, stp) macro 380 # define fstat(fdes,stp) _fstat(fdes, stp) macro
|
/external/llvm/include/llvm/Analysis/ |
TargetLibraryInfo.def | 570 /// int fstat(int fildes, struct stat *buf); 571 TLI_DEFINE_ENUM_INTERNAL(fstat) 572 TLI_DEFINE_STRING_INTERNAL("fstat") [all...] |
/external/selinux/policycoreutils/sandbox/ |
seunshare.c | 451 if (fstat(fd_s, &tmp_st) == -1) { 495 if (fstat(fd_t, &tmp_st) == -1) { 508 if (fstat(fd_t, out_st) == -1) {
|
/external/valgrind/memcheck/tests/solaris/ |
scalar_obsolete.stderr.exp | 106 Syscall param fstat(fildes) contains uninitialised byte(s) 109 Syscall param fstat(buf) contains uninitialised byte(s) 112 Syscall param fstat(buf) points to unaddressable byte(s)
|
/frameworks/base/libs/androidfw/ |
Asset.cpp | 142 * no value in incurring the extra overhead of an fstat() call. 144 // TODO(kroot): replace this with fstat despite the plea above. 154 if (fstat(fd, &st) < 0) {
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_posix.py | 214 if hasattr(posix, 'fstat'): 217 self.assertTrue(posix.fstat(fp.fileno())) 304 getattr(posix, 'fstat', None))
|