Searched refs:_path (Results 1 - 25 of 34) sorted by relevance

12

/haiku/src/kits/debugger/files/
H A DLocatableFile.cpp41 LocatableFile::GetPath(BString& _path) const
43 fParent->GetPath(_path);
44 if (_path.Length() != 0)
45 _path << '/';
46 _path << fName;
51 LocatableFile::GetLocatedPath(BString& _path) const
56 _path = fLocatedPath;
60 if (!fParent->GetLocatedPath(_path))
63 _path << '/' << fName;
H A DLocatableDirectory.cpp44 LocatableDirectory::GetPath(BString& _path) const
46 _path = fPath;
51 LocatableDirectory::GetLocatedPath(BString& _path) const
55 _path = fLocatedPath;
/haiku/src/apps/deskbar/
H A DDeskbarUtils.h52 status_t GetDeskbarSettingsDirectory(BPath& _path, bool create = false);
53 status_t GetDeskbarDataDirectory(BPath& _path);
H A DDeskbarUtils.cpp112 GetDeskbarSettingsDirectory(BPath& _path, bool create) argument
114 status_t error = find_directory(B_USER_SETTINGS_DIRECTORY, &_path, create);
118 error = _path.Append(kDeskbarDirectoryName);
122 return create ? create_directory(_path.Path(), 0755) : error;
127 GetDeskbarDataDirectory(BPath& _path) argument
129 status_t error = find_directory(B_SYSTEM_DATA_DIRECTORY, &_path, false);
133 return _path.Append(kDeskbarDirectoryName);
/haiku/src/kits/storage/
H A DEntryOperationEngineBase.cpp80 BEntryOperationEngineBase::Entry::GetPath(BPath& buffer, const char*& _path)
97 _path = fPath;
104 _path = buffer.Path();
121 BEntryOperationEngineBase::Entry::GetPathOrName(BString& _path) const
123 _path.Truncate(0);
132 _path = path;
135 _path = fEntry->Name();
139 _path = fPath;
155 _path = buffer.Path();
158 if (!_path
[all...]
H A DPathFinder.cpp66 BPath& _path)
68 _path.Unset();
90 return _path.SetTo(pathBuffer);
96 uint32 flags, BPath& _path)
98 return FindPath(NULL, baseDirectory, subPath, flags, _path);
104 BPath& _path)
106 return FindPath(NULL, baseDirectory, subPath, 0, _path);
111 BPathFinder::FindPath(path_base_directory baseDirectory, BPath& _path) argument
113 return FindPath(NULL, baseDirectory, NULL, 0, _path);
64 FindPath(const char* architecture, path_base_directory baseDirectory, const char* subPath, uint32 flags, BPath& _path) argument
95 FindPath(path_base_directory baseDirectory, const char* subPath, uint32 flags, BPath& _path) argument
103 FindPath(path_base_directory baseDirectory, const char* subPath, BPath& _path) argument
/haiku/headers/private/debugger/files/
H A DLocatableDirectory.h20 void GetPath(BString& _path) const;
23 virtual bool GetLocatedPath(BString& _path) const;
H A DLocatableFile.h24 void GetPath(BString& _path) const;
27 virtual bool GetLocatedPath(BString& _path) const;
H A DLocatableEntry.h49 virtual bool GetLocatedPath(BString& _path) const = 0;
/haiku/headers/private/storage/
H A DEntryOperationEngineBase.h43 status_t GetPath(BPath& buffer, const char*& _path)
47 status_t GetPathOrName(BString& _path) const;
/haiku/headers/os/storage/
H A DPathFinder.h52 BPath& _path);
55 BPath& _path);
57 const char* subPath, BPath& _path);
59 BPath& _path);
/haiku/src/apps/expander/
H A DExpanderSettings.h49 static status_t GetSettingsDirectoryPath(BPath& _path);
H A DExpanderSettings.cpp193 ExpanderSettings::GetSettingsDirectoryPath(BPath& _path) argument
195 status_t error = find_directory(B_USER_SETTINGS_DIRECTORY, &_path);
196 return error == B_OK ? _path.Append("expander") : error;
/haiku/src/servers/input/
H A DPathList.cpp18 path_entry(const char* _path) argument
22 path = strdup(_path);
/haiku/src/preferences/sounds/
H A DHEventList.cpp42 HEventRow::SetPath(const char* _path) argument
44 fPath = _path;
45 BPath path(_path);
46 SetField(new BStringField(_path ? path.Leaf() : B_TRANSLATE("<none>")),
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DFileSystem.cpp82 GetInodeNames(const char** root, const char* _path) argument
86 ASSERT(_path != NULL);
89 char* path = strdup(_path);
478 FileSystem::_ParsePath(RequestBuilder& req, uint32& count, const char* _path) argument
482 ASSERT(_path != NULL);
484 char* path = strdup(_path);
H A DFileSystem.h85 const char* _path);
/haiku/headers/private/package/manager/
H A DPackageManager.h195 BPath& _path) = 0;
206 BPath& _path);
232 BPath& _path);
/haiku/src/servers/app/decorator/
H A DDecorManager.cpp277 DecorManager::_LoadDecor(BString _path, status_t& error ) argument
279 if (_path == "Default") {
284 BEntry entry(_path.String(), true);
/haiku/headers/compatibility/bsd/
H A Dlibutil.h93 int _secure_path(const char *_path, uid_t _uid, gid_t _gid);
/haiku/src/apps/debuganalyzer/gui/table/
H A DTreeTable.h111 bool GetPathAt(int32 index, TreeTablePath& _path);
250 TreeTablePath& _path) const;
H A DTreeTable.cpp609 TreeTableSelectionModel::GetPathAt(int32 index, TreeTablePath& _path) argument
612 fTreeTable->_GetPathForNode(node, _path);
1128 TreeTable::_GetPathForNode(TreeTableNode* node, TreeTablePath& _path) const
1131 _path.Clear();
1135 _GetPathForNode(node->Parent(), _path);
1136 _path.AddComponent(node->Parent()->IndexOf(node));
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DImageFunctionsView.cpp436 bool GetFunctionPath(FunctionInstance* function, TreeTablePath& _path) argument
446 _path.AddComponent(fChildPathComponents.IndexOf(node));
468 _path.AddComponent(childIndex);
479 _path.AddComponent(childIndex);
/haiku/src/system/libroot/posix/
H A Dspawn.cpp561 spawn_using_load_image(pid_t *_pid, const char *_path, argument
566 if (!envpath || strchr(_path, '/') != NULL) {
567 path = _path;
570 status_t status = __look_up_in_path(_path, buffer);
/haiku/src/kits/package/manager/
H A DPackageManager.cpp958 BPath& _path)
966 status_t error = _path.SetTo(it->second.c_str());
991 BPath& _path)
1007 status_t error = find_directory(packagesWhich, &_path);
1008 if (error != B_OK || (error = _path.Append(fileName)) != B_OK) {
957 GetPackagePath(BSolverPackage* package, BPath& _path) argument
990 GetPackagePath(BSolverPackage* package, BPath& _path) argument

Completed in 159 milliseconds

12