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

1 2

  /external/syslinux/com32/lib/sys/
fstat.c 29 * fstat.c
31 * Very trivial fstat emulation
38 int fstat(int fd, struct stat *buf) function
  /device/linaro/bootloader/arm-trusted-firmware/tools/fiptool/
win_posix.h 135 inline int fstat(int fd, struct _stat *buffer) function
  /external/libjpeg-turbo/md5/
md5hl.c 19 #define fstat _fstat macro
78 if (fstat(f, &stbuf) < 0)
  /bionic/libc/arch-mips64/bionic/
stat.cpp 75 int fstat(int fp, struct stat* st) { function
81 __strong_alias(fstat64, fstat);
  /external/e2fsprogs/include/nonunix/
unistd.h 21 #define fstat _fstat macro
  /external/iproute2/ip/
ipvrf.c 149 struct stat fstat; local
179 if (lstat(path, &fstat) < 0)
182 if (S_ISDIR(fstat.st_mode)) {
  /external/libevent/sample/
http-server.c 54 #ifndef fstat
55 #define fstat _fstat macro
295 if (fstat(fd, &st)<0) {
298 perror("fstat");
  /external/tcpdump/
netdissect-stdinc.h 152 #define fstat _fstat macro
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixFileAttributes.java 80 UnixNativeDispatcher.fstat(fd, attrs);
UnixNativeDispatcher.java 309 * fstat(int filedes, struct stat* buf)
311 static native void fstat(int fd, UnixFileAttributes attrs) throws UnixException; method in class:UnixNativeDispatcher
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/
stat.h 175 int __cdecl fstat(int _Desc,struct stat *_Stat);
181 fstat(int _Desc,struct stat *_Stat) { function
211 fstat(int _Desc,struct stat *_Stat) { function
266 #define fstat _fstat32i64 macro
269 #define fstat _fstat64 macro
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
SysCalls.c 1010 fstat (int fd, struct stat *statbuf) function
    [all...]
  /external/ImageMagick/MagickCore/
nt-base.h 115 #if !defined(fstat) && !defined(__BORLANDC__)
119 # define fstat _fstati64 macro
121 # define fstat _fstat macro
  /external/curl/lib/
curl_setup.h 358 # undef fstat macro
359 # define fstat(fdes,stp) _fstati64(fdes, stp) macro
377 # define fstat(fdes,stp) _fstat(fdes, stp) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xw32defs.h 32 # define fstat _fstat macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
stat.h 216 extern int fstat (int __fd, struct stat *__buf) __THROW __nonnull ((2));
222 extern int __REDIRECT_NTH (fstat, (int __fd, struct stat *__buf), fstat64)
226 # define fstat fstat64
471 __NTH (fstat (int __fd, struct stat *__statbuf))
469 __NTH (fstat (int __fd, struct stat *__statbuf)) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
stat.h 216 extern int fstat (int __fd, struct stat *__buf) __THROW __nonnull ((2));
222 extern int __REDIRECT_NTH (fstat, (int __fd, struct stat *__buf), fstat64)
226 # define fstat fstat64
471 __NTH (fstat (int __fd, struct stat *__statbuf))
469 __NTH (fstat (int __fd, struct stat *__statbuf)) function
  /external/valgrind/coregrind/
m_libcfile.c 318 /* stat/fstat support. It's uggerly. We have impedance-match into a
395 Int VG_(fstat) ( Int fd, struct vg_stat* vgbuf ) function
446 Int res = VG_(fstat)( fd, &buf );
    [all...]
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 144 @Override public StructStat fstat(FileDescriptor fd) throws ErrnoException { method in class:BlockGuardOs
146 return os.fstat(fd);
402 // It's infeasible to figure out if splice will result in read or write (would require fstat to figure out which fd is pipe).
Linux.java 77 public native StructStat fstat(FileDescriptor fd) throws ErrnoException; method in class:Linux
Os.java 71 public StructStat fstat(FileDescriptor fd) throws ErrnoException; method in interface:Os
  /prebuilts/go/darwin-x86/src/syscall/
zsyscall_linux_mips64.go 1684 func fstat(fd int, st *stat_t) (err error) { func
    [all...]
zsyscall_linux_mips64le.go 1684 func fstat(fd int, st *stat_t) (err error) { func
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
zsyscall_linux_mips64.go 1684 func fstat(fd int, st *stat_t) (err error) { func
    [all...]
zsyscall_linux_mips64le.go 1684 func fstat(fd int, st *stat_t) (err error) { func
    [all...]

Completed in 1858 milliseconds

1 2