Searched refs:rename (Results 1 - 14 of 14) sorted by path

/libcore/luni/src/main/java/android/system/
H A DOs.java403 * See <a href="http://man7.org/linux/man-pages/man2/rename.2.html">rename(2)</a>.
405 public static void rename(String oldPath, String newPath) throws ErrnoException { Libcore.os.rename(oldPath, newPath); } method in class:Os
/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java264 @Override public void rename(String oldPath, String newPath) throws ErrnoException { method in class:BlockGuardOs
266 os.rename(oldPath, newPath);
H A DForwardingOs.java137 public void rename(String oldPath, String newPath) throws ErrnoException { os.rename(oldPath, newPath); } method in class:ForwardingOs
H A DOs.java130 public void rename(String oldPath, String newPath) throws ErrnoException; method in interface:Os
H A DPosix.java195 public native void rename(String oldPath, String newPath) throws ErrnoException; method in class:Posix
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp1579 throwIfMinusOne(env, "rename", TEMP_FAILURE_RETRY(rename(oldPath.c_str(), newPath.c_str())));
2044 NATIVE_METHOD(Posix, rename, "(Ljava/lang/String;Ljava/lang/String;)V"),
/libcore/ojluni/src/main/java/java/io/
H A DFile.java1299 * that the rename operation was successful.
1326 return fs.rename(this, dest);
H A DFileSystem.java190 public abstract boolean rename(File f1, File f2); method in class:FileSystem
H A DUnixFileSystem.java313 public boolean rename(File f1, File f2) { method in class:UnixFileSystem
/libcore/ojluni/src/main/java/sun/net/ftp/
H A DFtpClient.java517 public abstract FtpClient rename(String from, String to) throws FtpProtocolException, IOException; method in class:FtpClient
/libcore/ojluni/src/main/java/sun/net/ftp/impl/
H A DFtpClient.java1399 public sun.net.ftp.FtpClient rename(String from, String to) throws sun.net.ftp.FtpProtocolException, IOException { method in class:FtpClient
/libcore/ojluni/src/main/native/
H A DUnixFileSystem_md.c383 if (rename(fromPath, toPath) == 0) {
/libcore/tzdata/update/src/main/libcore/tzdata/update/
H A DFileUtils.java121 public static void rename(File from, File to) throws IOException { method in class:FileUtils
124 throw new IOException("Unable to rename " + from + " to " + to);
H A DTzDataBundleInstaller.java70 FileUtils.rename(currentTzDataDir, oldTzDataDir);
73 FileUtils.rename(unpackedContentDir, currentTzDataDir);

Completed in 238 milliseconds