Searched refs:entry (Results 476 - 500 of 922) sorted by relevance

<<11121314151617181920>>

/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DParseCommandLine.cpp314 BEntry entry(argv[0], true);
315 if (entry.Exists()) {
318 BDirectory testDir(&entry);
321 status_t status = entry.GetRef(&ref);
333 if (entry.GetRef(&ref) == B_OK) {
/haiku/src/kits/debugger/debug_info/
H A DGlobalTypeLookup.cpp110 TypeEntry* entry = fTypesByID->Clear(true); local
111 while (entry != NULL) {
112 TypeEntry* nextEntry = entry->fNextByID;
113 delete entry;
114 entry = nextEntry;
/haiku/src/servers/media/
H A DBufferManager.cpp154 BufferInfoMap::Entry entry = iterator.Next(); local
156 entry.value.teams.erase(team);
158 if (entry.value.teams.empty()) {
160 B_PRId32 " that has no teams\n", entry.key.GetHashCode());
161 _ReleaseClonedArea(entry.value.area);
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DSizeIndex.cpp92 virtual void EntryRemoved(Entry *entry);
263 Entry *entry = GetCurrent(); local
264 if (entry) {
265 *(off_t*)buffer = entry->GetNode()->GetSize();
268 return entry;
322 // get the node's first entry
330 // get the first entry
358 SizeIndex::Iterator::EntryRemoved(Entry */*entry*/)
H A DLastModifiedIndex.cpp94 virtual void EntryRemoved(Entry *entry);
264 Entry *entry = GetCurrent(); local
265 if (entry) {
266 *(time_t*)buffer = entry->GetNode()->GetMTime();
269 return entry;
324 // get the node's first entry
332 // get the first entry
360 LastModifiedIndex::Iterator::EntryRemoved(Entry */*entry*/)
/haiku/src/kits/storage/
H A Dstorage_support.cpp246 // fullPath is just an entry name, no parent directories specified
346 /*! An entry name is considered valid, if its length doesn't exceed
349 \param entry the entry name
351 - \c B_OK, if \a entry is valid,
352 - \c B_BAD_VALUE, if \a entry is \c NULL or contains a "/",
353 - \c B_NAME_TOO_LONG, if \a entry is too long
354 \note \c "" is considered a valid entry name.
357 check_entry_name(const char *entry) argument
359 status_t error = (entry
[all...]
/haiku/src/system/boot/platform/efi/arch/x86/
H A Darch_mmu.cpp250 efi_memory_descriptor* entry =
252 if ((entry->Attribute & EFI_MEMORY_RUNTIME) != 0)
253 map_range(entry->VirtualStart, entry->PhysicalStart,
254 entry->NumberOfPages * B_PAGE_SIZE,
275 // this enables a mmu trick where the 4 MB region that this pgdir entry
/haiku/src/system/libroot/posix/
H A Ddirent.cpp68 struct dirent* entry = (struct dirent*) local
71 dir->next_entry += entry->d_reclen;
245 readdir_r(DIR* dir, struct dirent* entry, struct dirent** _result) argument
256 memcpy(entry, dirent, dirent->d_reclen);
257 *_result = entry;
/haiku/src/apps/cortex/ValControl/
H A DValControl.h38 // - keyboard entry (pop-up text field)
198 // Note that all implementations offering pop-up keyboard entry
261 virtual void drawDecimalPoint(ValCtrlLayoutEntry& entry);
292 // (the entry's frame rectangle will be filled in)
294 void _Add(ValCtrlLayoutEntry& entry, entry_location from);
311 // insert a layout entry in ordered position (doesn't call
313 void _InsertEntry(ValCtrlLayoutEntry& entry, uint16 index);
315 // move given entry horizontally (update child view's position
/haiku/src/apps/webpositive/
H A DCredentialsStorage.cpp226 const CredentialMap::Entry& entry = iterator.Next(); local
227 if (entry.value.Archive(&credentialsArchive) != B_OK
229 entry.key.value) != B_OK) {
/haiku/headers/private/package/hpkg/
H A DPackageWriterImpl.h90 Entry* entry, const char* fileName,
104 void _AddEntry(int dirFD, Entry* entry,
106 void _AddDirectoryChildren(Entry* entry, int fd,
/haiku/src/bin/package_repo/
H A Dcommand_create.cpp216 BEntry entry(packageFileNames[i]);
217 if (!entry.Exists()) {
221 result = repositoryWriter.AddPackage(entry);
/haiku/src/apps/diskprobe/
H A DAttributeWindow.cpp98 BEntry entry(ref);
99 if (entry.IsDirectory()) {
100 BDirectory directory(&entry);
/haiku/src/tests/kits/interface/balert/alert_manual_test/
H A DAlertTestWindow.cpp27 BEntry entry(&info.ref);
28 if (entry.InitCheck() >= B_OK) {
29 BPath path(&entry);
/haiku/src/apps/mediaplayer/playlist/
H A DPlaylistFileReader.cpp42 PlaylistFileReader::_AppendItemToPlaylist(const BString& entry, Playlist* playlist) argument
46 BPath path(entry.String());
51 // Create a PlaylistItem if entry is a valid file path or URL
55 BUrl url(entry);
/haiku/src/add-ons/kernel/drivers/disk/nvme/compat/
H A Dlibnvme_haiku.cpp83 physical_entry entry; local
84 status_t status = get_memory_map((void*)vaddr, 1, &entry, 1);
91 return entry.address;
/haiku/src/servers/app/
H A DScreenManager.cpp83 BEntry entry("/dev/graphics");
85 if (entry.InitCheck() == B_OK && entry.GetNodeRef(&nodeRef) == B_OK)
/haiku/src/bin/desklink/
H A Ddesklink.cpp126 BEntry entry(argv[i], true);
129 if (entry.Exists()) {
130 entry.GetRef(&ref);
/haiku/src/apps/showimage/
H A DShowImageStatusView.cpp127 BEntry entry; local
128 if (entry.SetTo(&fRef) == B_OK)
129 menu->Populate(&entry, Window(), false, false, true, false, true);
H A DImageFileNavigator.cpp121 BEntry entry(&ref, true);
122 if (entry.InitCheck() != B_OK)
125 return entry.IsFile();
251 BEntry entry(&ref);
252 if (entry.IsDirectory())
266 if (entry.IsDirectory())
/haiku/src/tools/
H A Delf2aout.c171 Elf32_Addr entry; local
189 entry = xe32toh(e->e_entry);
206 a.a_entry = htoxe32(entry);
226 Elf64_Addr entry; local
244 entry = xe64toh(e->e_entry);
261 a.a_entry = htoxe32(entry);
/haiku/src/kits/package/
H A DRepositoryInfo.cpp61 BRepositoryInfo::BRepositoryInfo(const BEntry& entry) argument
63 fInitStatus = _SetTo(entry);
139 BRepositoryInfo::SetTo(const BEntry& entry) argument
141 return fInitStatus = _SetTo(entry);
337 BRepositoryInfo::_SetTo(const BEntry& entry) argument
339 BFile file(&entry, B_READ_ONLY);
/haiku/src/apps/people/
H A DPeopleApp.cpp87 BEntry entry; local
88 if (dir.FindEntry("People_data", &entry) == B_OK) {
89 fPrefs = new BFile(&entry, B_READ_WRITE);
210 BEntry entry(argv[i]);
212 if (entry.Exists() && entry.GetRef(&ref) == B_OK)
H A DPersonView.cpp213 BEntry entry; local
214 while (query.GetNextEntry(&entry) == B_OK) {
215 BFile file(&entry, B_READ_ONLY);
428 BEntry entry(ref);
429 entry.GetModificationTime(&modificationTime);
431 if (entry.InitCheck() == B_OK
/haiku/headers/os/storage/
H A DEntry.h47 BEntry(const BEntry& entry);
66 status_t GetParent(BEntry* entry) const;

Completed in 198 milliseconds

<<11121314151617181920>>