Searched refs:lstat (Results 1 – 7 of 7) sorted by relevance
92 if (lstat(resolved.c_str(), &sb) == 0 && S_ISLNK(sb.st_mode)) { in canonicalize_path()
671 int rc = isLstat ? TEMP_FAILURE_RETRY(lstat(path.c_str(), &sb)) in doStat()2021 NATIVE_METHOD(Posix, lstat, "(Ljava/lang/String;)Landroid/system/StructStat;"),
167 @Override public StructStat lstat(String path) throws ErrnoException { in lstat() method in BlockGuardOs169 return os.lstat(path); in lstat()
110 public StructStat lstat(String path) throws ErrnoException { return os.lstat(path); } in lstat() method in ForwardingOs
102 public StructStat lstat(String path) throws ErrnoException; in lstat() method
104 public native StructStat lstat(String path) throws ErrnoException; in lstat() method in Posix
272 …public static StructStat lstat(String path) throws ErrnoException { return Libcore.os.lstat(path);… in lstat() method in Os