HomeSort by relevance Sort by last modified time
    Searched defs:fstat (Results 1 - 25 of 26) sorted by null

1 2

  /bionic/libc/arch-arm/syscalls/
fstat.S 6 ENTRY(fstat) function
15 END(fstat)
  /bionic/libc/arch-mips/syscalls/
fstat.S 4 .globl fstat
6 .ent fstat
8 fstat: label
22 .end fstat
  /bionic/libc/arch-x86/syscalls/
fstat.S 6 ENTRY(fstat) function
24 END(fstat)
  /development/ndk/sources/android/libportable/arch-mips/
stat.c 37 int WRAP(fstat)(int fd, struct stat_portable *s) function
46 ret = REAL(fstat)(fd, &mips_stat);
  /development/ndk/sources/android/libportable/arch-x86/
stat.c 29 int WRAP(fstat)(int fd, struct stat_portable *s) function
32 int ret = REAL(fstat)(fd, &x86_stat);
  /external/bison/lib/
fstat.c 0 /* fstat() replacement.
23 /* Get the original definition of fstat. It might be defined as a macro. */
29 # undef fstat /* avoid warning on mingw64 with _FILE_OFFSET_BITS=64 */ macro
30 # define fstat _fstati64 macro
37 return fstat (fd, buf);
  /external/e2fsprogs/include/nonunix/
unistd.h 21 #define fstat _fstat macro
  /external/tcpdump/
tcpdump-stdinc.h 64 #define fstat _fstat macro
  /external/bison/linux-lib/sys/
stat.h 647 # undef fstat
648 # define fstat rpl_fstat
650 _GL_FUNCDECL_RPL (fstat, int, (int fd, struct stat *buf) _GL_ARG_NONNULL ((2)));
651 _GL_CXXALIAS_RPL (fstat, int, (int fd, struct stat *buf));
653 _GL_CXXALIAS_SYS (fstat, int, (int fd, struct stat *buf));
655 _GL_CXXALIASWARN (fstat); variable
658 # define fstat _fstati64 macro
660 # undef fstat macro
662 _GL_WARN_ON_USE (fstat, "fstat has portability problems -
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include-fixed/X11/
Xw32defs.h 43 #define fstat _fstat macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xw32defs.h 34 #define fstat _fstat macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
stat.h 214 extern int fstat (int __fd, struct stat *__buf) __THROW __nonnull ((2));
220 extern int __REDIRECT_NTH (fstat, (int __fd, struct stat *__buf), fstat64)
224 # define fstat fstat64
467 __NTH (fstat (int __fd, struct stat *__statbuf))
465 __NTH (fstat (int __fd, struct stat *__statbuf)) function
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/X11/
Xw32defs.h 43 #define fstat _fstat macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xw32defs.h 34 #define fstat _fstat macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
stat.h 214 extern int fstat (int __fd, struct stat *__buf) __THROW __nonnull ((2));
220 extern int __REDIRECT_NTH (fstat, (int __fd, struct stat *__buf), fstat64)
224 # define fstat fstat64
467 __NTH (fstat (int __fd, struct stat *__statbuf))
465 __NTH (fstat (int __fd, struct stat *__statbuf)) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/X11/
Xw32defs.h 43 #define fstat _fstat macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xw32defs.h 34 #define fstat _fstat macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
stat.h 214 extern int fstat (int __fd, struct stat *__buf) __THROW __nonnull ((2));
220 extern int __REDIRECT_NTH (fstat, (int __fd, struct stat *__buf), fstat64)
224 # define fstat fstat64
467 __NTH (fstat (int __fd, struct stat *__statbuf))
465 __NTH (fstat (int __fd, struct stat *__statbuf)) function
  /external/bison/darwin-lib/sys/
stat.h 647 # undef fstat
648 # define fstat rpl_fstat
650 _GL_FUNCDECL_RPL (fstat, int, (int fd, struct stat *buf) _GL_ARG_NONNULL ((2)));
651 _GL_CXXALIAS_RPL (fstat, int, (int fd, struct stat *buf));
653 _GL_CXXALIAS_SYS (fstat, int, (int fd, struct stat *buf));
655 _GL_CXXALIASWARN (fstat); variable
658 # define fstat _fstati64 macro
660 # undef fstat macro
662 _GL_WARN_ON_USE (fstat, "fstat has portability problems -
    [all...]
  /external/valgrind/main/coregrind/
m_libcfile.c 56 return VG_(fstat)(fd, &st) == 0;
249 /* stat/fstat support. It's uggerly. We have impedance-match into a
304 Int VG_(fstat) ( Int fd, struct vg_stat* vgbuf ) function
341 Int res = VG_(fstat)( fd, &buf );
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Os.java 47 public StructStat fstat(FileDescriptor fd) throws ErrnoException; method in interface:Os
Posix.java 50 public native StructStat fstat(FileDescriptor fd) throws ErrnoException; method in class:Posix
ForwardingOs.java 56 public StructStat fstat(FileDescriptor fd) throws ErrnoException { return os.fstat(fd); } method in class:ForwardingOs
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
SFTPv3Client.java 376 public SFTPv3FileAttributes fstat(SFTPv3FileHandle handle) throws IOException method in class:SFTPv3Client
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 268 /// int fstat(int fildes, struct stat *buf);
269 fstat, enumerator in enum:llvm::LibFunc::Func

Completed in 1352 milliseconds

1 2