Home
last modified time | relevance | path

Searched refs:realpath (Results 1 – 8 of 8) sorted by relevance

/libcore/ojluni/src/main/native/
Dcanonicalize_md.c203 if (realpath(original, resolved)) { in canonicalize()
229 r = realpath(path, resolved); in canonicalize()
Djava_props_md.c343 realpath((char *)dlinfo.dli_fname, buf); in getEmbeddedToolkit()
/libcore/luni/src/main/java/libcore/io/
DBlockGuardOs.java239 @Override public String realpath(String path) throws ErrnoException { in realpath() method in BlockGuardOs
241 return os.realpath(path); in realpath()
DForwardingOs.java131 public String realpath(String path) throws ErrnoException { return os.realpath(path); } in realpath() method in ForwardingOs
DOs.java124 public String realpath(String path) throws ErrnoException; in realpath() method
DPosix.java173 public native String realpath(String path) throws ErrnoException; in realpath() method in Posix
/libcore/luni/src/test/java/libcore/io/
DOsTest.java549 String canonicalTmpDir = Libcore.os.realpath(tmpDir.getAbsolutePath()); in test_realpath()
553 Libcore.os.realpath(canonicalTmpDir + "/./../" + tmpDir.getName())); in test_realpath()
563 Libcore.os.realpath(canonicalTmpDir + "/link")); in test_realpath()
/libcore/luni/src/main/native/
Dlibcore_io_Posix.cpp1512 std::unique_ptr<char, c_deleter> real_path(realpath(path.c_str(), nullptr)); in Posix_realpath()
2039 NATIVE_METHOD(Posix, realpath, "(Ljava/lang/String;)Ljava/lang/String;"),