Searched refs:oldPath (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java156 @Override public void link(String oldPath, String newPath) throws ErrnoException { argument
158 os.link(oldPath, newPath);
258 @Override public void rename(String oldPath, String newPath) throws ErrnoException { argument
260 os.rename(oldPath, newPath);
301 @Override public void symlink(String oldPath, String newPath) throws ErrnoException { argument
303 os.symlink(oldPath, newPath);
H A DOs.java99 public void link(String oldPath, String newPath) throws ErrnoException; argument
129 public void rename(String oldPath, String newPath) throws ErrnoException; argument
159 public void symlink(String oldPath, String newPath) throws ErrnoException; argument
H A DForwardingOs.java107 public void link(String oldPath, String newPath) throws ErrnoException { os.link(oldPath, newPath); } argument
136 public void rename(String oldPath, String newPath) throws ErrnoException { os.rename(oldPath, newPath); } argument
166 public void symlink(String oldPath, String newPath) throws ErrnoException { os.symlink(oldPath, newPath); } argument
H A DPosix.java101 public native void link(String oldPath, String newPath) throws ErrnoException; argument
194 public native void rename(String oldPath, String newPath) throws ErrnoException; argument
243 public native void symlink(String oldPath, String newPath) throws ErrnoException; argument
/libcore/luni/src/main/java/android/system/
H A DOs.java251 public static void link(String oldPath, String newPath) throws ErrnoException { Libcore.os.link(oldPath, newPath); } argument
399 public static void rename(String oldPath, String newPath) throws ErrnoException { Libcore.os.rename(oldPath, newPath); } argument
515 public static void symlink(String oldPath, String newPath) throws ErrnoException { Libcore.os.symlink(oldPath, newPath); } argument
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp1155 ScopedUtfChars oldPath(env, javaOldPath);
1156 if (oldPath.c_str() == NULL) {
1163 throwIfMinusOne(env, "link", TEMP_FAILURE_RETRY(link(oldPath.c_str(), newPath.c_str())));
1467 ScopedUtfChars oldPath(env, javaOldPath);
1468 if (oldPath.c_str() == NULL) {
1475 throwIfMinusOne(env, "rename", TEMP_FAILURE_RETRY(rename(oldPath.c_str(), newPath.c_str())));
1778 ScopedUtfChars oldPath(env, javaOldPath);
1779 if (oldPath.c_str() == NULL) {
1786 throwIfMinusOne(env, "symlink", TEMP_FAILURE_RETRY(symlink(oldPath.c_str(), newPath.c_str())));

Completed in 81 milliseconds