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

12

/haiku/headers/compatibility/bsd/
H A Dlibutil.h93 int _secure_path(const char *_path, uid_t _uid, gid_t _gid);
/haiku/headers/os/storage/
H A DPathFinder.h52 BPath& _path);
55 BPath& _path);
57 const char* subPath, BPath& _path);
59 BPath& _path);
/haiku/headers/private/debugger/files/
H A DLocatableDirectory.h20 void GetPath(BString& _path) const;
23 virtual bool GetLocatedPath(BString& _path) const;
H A DLocatableEntry.h49 virtual bool GetLocatedPath(BString& _path) const = 0;
H A DLocatableFile.h24 void GetPath(BString& _path) const;
27 virtual bool GetLocatedPath(BString& _path) const;
/haiku/headers/private/package/manager/
H A DPackageManager.h195 BPath& _path) = 0;
206 BPath& _path);
232 BPath& _path);
/haiku/headers/private/storage/
H A DEntryOperationEngineBase.h43 status_t GetPath(BPath& buffer, const char*& _path)
47 status_t GetPathOrName(BString& _path) const;
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DSecurityContext.cpp1083 SecurityContext::_AddNodePath(const node_ref& ref, HashString* _path) argument
1095 if (_path)
1096 *_path = fNode2Path->Get(ref);
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DFileSystem.h85 const char* _path);
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 Dkernel_interface.cpp70 char** _path, MountConfiguration* conf)
98 *_path = strdup(path);
99 if (*_path == NULL) {
69 ParseArguments(const char* _args, AddressResolver** address, char** _server, char** _path, MountConfiguration* conf) argument
/haiku/src/apps/debuganalyzer/gui/table/
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));
H A DTreeTable.h111 bool GetPathAt(int32 index, TreeTablePath& _path);
250 TreeTablePath& _path) const;
/haiku/src/apps/deskbar/
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);
H A DDeskbarUtils.h52 status_t GetDeskbarSettingsDirectory(BPath& _path, bool create = false);
53 status_t GetDeskbarDataDirectory(BPath& _path);
/haiku/src/kits/debugger/files/
H A DLocatableDirectory.cpp44 LocatableDirectory::GetPath(BString& _path) const
46 _path = fPath;
51 LocatableDirectory::GetLocatedPath(BString& _path) const
55 _path = fLocatedPath;
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;
/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/src/servers/input/
H A DPathList.cpp18 path_entry(const char* _path) argument
22 path = strdup(_path);
/haiku/src/tests/system/kernel/device_manager/playground/
H A Ddevice_manager.cpp152 status_t _GetNextDriverPath(void*& cookie, KPath& _path);
1256 device_node::_GetNextDriverPath(void*& cookie, KPath& _path) argument
1342 _path.Adopt(*path);
/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);
H A DVariablesView.cpp702 TreeTablePath& _path) const;
1762 TreeTablePath& _path) const
1766 if (!GetTreePath(parent, _path))
1772 return _path.AddComponent(parent->IndexOf(node));
1777 _path.Clear();
1778 return index >= 0 && _path.AddComponent(index);
/haiku/src/apps/expander/
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;
H A DExpanderSettings.h49 static status_t GetSettingsDirectoryPath(BPath& _path);

Completed in 222 milliseconds

12