Searched refs:oldName (Results 1 - 25 of 51) sorted by path

123

/haiku/headers/os/storage/
H A DNode.h65 status_t RenameAttr(const char* oldName,
/haiku/headers/private/kernel/fs/
H A Ddevfs.h24 status_t devfs_rename_partition(const char* devicePath, const char* oldName,
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DIndex.cpp299 Index::UpdateName(Transaction& transaction, const char* oldName, argument
304 uint16 oldLength = oldName != NULL ? strlen(oldName) : 0;
306 return Update(transaction, "name", B_STRING_TYPE, (uint8*)oldName,
H A DIndex.h42 const char* oldName, const char* newName,
H A DQuery.h60 ino_t oldDirectoryID, const char* oldName,
H A DVolume.h135 ino_t oldDirectoryID, const char* oldName,
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DShareVolume.cpp1020 ShareVolume::Rename(Node* _oldDir, const char* oldName, Node* _newDir, argument
1041 request.oldName.SetTo(oldName);
1848 ShareVolume::RenameAttr(Node* _node, const char* oldName, const char* newName) argument
1873 request.oldName.SetTo(oldName);
2265 const char* oldName = request->fromName.GetString(); local
2280 _EntryMoved(request->fromDirectoryID, oldName, request->toDirectoryID,
2876 ShareVolume::_EntryMoved(NodeID remoteOldDirID, const char* oldName, argument
2882 _EntryRemoved(remoteOldDirID, oldName, revisio
[all...]
H A DShareVolume.h97 virtual status_t Rename(Node* oldDir, const char* oldName,
131 const char* oldName, const char* newName);
211 const char* oldName, NodeID remoteNewDirID,
H A DVirtualVolume.cpp498 VirtualVolume::Rename(Node* oldDir, const char* oldName, Node* newDir, argument
729 VirtualVolume::RenameAttr(Node* node, const char* oldName, const char* newName) argument
H A DVirtualVolume.h77 virtual status_t Rename(Node* oldDir, const char* oldName,
111 const char* oldName, const char* newName);
H A DVolume.cpp379 Volume::Rename(Node* oldDir, const char* oldName, Node* newDir, argument
512 Volume::RenameAttr(Node* node, const char* oldName, const char* newName) argument
H A DVolume.h111 virtual status_t Rename(Node* oldDir, const char* oldName,
145 const char* oldName, const char* newName);
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DRequests.h723 visitor->Visit(this, oldName);
729 StringData oldName; member in struct:RenameRequest
1103 visitor->Visit(this, oldName);
1108 StringData oldName; member in struct:RenameAttrRequest
/haiku/src/add-ons/kernel/file_systems/packagefs/indices/
H A DNameIndex.cpp232 NameIndex::_UpdateLiveQueries(Node* entry, const char* oldName, argument
236 oldName, oldName ? strlen(oldName) : 0,
H A DNameIndex.h44 const char* oldName, const char* newName);
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DKernelRequestHandler.cpp149 char* oldName = (char*)request->oldName.GetData(); local
150 int32 oldNameLen = request->oldName.GetSize();
151 if (oldName && (oldNameLen <= 0))
152 oldName = NULL;
153 else if (oldName)
154 oldName[oldNameLen - 1] = '\0'; // NULL-terminate to be safe
160 if (!oldName) {
161 ERROR(("NotifyListenerRequest: NULL oldName for "
203 request->device, request->oldDirectory, oldName,
[all...]
H A DVolume.h131 status_t Rename(void* oldDir, const char* oldName,
195 const char* oldName, void* newNode,
/haiku/src/add-ons/kernel/file_systems/userlandfs/private/
H A DRequests.cpp141 ADD_NON_NULL_STRING(oldName);
230 ADD_NON_NULL_STRING(oldName);
295 ADD_STRING(oldName);
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/
H A DVolume.cpp299 Volume::Rename(void* oldDir, const char* oldName, void* newDir, argument
536 Volume::RenameAttr(void* oldNode, const char* oldName, void* newNode, argument
H A DVolume.h92 virtual status_t Rename(void* oldDir, const char* oldName,
156 const char* oldName, void* newNode,
H A Dkernel_emu.cpp132 ino_t node, const char* oldName, const char* name)
154 error = allocator.AllocateString(request->oldName, oldName);
130 notify_listener(int32 operation, uint32 details, dev_t device, ino_t oldDirectory, ino_t directory, ino_t node, const char* oldName, const char* name) argument
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/beos/
H A DBeOSKernelVolume.cpp321 BeOSKernelVolume::Rename(void* oldDir, const char* oldName, void* newDir, argument
326 return fFSOps->rename(fVolumeCookie, oldDir, oldName, newDir, newName);
665 BeOSKernelVolume::RenameAttr(void* oldNode, const char* oldName, argument
673 return fFSOps->rename_attr(fVolumeCookie, oldNode, oldName, newName);
H A DBeOSKernelVolume.h66 virtual status_t Rename(void* oldDir, const char* oldName,
128 const char* oldName, void* newNode,
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/haiku/
H A DHaikuKernelVolume.cpp610 HaikuKernelVolume::Rename(void* _oldDir, const char* oldName, void* _newDir, argument
618 return oldDir->ops->rename(&fVolume, oldDir, oldName, newDir, newName);
995 HaikuKernelVolume::RenameAttr(void* _oldNode, const char* oldName, argument
1003 return oldNode->ops->rename_attr(&fVolume, oldNode, oldName, newNode,
H A DHaikuKernelVolume.h99 virtual status_t Rename(void* oldDir, const char* oldName,
163 const char* oldName, void* newNode,

Completed in 145 milliseconds

123