Searched refs:lstat (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/main/native/
H A Dcanonicalize_path.cpp92 if (lstat(resolved.c_str(), &sb) == 0 && S_ISLNK(sb.st_mode)) {
H A Dlibcore_io_Posix.cpp561 int rc = isLstat ? TEMP_FAILURE_RETRY(lstat(path.c_str(), &sb))
564 throwErrnoException(env, isLstat ? "lstat" : "stat");
1916 NATIVE_METHOD(Posix, lstat, "(Ljava/lang/String;)Landroid/system/StructStat;"),
/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java166 @Override public StructStat lstat(String path) throws ErrnoException { method in class:BlockGuardOs
168 return os.lstat(path);
H A DOs.java102 public StructStat lstat(String path) throws ErrnoException; method in interface:Os
H A DForwardingOs.java110 public StructStat lstat(String path) throws ErrnoException { return os.lstat(path); } method in class:ForwardingOs
H A DPosix.java104 public native StructStat lstat(String path) throws ErrnoException; method in class:Posix
/libcore/luni/src/main/java/android/system/
H A DOs.java264 * See <a href="http://man7.org/linux/man-pages/man2/lstat.2.html">lstat(2)</a>.
266 public static StructStat lstat(String path) throws ErrnoException { return Libcore.os.lstat(path); } method in class:Os

Completed in 68 milliseconds