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

1 2

  /bionic/libc/bionic/
lstat.cpp 34 int lstat(const char* path, struct stat* sb) { function
37 __strong_alias(lstat64, lstat);
  /system/core/adb/sysdeps/
stat.h 43 // Windows doesn't have lstat.
44 #define lstat adb_stat macro
  /toolchain/binutils/binutils-2.25/libiberty/
unlink-if-ordinary.c 58 #define lstat stat macro
67 if (lstat (name, &st) == 0
  /toolchain/binutils/binutils-2.25/binutils/
rename.c 130 #define lstat stat macro
144 exists = lstat (to, &s) == 0;
  /external/protobuf/src/google/protobuf/testing/
file.cc 55 #define lstat stat macro
167 // lstat = Don't follow symbolic links.
169 if (lstat(name.c_str(), &stats) != 0) return;
  /prebuilts/go/darwin-x86/src/path/filepath/
path.go 345 var lstat = os.Lstat // for testing var
368 fileInfo, err := lstat(filename)
392 info, err := os.Lstat(root)
  /prebuilts/go/linux-x86/src/path/filepath/
path.go 345 var lstat = os.Lstat // for testing var
368 fileInfo, err := lstat(filename)
392 info, err := os.Lstat(root)
  /prebuilts/go/darwin-x86/src/os/
file.go 258 // lstat is overridden in tests.
259 var lstat = Lstat var
  /prebuilts/go/linux-x86/src/os/
file.go 258 // lstat is overridden in tests.
259 var lstat = Lstat var
  /build/libs/host/
CopyFile.c 31 # define lstat stat macro
203 * regular file, we fail. However, we use stat() rather than lstat(),
363 /* NOTE: we use lstat() here */
364 statResult = lstat(dst, &dstStat);
547 statResult = lstat(src, &srcStat);
  /external/bison/linux-lib/sys/
stat.h 767 /* mingw does not support symlinks, therefore it does not have lstat. But
770 # define lstat stat
772 _GL_CXXALIAS_RPL_1 (lstat, stat, int, (const char *name, struct stat *buf));
775 # undef lstat
776 # define lstat rpl_lstat
778 _GL_FUNCDECL_RPL (lstat, int, (const char *name, struct stat *buf)
780 _GL_CXXALIAS_RPL (lstat, int, (const char *name, struct stat *buf));
782 _GL_CXXALIAS_SYS (lstat, int, (const char *name, struct stat *buf));
785 _GL_CXXALIASWARN (lstat);
788 # undef lstat macro
    [all...]
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 167 @Override public StructStat lstat(String path) throws ErrnoException { method in class:BlockGuardOs
169 return os.lstat(path);
Os.java 102 public StructStat lstat(String path) throws ErrnoException; method in interface:Os
Posix.java 104 public native StructStat lstat(String path) throws ErrnoException; method in class:Posix
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xw32defs.h 8 # define lstat stat macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
stat.h 263 extern int lstat (__const char *__restrict __file,
267 extern int __REDIRECT_NTH (lstat,
272 # define lstat lstat64 macro
462 __NTH (lstat (__const char *__path, struct stat *__statbuf))
460 __NTH (lstat (__const char *__path, struct stat *__statbuf)) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xw32defs.h 8 # define lstat stat macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
stat.h 265 extern int lstat (__const char *__restrict __file,
269 extern int __REDIRECT_NTH (lstat,
274 # define lstat lstat64 macro
464 __NTH (lstat (__const char *__path, struct stat *__statbuf))
462 __NTH (lstat (__const char *__path, 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 265 extern int lstat (__const char *__restrict __file,
269 extern int __REDIRECT_NTH (lstat,
274 # define lstat lstat64 macro
464 __NTH (lstat (__const char *__path, struct stat *__statbuf))
462 __NTH (lstat (__const char *__path, struct stat *__statbuf)) function
  /external/bison/darwin-lib/sys/
stat.h 767 /* mingw does not support symlinks, therefore it does not have lstat. But
770 # define lstat stat
772 _GL_CXXALIAS_RPL_1 (lstat, stat, int, (const char *name, struct stat *buf));
775 # undef lstat
776 # define lstat rpl_lstat
778 _GL_FUNCDECL_RPL (lstat, int, (const char *name, struct stat *buf)
780 _GL_CXXALIAS_RPL (lstat, int, (const char *name, struct stat *buf));
782 _GL_CXXALIAS_SYS (lstat, int, (const char *name, struct stat *buf));
785 _GL_CXXALIASWARN (lstat);
788 # undef lstat macro
    [all...]
  /toolchain/binutils/binutils-2.25/include/gdb/
callback.h 94 int (*lstat) (host_callback *, const char *, struct stat *);
93 int (*lstat) (host_callback *, const char *, struct stat *); member in struct:host_callback_struct
  /external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
fake_filesystem.py 793 This is analogous to the stat/lstat difference. This resolves links *to*
1505 def lstat(self, entry_path): member in class:FakeOsModule
    [all...]
  /external/chromium-trace/catapult/third_party/pyfakefs/pyfakefs/
fake_filesystem.py 811 This is analogous to the stat/lstat difference. This resolves links *to*
1523 def lstat(self, entry_path): member in class:FakeOsModule
    [all...]
  /external/fio/os/windows/
posix.c 272 int lstat(const char * path, struct stat * buf) function
  /libcore/luni/src/main/java/android/system/
Os.java 270 * See <a href="http://man7.org/linux/man-pages/man2/lstat.2.html">lstat(2)</a>.
272 public static StructStat lstat(String path) throws ErrnoException { return Libcore.os.lstat(path); } method in class:Os

Completed in 499 milliseconds

1 2