Searched refs:GetPath (Results 1 - 25 of 182) sorted by relevance

12345678

/haiku/src/tools/
H A Drm_attrs.cpp35 const char* GetPath() const function in class:Path
92 DIR* dir = opendir(path.GetPath());
95 path.GetPath(), strerror(errno));
108 "entry: \"%s\"\n", path.GetPath(), entry->d_name);
121 path.GetPath(), strerror(errno));
134 if (lstat(path.GetPath(), &st) < 0) {
139 fprintf(stderr, "Error: Failed to remove \"%s\": %s\n", path.GetPath(),
147 if (__get_attribute_dir_path(&st, path.GetPath(),
156 fprintf(stderr, "Error: \"%s\" is a directory.\n", path.GetPath());
164 if (rmdir(path.GetPath()) <
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DPath.h17 const char* GetPath() const;
H A DEntry.cpp87 // GetPath
89 Entry::GetPath(Path* path) function in class:Entry
91 return VolumeManager::GetDefault()->GetPath(this, path);
H A DNode.cpp142 status_t error = GetPath(&path);
148 if (lstat(path.GetPath(), &st) < 0)
153 ERROR("Node::UpdateStat(): ERROR: GetPath() returned path that "
156 GetVolumeID(), GetID(), path.GetPath());
185 // GetPath
187 Node::GetPath(Path* path) function in class:Node
189 return VolumeManager::GetDefault()->GetPath(this, path);
269 status_t error = GetPath(&path);
274 ssize_t bytesRead = readlink(path.GetPath(), buffer, bufferSize);
H A DEntry.h33 status_t GetPath(Path* path);
H A DNode.h48 status_t GetPath(Path* path);
/haiku/headers/private/debugger/files/
H A DLocatableDirectory.h20 void GetPath(BString& _path) const;
H A DLocatableFile.h24 void GetPath(BString& _path) const;
/haiku/src/build/libroot/
H A DLocalFD.h25 return descriptor->GetPath(fPath);
H A Dfs_descriptors.h34 virtual status_t GetPath(string& path) const;
76 virtual status_t GetPath(string& path) const;
/haiku/src/kits/debugger/files/
H A DLocatableFile.cpp41 LocatableFile::GetPath(BString& _path) const function in class:LocatableFile
43 fParent->GetPath(_path);
H A DLocatableDirectory.cpp44 LocatableDirectory::GetPath(BString& _path) const function in class:LocatableDirectory
/haiku/src/apps/diskusage/
H A DSnapshot.h30 void GetPath(std::string& path) const;
/haiku/headers/private/storage/
H A DEntryOperationEngineBase.h43 status_t GetPath(BPath& buffer, const char*& _path)
H A DDiskDevice.h31 virtual status_t GetPath(BPath* path) const;
/haiku/src/kits/storage/
H A DEntryOperationEngineBase.cpp80 BEntryOperationEngineBase::Entry::GetPath(BPath& buffer, const char*& _path) function in class:BPrivate::BEntryOperationEngineBase::Entry
114 if (GetPath(pathBuffer, path) == B_OK)
127 status_t error = GetPath(buffer, path);
134 // GetPath() apparently failed, so just return the entry name.
152 if (error != B_OK || (error = entry.GetPath(&buffer)) != B_OK)
/haiku/src/apps/text_search/
H A DFileIterator.cpp32 if (entry.GetPath(&path) != B_OK)
/haiku/src/bin/
H A Ddiskimage.cpp68 printf("%s", device.GetPath(&path) == B_OK ? path.Path() : "???");
106 && device.GetPath(&path) == B_OK) {
171 || (device.GetPath(&path) == B_OK && lstat(path.Path(), &st) == 0
/haiku/headers/libs/print/libprint/
H A DPrinterData.h34 bool GetPath(string& path) const;
/haiku/headers/private/kernel/disk_device_manager/
H A DKDiskDevice.h68 virtual status_t GetPath(KPath *path) const;
/haiku/src/apps/bootmanager/
H A DBootDrive.cpp85 if (device.GetPath(&path) == B_OK && path == fPath)
/haiku/src/apps/debuganalyzer/util/
H A DDataSource.cpp109 error = entry.GetPath(&path);
/haiku/src/libs/print/libprint/
H A DPrinterData.cpp69 PrinterData::GetPath(string &path) const function in class:PrinterData
/haiku/src/servers/package/
H A DFSUtils.cpp197 status_t error = packageEntry.GetPath(packagePathBuffer, packagePath);
203 error = targetDirectoryEntry.GetPath(targetPathBuffer, targetPath);
232 status_t error = entry.GetPath(pathBuffer, path);
245 status_t error = entry.GetPath(pathBuffer, path);
/haiku/src/preferences/network/
H A DNetworkProfile.cpp96 if (fEntry.GetPath(&fPath) == B_OK)

Completed in 437 milliseconds

12345678