Searched refs:traverse (Results 1 - 25 of 44) sorted by relevance

12

/haiku-fatelf/headers/build/private/app/
H A DAppMisc.h40 status_t get_app_ref(team_id team, entry_ref *ref, bool traverse = true);
41 status_t get_app_ref(entry_ref *ref, bool traverse = true);
/haiku-fatelf/src/build/libbe/app/
H A DAppMisc.cpp41 \param traverse If \c true, the function traverses symbolic links.
48 get_app_ref(entry_ref *ref, bool traverse) argument
50 // return get_app_ref(B_CURRENT_TEAM, ref, traverse);
/haiku-fatelf/headers/build/os/storage/
H A DEntry.h45 BEntry(const BDirectory *dir, const char *path, bool traverse = false);
46 BEntry(const entry_ref *ref, bool traverse = false);
47 BEntry(const char *path, bool traverse = false);
57 bool traverse = false);
58 status_t SetTo(const entry_ref *ref, bool traverse = false);
59 status_t SetTo(const char *path, bool traverse = false);
97 status_t set(int dir, const char *path, bool traverse);
H A DDirectory.h53 bool traverse = false) const;
60 virtual status_t GetNextEntry(BEntry *entry, bool traverse = false);
H A DNode.h115 status_t _SetTo(int fd, const char *path, bool traverse);
116 status_t _SetTo(const entry_ref *ref, bool traverse);
/haiku-fatelf/headers/os/storage/
H A DEntry.h43 bool traverse = false);
45 bool traverse = false);
46 BEntry(const char* path, bool traverse = false);
58 bool traverse = false);
60 bool traverse = false);
61 status_t SetTo(const char* path, bool traverse = false);
96 bool traverse);
H A DEntryList.h28 bool traverse = false) = 0;
H A DDirectory.h42 bool traverse = false) const;
49 virtual status_t GetNextEntry(BEntry *entry, bool traverse = false);
H A DNode.h98 status_t _SetTo(int fd, const char* path, bool traverse);
99 status_t _SetTo(const entry_ref* ref, bool traverse);
/haiku-fatelf/src/tests/kits/storage/
H A DEntryTest.h31 bool traverse = false);
33 bool traverse = false);
35 bool traverse = false);
39 bool traverse = false);
41 bool traverse = false);
43 bool traverse = false);
/haiku-fatelf/headers/private/app/
H A DAppMisc.h24 status_t get_app_ref(team_id team, entry_ref *ref, bool traverse = true);
25 status_t get_app_ref(entry_ref *ref, bool traverse = true);
/haiku-fatelf/src/kits/app/
H A DAppMisc.cpp80 \param traverse If \c true, the function traverses symbolic links.
87 get_app_ref(team_id team, entry_ref *ref, bool traverse) argument
96 BEntry entry(appFilePath, traverse);
107 \param traverse If \c true, the function traverses symbolic links.
114 get_app_ref(entry_ref *ref, bool traverse) argument
116 return get_app_ref(B_CURRENT_TEAM, ref, traverse);
/haiku-fatelf/src/kits/tracker/
H A DNodeWalker.h61 virtual status_t GetNextEntry(BEntry*, bool traverse = false) = 0;
87 virtual status_t GetNextEntry(BEntry*, bool traverse = false);
124 virtual status_t GetNextEntry(BEntry*, bool traverse = false);
155 virtual status_t GetNextEntry(BEntry*, bool traverse = false);
H A DEntryIterator.h60 virtual status_t GetNextEntry(BEntry* entry, bool traverse = false) = 0;
82 virtual status_t GetNextEntry(BEntry* entry, bool traverse = false);
113 virtual status_t GetNextEntry(BEntry* entry, bool traverse = false);
146 virtual status_t GetNextEntry(BEntry* entry, bool traverse = false);
183 virtual status_t GetNextEntry(BEntry* entry, bool traverse = false);
H A DEntryIterator.cpp69 TWalkerWrapper::GetNextEntry(BEntry* entry, bool traverse) argument
71 fStatus = fWalker->GetNextEntry(entry, traverse);
161 CachedEntryIterator::GetNextEntry(BEntry* result, bool traverse) argument
176 traverse);
378 DirectoryEntryList::GetNextEntry(BEntry* entry, bool traverse) argument
380 fStatus = fDir.GetNextEntry(entry, traverse);
452 EntryIteratorList::GetNextEntry(BEntry* entry, bool traverse) argument
460 fStatus = fList.ItemAt(fCurrentIndex)->GetNextEntry(entry, traverse);
H A DNodeWalker.cpp289 TNodeWalker::GetNextEntry(BEntry* entry, bool traverse) argument
308 status_t err = fTopDir->GetNextEntry(entry, traverse);
314 return GetNextEntry(entry, traverse);
530 TVolWalker::GetNextEntry(BEntry* entry, bool traverse) argument
536 status_t err = _inherited::GetNextEntry(entry, traverse);
543 err = GetNextEntry(entry, traverse);
610 TQueryWalker::GetNextEntry(BEntry* entry, bool traverse) argument
615 err = fQuery.GetNextEntry(entry, traverse);
H A DModel.h81 Model(const entry_ref*, bool traverse = false, bool open = false,
93 status_t SetTo(const entry_ref*, bool traverse = false,
178 bool traverse = false) const;
182 // if traverse, dereference symlinks
/haiku-fatelf/src/kits/storage/
H A DEntry.cpp132 BEntry::BEntry(const BDirectory* dir, const char* path, bool traverse) argument
138 SetTo(dir, path, traverse);
142 BEntry::BEntry(const entry_ref* ref, bool traverse) argument
148 SetTo(ref, traverse);
152 BEntry::BEntry(const char* path, bool traverse) argument
158 SetTo(path, traverse);
205 BEntry::SetTo(const BDirectory* dir, const char* path, bool traverse) argument
215 return SetTo(path, traverse);
226 return (fCStatus = _SetTo(dirFD, path, traverse));
231 BEntry::SetTo(const entry_ref* ref, bool traverse) argument
250 SetTo(const char* path, bool traverse) argument
517 _SetTo(int dirFD, const char* path, bool traverse) argument
[all...]
H A DNode.cpp441 BNode::_SetTo(int fd, const char *path, bool traverse) argument
446 int traverseFlag = (traverse ? 0 : O_NOTRAVERSE);
460 BNode::_SetTo(const entry_ref *ref, bool traverse) argument
465 int traverseFlag = (traverse ? 0 : O_NOTRAVERSE);
/haiku-fatelf/headers/os/locale/
H A DLocaleRoster.h84 bool traverse = false);
105 BString& string, bool traverse);
/haiku-fatelf/src/build/libbe/storage/
H A DEntry.cpp247 /*! If traverse is true and \c dir/path refers to a symlink, the BEntry will
252 \param traverse whether or not to traverse symlinks
256 BEntry::BEntry(const BDirectory *dir, const char *path, bool traverse) argument
262 SetTo(dir, path, traverse);
267 /*! If traverse is true and \a ref refers to a symlink, the BEntry
272 \param traverse whether or not symlinks are to be traversed
275 BEntry::BEntry(const entry_ref *ref, bool traverse) argument
281 SetTo(ref, traverse);
288 traverse i
296 BEntry(const char *path, bool traverse) argument
383 SetTo(const BDirectory *dir, const char *path, bool traverse) argument
416 SetTo(const entry_ref *ref, bool traverse) argument
438 SetTo(const char *path, bool traverse) argument
872 set(int dirFD, const char *path, bool traverse) argument
[all...]
H A DNode.cpp692 \param traverse If the node identified by \a fd and \a path is a symlink
693 and \a traverse is \c true, the symlink will be resolved recursively.
697 BNode::_SetTo(int fd, const char *path, bool traverse) argument
702 int traverseFlag = (traverse ? 0 : O_NOTRAVERSE);
727 \param traverse If the node identified by \a ref is a symlink
728 and \a traverse is \c true, the symlink will be resolved recursively.
732 BNode::_SetTo(const entry_ref *ref, bool traverse) argument
737 int traverseFlag = (traverse ? 0 : O_NOTRAVERSE);
H A DDirectory.cpp354 \param traverse specifies whether to follow it, if the found entry
374 BDirectory::FindEntry(const char *path, BEntry *entry, bool traverse) const
382 error = entry->SetTo(this, path, traverse);
384 error = entry->SetTo(path, traverse);
533 \param traverse specifies whether to follow it, if the found entry
549 BDirectory::GetNextEntry(BEntry *entry, bool traverse) argument
556 error = entry->SetTo(&ref, traverse);
566 \param traverse specifies whether to follow it, if the found entry
/haiku-fatelf/src/system/libroot/os/
H A Dfs_attr.cpp25 open_attr_dir(int file, const char *path, bool traverse) argument
29 int fd = _kern_open_attr_dir(file, path, traverse);
/haiku-fatelf/headers/private/shared/
H A DQueryFile.h45 bool traverse = false);

Completed in 181 milliseconds

12