headers/build/os/storage/Entry.h
65
status_t GetPath(BPath *path) const;
headers/libs/print/libprint/PrinterData.h
34
bool GetPath(string& path) const;
headers/os/storage/Entry.h
65
status_t GetPath(BPath* path) const;
headers/private/debugger/files/LocatableDirectory.h
20
void GetPath(BString& _path) const;
headers/private/debugger/files/LocatableFile.h
24
void GetPath(BString& _path) const;
headers/private/kernel/disk_device_manager/KDiskDevice.h
63
virtual status_t GetPath(KPath *path) const;
headers/private/kernel/disk_device_manager/KPartition.h
120
virtual status_t GetPath(KPath *path) const;
headers/private/storage/DiskDevice.h
31
virtual status_t GetPath(BPath* path) const;
headers/private/storage/EntryOperationEngineBase.h
43
status_t GetPath(BPath& buffer, const char*& _path)
headers/private/storage/Partition.h
66
virtual status_t GetPath(BPath* path) const;
src/add-ons/input_server/devices/keyboard/KeyboardInputDevice.cpp
771
entry.GetPath(&path);
src/add-ons/input_server/devices/mouse/MouseInputDevice.cpp
822
entry.GetPath(&path);
src/add-ons/input_server/devices/tablet/TabletInputDevice.cpp
519
entry.GetPath(&path);
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
1143
result = node->GetPath(&targetPath);
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
1166
result = directory->GetPath(&path);
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
1175
if (link(targetPath.GetPath(), path.GetPath()) < 0)
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
1224
result = directory->GetPath(&path);
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
1233
if (unlink(path.GetPath()) < 0)
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
1282
result = directory->GetPath(&path);
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
1291
if (symlink(request->target.GetString(), path.GetPath()) < 0)
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
1403
result = newDirectory->GetPath(&newPath);
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
1429
result = oldDirectory->GetPath(&oldPath);
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
1438
if (rename(oldPath.GetPath(), newPath.GetPath()) < 0)
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
1487
result = directory->GetPath(&path);
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
1496
if (mkdir(path.GetPath(), request->mode) < 0)
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
1545
result = directory->GetPath(&path);
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
1554
if (rmdir(path.GetPath()) < 0)
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
707
result = node->GetPath(&path);
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
713
if (truncate(path.GetPath(), request->nodeInfo.st.st_size) < 0)
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
718
if (chmod(path.GetPath(), request->nodeInfo.st.st_mode) < 0)
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
730
if (utime(path.GetPath(), &buffer) < 0)
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
792
result = directory->GetPath(&path);
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
800
result = FDManager::Open(path.GetPath(),
src/add-ons/kernel/file_systems/netfs/server/Directory.cpp
155
status_t error = directory->GetPath(&path);
src/add-ons/kernel/file_systems/netfs/server/Directory.cpp
160
error = FDManager::OpenDir(path.GetPath(), fDirHandle);
src/add-ons/kernel/file_systems/netfs/server/Entry.cpp
91
return VolumeManager::GetDefault()->GetPath(this, path);
src/add-ons/kernel/file_systems/netfs/server/Entry.h
33
status_t GetPath(Path* path);
src/add-ons/kernel/file_systems/netfs/server/NetFSServer.cpp
575
->GetNodePermissions(share->GetPath(), user);
src/add-ons/kernel/file_systems/netfs/server/NetFSServer.cpp
667
fSecurityContext->ClearNodePermissions(share->GetPath(), user);
src/add-ons/kernel/file_systems/netfs/server/NetFSServer.cpp
669
error = fSecurityContext->SetNodePermissions(share->GetPath(),
src/add-ons/kernel/file_systems/netfs/server/NetFSServer.cpp
712
share->GetPath(), user);
src/add-ons/kernel/file_systems/netfs/server/NetFSServer.cpp
879
error = securityContext->SetNodePermissions(share->GetPath(), user,
src/add-ons/kernel/file_systems/netfs/server/Node.cpp
142
status_t error = GetPath(&path);
src/add-ons/kernel/file_systems/netfs/server/Node.cpp
148
if (lstat(path.GetPath(), &st) < 0)
src/add-ons/kernel/file_systems/netfs/server/Node.cpp
156
GetVolumeID(), GetID(), path.GetPath());
src/add-ons/kernel/file_systems/netfs/server/Node.cpp
189
return VolumeManager::GetDefault()->GetPath(this, path);
src/add-ons/kernel/file_systems/netfs/server/Node.cpp
269
status_t error = GetPath(&path);
src/add-ons/kernel/file_systems/netfs/server/Node.cpp
274
ssize_t bytesRead = readlink(path.GetPath(), buffer, bufferSize);
src/add-ons/kernel/file_systems/netfs/server/Node.h
48
status_t GetPath(Path* path);
src/add-ons/kernel/file_systems/netfs/server/NodeHandle.cpp
106
status_t error = node->GetPath(&path);
src/add-ons/kernel/file_systems/netfs/server/NodeHandle.cpp
111
error = FDManager::Open(path.GetPath(), openMode | O_NOTRAVERSE, 0, fFD);
src/add-ons/kernel/file_systems/netfs/server/NodeHandle.cpp
277
status_t error = node->GetPath(&path);
src/add-ons/kernel/file_systems/netfs/server/NodeHandle.cpp
282
error = FDManager::OpenAttrDir(path.GetPath(), fDir);
src/add-ons/kernel/file_systems/netfs/server/Path.h
17
const char* GetPath() const;
src/add-ons/kernel/file_systems/netfs/server/SecurityContext.cpp
422
error = AddShare(tmpShare.GetName(), tmpShare.GetPath());
src/add-ons/kernel/file_systems/netfs/server/SecurityContext.cpp
924
error = shares->AddString("paths", share->GetPath());
src/add-ons/kernel/file_systems/netfs/server/SecurityContext.h
65
const char* GetPath() const;
src/add-ons/kernel/file_systems/netfs/server/VolumeManager.cpp
912
status_t error = GetPath(entry->GetDirectory(), path);
src/add-ons/kernel/file_systems/netfs/server/VolumeManager.cpp
941
return GetPath(entry, path);
src/add-ons/kernel/file_systems/netfs/server/VolumeManager.h
76
status_t GetPath(Entry* entry, Path* path);
src/add-ons/kernel/file_systems/netfs/server/VolumeManager.h
77
status_t GetPath(Node* node, Path* path);
src/add-ons/media/media-add-ons/dvb/DVBMediaNode.cpp
2704
if (B_OK != e.GetPath(&p))
src/add-ons/media/media-add-ons/dvb/DVBMediaNode.cpp
2730
if (B_OK != e.GetPath(&p))
src/add-ons/media/media-add-ons/esound_sink/ESDSinkAddOn.cpp
248
entry.GetPath(&path);
src/add-ons/media/media-add-ons/multi_audio/MultiAudioAddOn.cpp
199
entry.GetPath(&path);
src/add-ons/media/media-add-ons/opensound/OpenSoundAddOn.cpp
363
entry.GetPath(&path);
src/add-ons/media/media-add-ons/radeon/RadeonAddOn.cpp
404
entry.GetPath(&path);
src/add-ons/media/media-add-ons/usb_vision/TunerLocale.cpp
39
if((fStatus = entry.GetPath(&path)) == B_OK){
src/add-ons/network_settings/dialup/DialUpView.cpp
684
entry.GetPath(&path);
src/add-ons/tracker/openterminal/OpenTerminal.cpp
23
if (targetEntry.GetPath(&targetPath) != B_OK)
src/add-ons/tracker/zipomatic/ZipperThread.cpp
101
entry.GetPath(&path);
src/add-ons/tracker/zipomatic/ZipperThread.cpp
107
entry.GetPath(&path);
src/apps/bootmanager/BootDrive.cpp
85
if (device.GetPath(&path) == B_OK && path == fPath)
src/apps/bootmanager/DrivesPage.cpp
70
device.GetPath(&fPath);
src/apps/bootmanager/FileSelectionPage.cpp
198
if (entry.GetPath(&path) == B_OK)
src/apps/bootmanager/LegacyBootMenu.cpp
246
partition->GetPath(&partitionPath);
src/apps/bootmanager/LegacyBootMenu.cpp
351
status_t status = device.GetPath(&path);
src/apps/cortex/MediaRoutingView/MediaRoutingView.cpp
1111
m_backgroundBitmapEntry.GetPath(&path);
src/apps/cortex/RouteApp/DormantNodeIO.cpp
161
m_entry.GetPath(&p);
src/apps/cortex/RouteApp/DormantNodeIO.cpp
392
m_entry.GetPath(&p) == B_OK)
src/apps/debuganalyzer/util/DataSource.cpp
109
error = entry.GetPath(&path);
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
326
sourceFile->GetPath(sourcePath);
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
519
currentFile->GetPath(sourcePath);
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1725
sourceFile->GetPath(sourceText);
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1963
->GetPath(path);
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1993
sourceFile->GetPath(sourcePath);
src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp
3051
TypeComponentPath* componentPath = node->GetPath();
src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp
3096
TypeComponentPath* componentPath = node->GetPath();
src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp
314
*fComponentPath = *fParent->GetPath();
src/apps/deskbar/DeskbarUtils.cpp
102
entry.GetPath(&path);
src/apps/deskbar/StatusView.cpp
650
status_t status = entry->GetPath(&path);
src/apps/diskprobe/OpenWindow.cpp
147
if (entry.GetPath(&path) != B_OK)
src/apps/diskusage/ControlsView.cpp
280
entry.GetPath(&path);
src/apps/diskusage/InfoWindow.cpp
115
f->GetPath(path);
src/apps/diskusage/Scanner.cpp
81
fSnapshot->currentDir->GetPath(fDesiredPath);
src/apps/diskusage/Snapshot.h
30
void GetPath(std::string& path) const;
src/apps/diskusage/StatusView.cpp
145
info->GetPath(path);
src/apps/drivesetup/DiskView.cpp
278
partition->GetPath(&path);
src/apps/drivesetup/MainWindow.cpp
525
if (entry.GetPath(&path) == B_OK) {
src/apps/drivesetup/MainWindow.cpp
547
fCurrentDisk->GetPath(&path);
src/apps/drivesetup/MainWindow.cpp
557
if (entry.GetPath(&path) == B_OK) {
src/apps/drivesetup/MainWindow.cpp
614
entry.GetPath(&path);
src/apps/drivesetup/MainWindow.cpp
665
if (entry.GetPath(&path) == B_OK)
src/apps/drivesetup/MainWindow.cpp
872
|| (device.GetPath(&path) == B_OK && lstat(path.Path(), &st) == 0
src/apps/drivesetup/PartitionList.cpp
231
partition->GetPath(&path);
src/apps/haikudepot/ui/App.cpp
346
if (!entry.Exists() || entry.GetPath(&path) != B_OK) {
src/apps/haikudepot/util/StorageUtils.cpp
161
result = directoryEntry.GetPath(&directoryEntryPath);
src/apps/haikudepot/util/StorageUtils.cpp
203
result = directoryEntry.GetPath(&directoryEntryPath);
src/apps/icon-o-matic/generic/gui/IconButton.cpp
329
app_entry.GetPath(&path);
src/apps/installer/CopyEngine.cpp
293
ret = entry.GetPath(&entryPath);
src/apps/installer/PackageViews.cpp
57
entry.GetPath(&path);
src/apps/installer/WorkerThread.cpp
897
entry.GetPath(&path);
src/apps/installer/WorkerThread.cpp
927
partition->GetPath(&path);
src/apps/mail/Content.cpp
1972
entry.GetPath(&path);
src/apps/mail/Enclosures.cpp
473
if (entry.GetPath(&path) == B_OK && file.InitCheck() == B_OK) {
src/apps/mail/MailSupport.cpp
181
entry.GetPath(&label_path);
src/apps/mail/MailWindow.cpp
2840
entry.GetPath(&path);
src/apps/mail/MailWindow.cpp
2875
errorCode = fileEntry.GetPath(&filePath);
src/apps/mediaconverter/MediaConverterApp.cpp
290
outEntry.GetPath(&path);
src/apps/mediaconverter/MediaConverterWindow.cpp
1033
entry.GetPath(&path);
src/apps/mediaconverter/MediaConverterWindow.cpp
469
status = inEntry.GetPath(&path);
src/apps/mediaconverter/MediaConverterWindow.cpp
894
entry.GetPath(&path);
src/apps/mediaplayer/MainWin.cpp
1362
if (entry.GetPath(&path) != B_NO_ERROR)
src/apps/mediaplayer/playlist/FilePlaylistItem.cpp
375
entry.GetPath(&path);
src/apps/mediaplayer/playlist/FilePlaylistItem.cpp
542
entry.GetPath(&originalPath);
src/apps/poorman/PoorManPreferencesWindow.cpp
196
entry.GetPath(&path);
src/apps/poorman/PoorManPreferencesWindow.cpp
235
entry.GetPath(&path);
src/apps/poorman/PoorManWindow.cpp
505
entry.GetPath(&path);
src/apps/powerstatus/ACPIDriverInterface.cpp
249
entry.GetPath(&path);
src/apps/screenshot/ScreenshotWindow.cpp
379
if (entry.GetPath(&path) == B_OK) {
src/apps/soundrecorder/RecorderWindow.cpp
1173
if ((err = tempEnt.GetPath(&path)) < B_OK) {
src/apps/terminal/PrefHandler.cpp
561
if (entry.GetPath(&path) != B_OK)
src/apps/text_search/FileIterator.cpp
32
if (entry.GetPath(&path) != B_OK)
src/apps/text_search/GrepWindow.cpp
481
if (entry.GetPath(&path) == B_OK) {
src/apps/webpositive/BookmarkBar.cpp
223
entry.GetPath(&path);
src/apps/webpositive/BookmarkBar.cpp
243
entry.GetPath(&path);
src/apps/webpositive/BrowserApp.cpp
182
if (entry.Exists() && entry.GetPath(&path) == B_OK)
src/apps/webpositive/BrowserApp.cpp
501
if (entry.GetPath(&path) != B_OK)
src/apps/webpositive/BrowserWindow.cpp
1008
if (!entry.Exists() || entry.GetPath(&path) != B_OK)
src/apps/webpositive/DownloadProgressView.cpp
496
if (entry.GetPath(&fPath) != B_OK)
src/bin/diskimage.cpp
106
&& device.GetPath(&path) == B_OK) {
src/bin/diskimage.cpp
171
|| (device.GetPath(&path) == B_OK && lstat(path.Path(), &st) == 0
src/bin/diskimage.cpp
68
printf("%s", device.GetPath(&path) == B_OK ? path.Path() : "???");
src/bin/eject.cpp
33
device->GetPath(&fPath);
src/bin/filepanel.cpp
66
entry.GetPath(&p);
src/bin/filepanel.cpp
90
entry.GetPath(&p);
src/bin/hey.cpp
1206
entry.GetPath(&path);
src/bin/mail_utils/spamdbm.cpp
1811
if (ErrorCode != B_OK || !Entry.Exists () || Entry.GetPath (&Path) != B_OK)
src/bin/mail_utils/spamdbm.cpp
5981
((ErrorCode = Entry.GetPath (&Path)) != B_OK))
src/bin/mimeset.cpp
101
entry.GetPath(&path) == B_OK ? path.Path() : entry.Name(),
src/bin/mountvolume.cpp
293
partition->GetPath(&path);
src/bin/mountvolume.cpp
459
if (entry.GetPath(&path) != B_OK)
src/bin/package_repo/command_create.cpp
179
if (repositoryParentEntry.GetPath(&repositoryPath) != B_OK) {
src/bin/pkgman/command_list_repos.cpp
105
repoConfig.Entry().GetPath(&path);
src/bin/pkgman/command_refresh.cpp
98
repoConfig.Entry().GetPath(&path);
src/bin/query/query.cpp
127
if (entry.GetPath(&path) < B_OK) {
src/bin/ramdisk.cpp
199
error = entry.GetPath(&normalizedPath);
src/bin/writembr/writembr.cpp
61
bootDevice.GetPath(&device);
src/build/libroot/LocalFD.h
25
return descriptor->GetPath(fPath);
src/build/libroot/fs_attr_untyped.cpp
238
status_t error = descriptor->GetPath(tempPath);
src/build/libroot/fs_descriptors.h
34
virtual status_t GetPath(string& path) const;
src/build/libroot/fs_descriptors.h
76
virtual status_t GetPath(string& path) const;
src/kits/debugger/controllers/DebugReportGenerator.cpp
578
sourceFile->GetPath(sourcePath);
src/kits/debugger/debug_info/Function.cpp
116
file->GetPath(path);
src/kits/debugger/debug_info/FunctionInstance.cpp
45
file->GetPath(path);
src/kits/debugger/files/FileManager.cpp
159
file->GetPath(path);
src/kits/debugger/files/FileManager.cpp
366
directory->GetPath(dirPath);
src/kits/debugger/files/FileManager.cpp
687
file->GetPath(originalPath);
src/kits/debugger/files/LocatableFile.cpp
43
fParent->GetPath(_path);
src/kits/debugger/settings/BreakpointSetting.cpp
63
file->GetPath(fSourceFile);
src/kits/device/JoystickTweaker.cpp
108
status_t result = entry.GetPath(&path);
src/kits/device/USBRoster.cpp
95
entry.GetPath(&path);
src/kits/mail/FileConfigView.cpp
91
entry.GetPath(&path);
src/kits/mail/MailMessage.cpp
970
message.GetPath(&path);
src/kits/package/RepositoryCache.cpp
144
if ((result = entry.GetPath(&repositoryCachePath)) != B_OK)
src/kits/package/RepositoryCache.cpp
167
if ((result = fEntry.GetPath(&repositoryCachePath)) != B_OK)
src/kits/package/hpkg/RepositoryWriterImpl.cpp
334
if ((result = packageEntry.GetPath(&packagePath)) != B_OK) {
src/kits/package/manager/PackageManager.cpp
707
status_t error = entry.GetPath(&destinationPath);
src/kits/print/PrintAddOnServer.cpp
173
if (entry.GetPath(&path) != B_OK)
src/kits/shared/IconButton.cpp
345
app_entry.GetPath(&path);
src/kits/storage/CopyEngine.cpp
116
status_t error = sourceEntry.GetPath(sourcePathBuffer, sourcePath);
src/kits/storage/CopyEngine.cpp
122
error = destEntry.GetPath(destPathBuffer, destPath);
src/kits/storage/EntryOperationEngineBase.cpp
114
if (GetPath(pathBuffer, path) == B_OK)
src/kits/storage/EntryOperationEngineBase.cpp
127
status_t error = GetPath(buffer, path);
src/kits/storage/EntryOperationEngineBase.cpp
152
if (error != B_OK || (error = entry.GetPath(&buffer)) != B_OK)
src/kits/storage/RemoveEngine.cpp
55
status_t error = entry.GetPath(pathBuffer, path);
src/kits/storage/disk_device/DiskDeviceRoster.cpp
797
if (error == B_OK && entry.GetPath(&path) == B_OK)
src/kits/storage/disk_device/Partition.cpp
364
status_t error = Parent()->GetPath(path);
src/kits/storage/disk_device/Partition.cpp
440
error = device->GetPath(&path);
src/kits/storage/disk_device/Partition.cpp
469
error = device->GetPath(&path);
src/kits/storage/disk_device/Partition.cpp
574
status_t error = GetPath(&partitionPath);
src/kits/support/Archivable.cpp
681
err = entry.GetPath(&path);
src/kits/tracker/ContainerWindow.cpp
1008
TargetModel()->GetPath(&path);
src/kits/tracker/ContainerWindow.cpp
177
result = entry.GetPath(&path);
src/kits/tracker/ContainerWindow.cpp
225
result = entry.GetPath(&path);
src/kits/tracker/ContainerWindow.cpp
298
result = entry.GetPath(&path);
src/kits/tracker/ContainerWindow.cpp
3570
TargetModel()->GetPath(&path);
src/kits/tracker/FSUtils.cpp
1785
entry->GetPath(&path);
src/kits/tracker/FSUtils.cpp
1803
destEntry.GetPath(&destPath);
src/kits/tracker/FSUtils.cpp
2129
if (node.InitCheck() == B_OK && entry->GetPath(&path) == B_OK) {
src/kits/tracker/FSUtils.cpp
2855
if (entry->InitCheck() != B_OK || entry->GetPath(&path) != B_OK)
src/kits/tracker/FSUtils.cpp
3561
status_t result = appEntry.GetPath(&path);
src/kits/tracker/FSUtils.cpp
4053
err = parent.GetPath(&pathParent);
src/kits/tracker/FSUtils.cpp
4057
err = entry->GetPath(&path);
src/kits/tracker/FilePanelPriv.cpp
1358
entry.GetPath(&path);
src/kits/tracker/Model.cpp
1277
entry.GetPath(path);
src/kits/tracker/Model.cpp
1286
GetPath(&path);
src/kits/tracker/Model.h
121
void GetPath(BPath*) const;
src/kits/tracker/Navigator.cpp
299
Window()->TargetModel()->GetPath(&path);
src/kits/tracker/Navigator.cpp
310
newmodel->GetPath(&fPath);
src/kits/tracker/Navigator.cpp
65
model->GetPath(&fPath);
src/kits/tracker/OpenWithWindow.cpp
1274
if (entry.GetPath(&path) != B_OK) {
src/kits/tracker/OpenWithWindow.cpp
1698
entry.GetPath(&path);
src/kits/tracker/OpenWithWindow.cpp
1725
entry.GetPath(&path1);
src/kits/tracker/OpenWithWindow.cpp
1728
entry2.GetPath(&path2);
src/kits/tracker/OpenWithWindow.cpp
1764
entry.GetPath(&path);
src/kits/tracker/OpenWithWindow.cpp
249
debugEntry.GetPath(&debugPath);
src/kits/tracker/PoseView.cpp
8688
if (entry.GetPath(&path) == B_OK)
src/kits/tracker/QueryPoseView.cpp
617
if ((result = entry.GetPath(&path)) != B_OK)
src/kits/tracker/TemplatesMenu.cpp
263
if (entry.GetPath(&subdirPath) == B_OK) {
src/kits/tracker/Tests.cpp
207
entry.GetPath(¤tPath);
src/kits/tracker/Tests.cpp
263
entry.GetPath(¤tPath);
src/kits/tracker/Tracker.cpp
362
&& entry.GetPath(&path) == B_OK) {
src/kits/tracker/Utilities.h
465
entry.GetPath(&path);
src/kits/tracker/Utilities.h
479
entry->GetPath(&path);
src/kits/tracker/Utilities.h
495
entry.GetPath(&path);
src/kits/tracker/WidgetAttributeText.cpp
422
&& entry.GetPath(&path) == B_OK) {
src/kits/tracker/WidgetAttributeText.cpp
648
if (entry.InitCheck() == B_OK && entry.GetPath(&path) == B_OK) {
src/kits/tracker/infowindow/GeneralInfoView.cpp
331
resolvedModel.GetPath(&traversedPath);
src/kits/tracker/infowindow/GeneralInfoView.cpp
660
resolvedModel.GetPath(&traversedPath);
src/kits/tracker/infowindow/InfoWindow.cpp
282
if (entry.GetPath(&path) == B_OK)
src/kits/tracker/infowindow/InfoWindow.cpp
347
if (target.GetPath(&targetPath) != B_OK)
src/libs/print/libprint/Transport.cpp
84
printerData->GetPath(spool_path);
src/preferences/backgrounds/BackgroundImage.cpp
483
->GetImage(info->fImageIndex)->GetPath().Path());
src/preferences/backgrounds/BackgroundImage.h
170
BPath GetPath() { return fPath; }
src/preferences/backgrounds/BackgroundsView.cpp
1104
if (image->GetPath() == path)
src/preferences/backgrounds/BackgroundsView.cpp
788
entry.GetPath(&path);
src/preferences/backgrounds/BackgroundsView.cpp
794
entry.GetPath(&path);
src/preferences/joysticks/JoyWin.cpp
297
entry.GetPath(&path);
src/preferences/network/NetworkProfile.cpp
96
if (fEntry.GetPath(&fPath) == B_OK)
src/preferences/network/NetworkWindow.cpp
288
entry.GetPath(&name);
src/preferences/network/NetworkWindow.cpp
381
if (entry.GetPath(&path) != B_OK)
src/preferences/printers/AddPrinterDialog.cpp
330
if (entry.GetPath(&transportPath) != B_OK)
src/preferences/shortcuts/ShortcutsSpec.cpp
397
if (nextEnt.GetPath(&nextPath) == B_NO_ERROR) {
src/preferences/shortcuts/ShortcutsWindow.cpp
595
if ((ent.GetPath(&path) == B_OK)
src/preferences/sounds/HWindow.cpp
432
entry.GetPath(&item_path);
src/preferences/virtualmemory/SettingsWindow.cpp
106
if (entry.GetPath(&path) == B_OK) {
src/servers/app/drawing/interface/local/AccelerantHWInterface.cpp
227
entry.GetPath(&path);
src/servers/app/font/GlobalFontManager.cpp
715
status = entry.GetPath(&path);
src/servers/midi/DeviceWatcher.cpp
195
entry.GetPath(&name);
src/servers/mount/AutoMounter.cpp
179
if (partition->GetPath(&path) != B_OK)
src/servers/mount/AutoMounter.cpp
287
if (partition->GetPath(&path) != B_OK)
src/servers/mount/AutoMounter.cpp
345
if (partition->GetPath(&path) != B_OK)
src/servers/net/NetServer.cpp
714
|| entry.GetPath(&path) != B_OK
src/servers/package/CommitTransactionHandler.cpp
690
transactionEntry.GetPath(&transactionPath) == B_OK) {
src/servers/package/FSTransaction.cpp
223
status_t error = entry.GetPath(pathBuffer, path);
src/servers/package/FSUtils.cpp
197
status_t error = packageEntry.GetPath(packagePathBuffer, packagePath);
src/servers/package/FSUtils.cpp
203
error = targetDirectoryEntry.GetPath(targetPathBuffer, targetPath);
src/servers/package/FSUtils.cpp
232
status_t error = entry.GetPath(pathBuffer, path);
src/servers/package/FSUtils.cpp
245
status_t error = entry.GetPath(pathBuffer, path);
src/servers/package/Root.cpp
203
error = entry.GetPath(&path);
src/servers/package/Volume.cpp
1075
activationEntry.GetPath(&activationPath) == B_OK)
src/servers/package/Volume.cpp
1245
scriptEntry.GetPath(&scriptPath);
src/servers/package/Volume.cpp
221
error = entry.GetPath(&path);
src/servers/print/Transport.cpp
91
if (entry.GetPath(&path) != B_OK)
src/system/boot/loader/menu.cpp
555
->GetPath(_path)
src/system/boot/loader/menu.cpp
565
if (GetPath(path))
src/system/boot/loader/menu.cpp
601
if (GetPath(path)) {
src/system/kernel/disk_device_manager/KDiskDeviceManager.cpp
1383
partition->GetPath(&partitionPath);
src/system/kernel/disk_device_manager/KDiskDeviceManager.cpp
437
if (partition->GetPath(&partitionPath) == B_OK
src/system/kernel/disk_device_manager/KPartition.cpp
1341
GetPath(&path);
src/system/kernel/disk_device_manager/KPartition.cpp
176
status_t error = GetPath(&path);
src/system/kernel/disk_device_manager/KPartition.cpp
239
status_t error = GetPath(&path);
src/system/kernel/fs/vfs_boot.cpp
489
if (bootPartition->GetPath(&path) != B_OK)
src/system/kernel/vm/VMAnonymousCache.cpp
1407
partition->GetPath(&path);
src/system/kernel/vm/VMAnonymousCache.cpp
1710
visitor.fBestPartition->GetPath(&devPath);
src/tests/add-ons/kernel/kernelland_emu/module.cpp
619
if (entry.GetPath(&path) == B_OK
src/tests/add-ons/kernel/network/userland_modules.cpp
280
entry.GetPath(&path);
src/tests/add-ons/kernel/network/userland_modules.cpp
300
entry.GetPath(&path);
src/tests/add-ons/kernel/network/userland_modules.cpp
645
entry.GetPath(&addons_path);
src/tests/add-ons/print/ppd/ui/PrinterSelection.cpp
113
entry.GetPath(&path);
src/tests/add-ons/print/ppd/ui/PrinterSelection.cpp
97
entry.GetPath(&path);
src/tests/apps/partitioner/Partitioner.cpp
100
status_t error = partition->GetPath(&path);
src/tests/apps/partitioner/Partitioner.cpp
172
status_t error = device->GetPath(&path);
src/tests/apps/partitioner/Partitioner.cpp
78
status_t error = device->GetPath(&path);
src/tests/kits/locale/catalogSpeed.cpp
187
appFolder.GetPath(&appPath);
src/tests/kits/locale/catalogTest.cpp
178
appFolder.GetPath( &appPath);
src/tests/kits/storage/DirectoryTest.cpp
1252
CPPUNIT_ASSERT( entry.GetPath(&path) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
1300
CPPUNIT_ASSERT( entry.GetPath(&path) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
671
CPPUNIT_ASSERT( entry.GetPath(&path) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
683
CPPUNIT_ASSERT( entry.GetPath(&path) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
695
CPPUNIT_ASSERT( entry.GetPath(&path) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
744
CPPUNIT_ASSERT( entry.GetPath(&path) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
755
CPPUNIT_ASSERT( entry.GetPath(&path) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
766
CPPUNIT_ASSERT( entry.GetPath(&path) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
785
CPPUNIT_ASSERT( entry.GetPath(&path) == B_OK );
src/tests/kits/storage/EntryTest.cpp
1323
CPPUNIT_ASSERT( entry.GetPath(&path) == B_NO_INIT );
src/tests/kits/storage/EntryTest.cpp
1328
CPPUNIT_ASSERT( entry.GetPath(&path) == B_NO_INIT );
src/tests/kits/storage/EntryTest.cpp
1338
CPPUNIT_ASSERT( entry.GetPath(&path) == B_OK );
src/tests/kits/storage/EntryTest.cpp
2304
result = (entry->GetPath(&entryPath) == B_OK && entryPath == path);
src/tests/kits/storage/EntryTest.cpp
2321
result = (entry->GetPath(&entryPath) == B_OK && entryPath == path);
src/tests/kits/storage/EntryTest.cpp
2348
result = (entry->GetPath(&entryPath) == B_OK && entryPath == path);
src/tests/kits/storage/EntryTest.cpp
303
CPPUNIT_ASSERT( entry.GetPath(&path) == B_OK );
src/tests/kits/storage/EntryTest.cpp
313
CPPUNIT_ASSERT( parentEntry.GetPath(&path) == B_OK );
src/tests/kits/storage/EntryTest.cpp
322
CPPUNIT_ASSERT( parentEntry.GetPath(&path) == B_OK );
src/tests/kits/storage/QueryTest.cpp
1021
CPPUNIT_ASSERT( entry.GetPath(&path) == B_OK );
src/tests/kits/storage/QueryTest.cpp
1099
CPPUNIT_ASSERT( entry.GetPath(&path) == B_OK );
src/tests/kits/storage/QueryTest.cpp
1449
CPPUNIT_ASSERT( entry.GetPath(&path) == B_OK );
src/tests/kits/storage/SymLinkTest.cpp
636
CPPUNIT_ASSERT( entry.GetPath(&entryPath) == B_OK );
src/tests/kits/storage/SymLinkTest.cpp
649
CPPUNIT_ASSERT( entry.GetPath(&entryPath) == B_OK );
src/tests/kits/storage/SymLinkTest.cpp
724
CPPUNIT_ASSERT( entry.GetPath(&entryPath) == B_OK );
src/tests/kits/storage/SymLinkTest.cpp
739
CPPUNIT_ASSERT( entry.GetPath(&entryPath) == B_OK );
src/tests/kits/storage/disk_device/DiskDeviceTest.cpp
32
status_t error = device->GetPath(&path);
src/tests/kits/storage/disk_device/DiskDeviceTest.cpp
54
status_t error = partition->GetPath(&path);
src/tests/system/kernel/live_query.cpp
276
if (entry.GetPath(&path) != B_OK) {
src/tools/cppunit/TestShell.cpp
144
err = addonEntry.GetPath(&addonPath);
src/tools/rm_attrs.cpp
108
"entry: \"%s\"\n", path.GetPath(), entry->d_name);
src/tools/rm_attrs.cpp
121
path.GetPath(), strerror(errno));
src/tools/rm_attrs.cpp
134
if (lstat(path.GetPath(), &st) < 0) {
src/tools/rm_attrs.cpp
139
fprintf(stderr, "Error: Failed to remove \"%s\": %s\n", path.GetPath(),
src/tools/rm_attrs.cpp
147
if (__get_attribute_dir_path(&st, path.GetPath(),
src/tools/rm_attrs.cpp
156
fprintf(stderr, "Error: \"%s\" is a directory.\n", path.GetPath());
src/tools/rm_attrs.cpp
164
if (rmdir(path.GetPath()) < 0) {
src/tools/rm_attrs.cpp
166
path.GetPath(), strerror(errno));
src/tools/rm_attrs.cpp
171
if (unlink(path.GetPath()) < 0) {
src/tools/rm_attrs.cpp
173
path.GetPath(), strerror(errno));
src/tools/rm_attrs.cpp
92
DIR* dir = opendir(path.GetPath());
src/tools/rm_attrs.cpp
95
path.GetPath(), strerror(errno));
src/tools/translation/inspector/InspectorApp.cpp
74
if (ent.GetPath(&path) == B_OK)