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

/haiku/headers/build/host/darwin/
H A Dstdio.h10 int renameat(int oldFD, const char* oldPath, int newFD, const char* newPath);
11 int symlinkat(const char *oldPath, int fd, const char *newPath);
H A Dunistd.h13 int linkat(int oldFD, const char *oldPath, int newFD, const char *newPath,
/haiku/src/build/libroot/
H A Dfs_darwin.cpp338 renameat(int oldFD, const char* oldPath, int newFD, const char* newPath) argument
343 if (oldFD == AT_FDCWD || (oldPath != NULL && oldPath[0] == '/'))
351 return rename(oldPath, newPath);
362 if (get_path(oldFD, oldPath, oldFullPath) < 0)
378 return rename(ignoreOldFD ? oldPath : oldFullPath,
406 symlinkat(const char *oldPath, int fd, const char *newPath) argument
410 return symlink(oldPath, newPath);
424 return symlink(oldPath, newFullPath);
458 linkat(int oldFD, const char *oldPath, in argument
[all...]
H A Dfs.cpp1084 _kern_rename(int oldDir, const char *oldPath, int newDir, const char *newPath) argument
1088 status_t error = get_path(oldDir, oldPath, realOldPath);
/haiku/src/apps/codycam/
H A DFileUploadClient.cpp69 FileUploadClient::MoveFile(const string& oldPath, const string& newPath) argument
H A DSftpClient.h44 bool MoveFile(const string& oldPath,
H A DFileUploadClient.h38 virtual bool MoveFile(const string& oldPath,
H A DFtpClient.h50 bool MoveFile(const string& oldPath,
H A DSpawningUploadClient.h35 virtual bool MoveFile(const string& oldPath,
H A DSpawningUploadClient.cpp189 SpawningUploadClient::MoveFile(const string& oldPath, const string& newPath) argument
H A DSftpClient.cpp202 SftpClient::MoveFile(const string& oldPath, const string& newPath) argument
235 cmd << " " << oldPath.c_str() << " " << newPath.c_str() << "\n";
H A DFtpClient.cpp359 FtpClient::MoveFile(const string& oldPath, const string& newPath) argument
367 from += oldPath;
/haiku/src/servers/app/decorator/
H A DDecorManager.cpp250 BString oldPath = fCurrentDecorPath; local
271 fCurrentDecorPath = oldPath;
/haiku/src/tools/fs_shell/
H A Dsyscalls.h51 fssh_status_t _kern_rename(int oldFD, const char *oldPath, int newFD,
H A Dvfs.cpp5424 * \a oldPath and \a newPath must always be specified (they contain at least
5431 * \param oldPath The absolute or relative path of the old location. Must not
5441 _kern_rename(int oldFD, const char *oldPath, int newFD, const char *newPath) argument
5443 KPath oldPathBuffer(oldPath, false, FSSH_B_PATH_NAME_LENGTH + 1);
/haiku/src/kits/storage/
H A DPath.cpp516 const char* oldPath = fName; local
528 delete[] oldPath;
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A DFUSEVolume.cpp1303 char oldPath[B_PATH_NAME_LENGTH]; local
1305 status_t error = _BuildPath(node, oldPath, oldPathLen);
1318 fuseError = fuse_fs_link(fFS, oldPath, newPath);
1414 char oldPath[B_PATH_NAME_LENGTH]; local
1416 status_t error = _BuildPath(oldDir, oldName, oldPath, oldPathLen);
1429 fuseError = fuse_fs_rename(fFS, oldPath, newPath);
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DClientConnection.cpp1427 Path oldPath; local
1429 result = oldDirectory->GetPath(&oldPath);
1431 result = oldPath.Append(request->oldName.GetString());
1438 if (rename(oldPath.GetPath(), newPath.GetPath()) < 0)
/haiku/src/system/kernel/fs/
H A Dvfs.cpp8531 \a oldPath and \a newPath must always be specified (they contain at least
8538 \param oldPath The absolute or relative path of the old location. Must not
8547 _kern_rename(int oldFD, const char* oldPath, int newFD, const char* newPath) argument
8549 KPath oldPathBuffer(oldPath);
9464 char* oldPath = oldPathBuffer.LockBuffer(); local
9469 status_t status = user_copy_name(oldPath, userOldPath, B_PATH_NAME_LENGTH);
9476 return common_rename(oldFD, oldPath, newFD, newPath, false);

Completed in 1177 milliseconds