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 DForwardingOs.java103 public void link(String oldPath, String newPath) throws ErrnoException { os.link(oldPath, newPath); } argument
131 public void rename(String oldPath, String newPath) throws ErrnoException { os.rename(oldPath, newPath); } argument
156 public void symlink(String oldPath, String newPath) throws ErrnoException { os.symlink(oldPath, newPath); } argument
H A DOs.java95 public void link(String oldPath, String newPath) throws ErrnoException; argument
124 public void rename(String oldPath, String newPath) throws ErrnoException; argument
149 public void symlink(String oldPath, String newPath) throws ErrnoException; argument
H A DPosix.java97 public native void link(String oldPath, String newPath) throws ErrnoException; argument
189 public native void rename(String oldPath, String newPath) throws ErrnoException; argument
230 public native void symlink(String oldPath, String newPath) throws ErrnoException; argument
/libcore/luni/src/main/java/android/system/
H A DOs.java240 public static void link(String oldPath, String newPath) throws ErrnoException { Libcore.os.link(oldPath, newPath); } argument
380 public static void rename(String oldPath, String newPath) throws ErrnoException { Libcore.os.rename(oldPath, newPath); } argument
474 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.cpp949 ScopedUtfChars oldPath(env, javaOldPath);
950 if (oldPath.c_str() == NULL) {
957 throwIfMinusOne(env, "link", TEMP_FAILURE_RETRY(link(oldPath.c_str(), newPath.c_str())));
1204 ScopedUtfChars oldPath(env, javaOldPath);
1205 if (oldPath.c_str() == NULL) {
1212 throwIfMinusOne(env, "rename", TEMP_FAILURE_RETRY(rename(oldPath.c_str(), newPath.c_str())));
1457 ScopedUtfChars oldPath(env, javaOldPath);
1458 if (oldPath.c_str() == NULL) {
1465 throwIfMinusOne(env, "symlink", TEMP_FAILURE_RETRY(symlink(oldPath.c_str(), newPath.c_str())));

Completed in 178 milliseconds