HomeSort by relevance Sort by last modified time
    Searched refs:lstat (Results 126 - 150 of 393) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/python/cpython3/Lib/
macpath.py 128 # Is `stat`/`lstat` a meaningful difference on the Mac? This is safe in any
135 st = os.lstat(path)
ntpath.py 245 # This will always return false on systems where os.lstat doesn't exist.
252 st = os.lstat(path)
262 st = os.lstat(path)
  /external/selinux/policycoreutils/sestatus/
sestatus.c 451 if (lstat(fc[i], &m)) {
  /external/toybox/toys/other/
lsattr.c 175 if (lstat(*toys.optargs, &sb)) perror_msg("stat '%s'", *toys.optargs);
stat.c 196 else if (flagf || (L ? stat : lstat)(TT.file, (void *)&TT.stat)) {
  /external/toybox/toys/posix/
cpio.c 235 if (lstat(name, &st) || (S_ISREG(st.st_mode)
  /external/vboot_reference/cgpt/
cgpt_find.c 197 if (0 != lstat(tmpname, &statbuf))
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixFileAttributes.java 72 UnixNativeDispatcher.lstat(path, attrs);
  /prebuilts/go/darwin-x86/src/syscall/
syscall_linux_mips64x.go 149 //sys lstat(path string, st *stat_t) (err error)
159 func Lstat(path string, s *Stat_t) (err error) {
161 err = lstat(path, st)
  /prebuilts/go/linux-x86/src/syscall/
syscall_linux_mips64x.go 149 //sys lstat(path string, st *stat_t) (err error)
159 func Lstat(path string, s *Stat_t) (err error) {
161 err = lstat(path, st)
  /system/core/libcutils/
fs.cpp 52 if (TEMP_FAILURE_RETRY(lstat(path, &sb)) == -1) {
56 ALOGE("Failed to lstat(%s): %s", path, strerror(errno));
  /system/update_engine/common/
utils.cc 567 return 0 == lstat(path, &stbuf);
572 return lstat(path, &stbuf) == 0 && S_ISLNK(stbuf.st_mode) != 0;
714 if (lstat(mountpoint.c_str(), &stdir) != 0) {
723 if (lstat(parent.value().c_str(), &stparent) != 0) {
    [all...]
  /external/python/cpython3/Lib/test/
test_shutil.py 259 orig_lstat = os.lstat
265 os.lstat = raiser
271 os.lstat = orig_lstat
324 self.assertEqual(os.lstat(src_link).st_mode,
325 os.lstat(dst_link).st_mode)
369 src_link_stat = os.lstat(src_link)
376 dst_link_stat = os.lstat(dst_link)
521 self.assertEqual(os.lstat(src_link).st_mode,
522 os.lstat(dst).st_mode)
537 src_link_stat = os.lstat(src_link
    [all...]
  /external/autotest/client/site_tests/network_ShillInitScripts/
network_ShillInitScripts.py 229 self.assure(stat.S_ISDIR(os.lstat(path).st_mode),
241 self.assure(stat.S_ISLNK(os.lstat(path).st_mode),
  /external/strace/linux/ia64/
syscallent.h 142 [1121] = { 2, TF|TLST|TSTA, SEN(lstat), "lstat" },
232 [1211] = { 2, TF|TLST|TSTA, SEN(lstat), "lstat" },
  /external/strace/linux/sparc/
syscallent.h 41 [ 40] = { 2, TF|TLST|TSTA, SEN(lstat), "lstat" },
203 [202] = { 2, TF|TLST|TSTA, SEN(lstat), "oldlstat" },
  /external/strace/linux/sparc64/
syscallent.h 40 [ 40] = { 2, TF|TLST|TSTA, SEN(lstat), "lstat" },
201 [202] = { 2, TF|TLST|TSTA, SEN(lstat), "oldlstat" },
  /frameworks/native/cmds/rawbu/
backup.cpp 123 ret = lstat (nameBuffer, &statBuffer);
306 int ret = lstat(fullPath, &statBuffer);
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 190 @Override public StructStat lstat(String path) throws ErrnoException { method in class:BlockGuardOs
192 return os.lstat(path);
  /external/curl/docs/examples/
hiperfifo.c 388 if(lstat (fifo, &st) == 0) {
391 perror("lstat");
  /external/e2fsprogs/contrib/android/
perms.c 162 retval = lstat(src_filename, &stat);
165 _("while lstat file %s"), src_filename);
  /external/f2fs-tools/fsck/
sload.c 129 ret = lstat(de->full_path, &stat);
131 ERR_MSG("lstat failure\n");
  /external/ltp/testcases/kernel/controllers/cgroup_xattr/
cgroup_xattr.c 416 TEST(lstat(file, &stat_buf));
  /external/ltp/testcases/kernel/fs/mongo/
mongo.pl 331 $st = lstat ($_);
  /external/ltp/testcases/kernel/syscalls/symlink/
symlink01.c 54 * TEST IDENTIFIER : lstat01 (lstat)
152 * For lstat
215 #include <sys/stat.h> /* stat(2) and lstat(2) system calls */
258 #define LSTAT "lstat01"
287 "lstat(2) of symbolic link file which points to no object file is ok",
288 "lstat(2) of symbolic link file which points at an object file is ok",
309 "lstat(2) of object file returns object file inode information",
371 LSTAT, 0, 0, 8, creat_symlink, ck_symlink, {
373 LSTAT, 0, 0, 9, creat_both, ck_both, {
375 LSTAT, 0, 0, 30, creat_object, ck_object,
    [all...]

Completed in 707 milliseconds

1 2 3 4 56 7 8 91011>>