HomeSort by relevance Sort by last modified time
    Searched refs:lstat (Results 76 - 100 of 260) sorted by null

1 2 34 5 6 7 8 91011

  /external/e2fsprogs/lib/e2p/
fsetflags.c 76 if (!lstat(name, &buf) &&
  /external/fio/lib/
linux-dev-lookup.c 29 if (lstat(full_path, &st) == -1) {
30 perror("lstat");
  /external/google-breakpad/src/common/tests/
auto_tempdir.h 81 EXPECT_TRUE(lstat(entry_path.c_str(), &stats) == 0);
  /external/toybox/toys/other/
mountpoint.c 36 if (lstat(arg, &st1)) perror_exit("%s", arg);
  /external/toybox/toys/posix/
ln.c 40 if (((toys.optflags&FLAG_n) ? lstat : stat)(dest, &buf)
  /libcore/luni/src/main/native/
canonicalize_path.cpp 92 if (lstat(resolved.c_str(), &sb) == 0 && S_ISLNK(sb.st_mode)) {
  /system/core/adb/
adb_utils.cpp 42 return lstat(path.c_str(), &sb) != -1 && S_ISDIR(sb.st_mode);
  /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...]
  /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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixpath.py 137 # This will always return false on systems where os.lstat doesn't exist.
142 st = os.lstat(path)
152 os.lstat(path)
177 # Are two stat buffers (obtained from stat, fstat or lstat)
195 s1 = os.lstat(path)
196 s2 = os.lstat(join(path, '..'))
242 st = os.lstat(name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixpath.py 137 # This will always return false on systems where os.lstat doesn't exist.
142 st = os.lstat(path)
152 os.lstat(path)
177 # Are two stat buffers (obtained from stat, fstat or lstat)
195 s1 = os.lstat(path)
196 s2 = os.lstat(join(path, '..'))
242 st = os.lstat(name)
  /external/openssh/openbsd-compat/
getcwd.c 109 if (lstat(up, &s))
176 if (lstat(up, &s)) {
mktemp.c 78 if (lstat(path, &sb) != 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;
  /development/ndk/platforms/android-21/arch-p/include/sys/
stat.h 85 extern int lstat(const char*, struct stat*);
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
UnixStream.cpp 62 ret = ::lstat(tmp, &st);
  /external/selinux/libselinux/src/
selinuxswig_python.i 21 mode = os.lstat(path)[stat.ST_MODE]
25 mode = os.lstat(path)[stat.ST_MODE]
  /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.15-4.8/sysroot/usr/include/X11/
Xw32defs.h 8 # define lstat stat macro
  /external/squashfs-tools/squashfs-tools/
sort.c 121 if(lstat(path, &buf) == -1)
135 res = lstat(filename, &buf);
146 if(n == 0 && mkisofs_style == -1 && lstat(path, &buf) != -1) {
  /external/e2fsprogs/util/
symlinks.c 202 lstat(abspath, &lstbuf); /* if the above didn't fail, then this shouldn't */
288 if (lstat(path, &st) == -1) {
375 if (lstat(path, &st) == -1)
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
mktemp.c 92 if (lstat(path, &sb) != 0)
  /bootable/recovery/minzip/
DirUtil.c 191 if (lstat(path, &st) < 0) {
  /build/libs/host/
CopyFile.c 33 # define lstat stat macro
202 * regular file, we fail. However, we use stat() rather than lstat(),
361 /* NOTE: we use lstat() here */
362 statResult = lstat(dst, &dstStat);
544 statResult = lstat(src, &srcStat);
580 statResult = lstat(srcExe, &srcStat);
  /development/ndk/platforms/android-21/include/sys/
stat.h 154 extern int lstat(const char*, struct stat*);

Completed in 2041 milliseconds

1 2 34 5 6 7 8 91011