Searched refs:entry (Results 401 - 425 of 922) sorted by relevance

<<11121314151617181920>>

/haiku/src/servers/registrar/mime/
H A DMimeUpdateThread.h41 virtual status_t DoMimeUpdate(const entry_ref *entry, bool *entryIsDir) = 0;
/haiku/headers/posix/
H A Ddirent.h19 char d_name[0]; /* name of the entry (null byte terminated) */
21 char d_name[]; /* name of the entry (null byte terminated) */
42 int readdir_r(DIR* dir, struct dirent* entry,
/haiku/src/apps/mediaplayer/playlist/
H A DPlaylistFileReader.h35 int32 _AppendItemToPlaylist(const BString& entry, Playlist* playlist);
37 // BString& entry is a (absolute or relative) file path or URL
/haiku/src/bin/filteredquery/
H A DFilteredQuery.h36 virtual status_t GetNextEntry(BEntry *entry, bool traverse = false);
/haiku/src/kits/debugger/dwarf/
H A DDwarfFile.cpp154 // resolve the entry
155 DebugInfoEntry* entry = fFile->_ResolveReference(fUnit, offset, refType); local
156 if (entry == NULL)
160 LocationDescription* location = entry->GetLocationDescription();
543 TypeUnitTableEntry* entry = fTypeUnits.Clear(true); local
544 while (entry != NULL) {
545 TypeUnitTableEntry* nextEntry = entry->next;
546 delete entry;
547 entry = nextEntry;
662 TypeUnitTableEntry* entry
891 DebugInfoEntry* entry = value->reference; local
1149 TypeUnitTableEntry* entry = new(std::nothrow) local
1294 DebugInfoEntry* entry; local
1338 DebugInfoEntry* entry; local
1400 DebugInfoEntry* entry; local
1489 DebugInfoEntry* entry; local
1615 _ParseEntryAttributes(DataReader& dataReader, BaseUnit* unit, DebugInfoEntry* entry, AbbreviationEntry& abbreviationEntry) argument
3119 DebugInfoEntry* entry = unit->EntryForOffset(offset); local
3127 TypeUnitTableEntry* entry = fTypeUnits.Lookup(offset); local
[all...]
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DShortAttribute.h44 uint32 _DataLength(AShortFormEntry* entry);
H A DNodeAttribute.cpp176 // We have valid attribute entry to stat
276 // if we are at next node entry fill up leaf buffer
298 AttrLeafEntry* entry = (AttrLeafEntry*)( local
301 uint32 offset = B_BENDIAN_TO_HOST_INT16(entry->nameidx);
306 if (entry->flags & XFS_ATTR_LOCAL) {
338 // first we need to find leaf block which might contain our entry
358 AttrLeafEntry* entry = (AttrLeafEntry*)(fLeafBuffer + AttrLeafHeader::Size(fInode)); local
366 hashLowerBound<AttrLeafEntry>(entry, left, right, hashValueOfRequest);
368 while (B_BENDIAN_TO_HOST_INT32(entry[left].hashval)
371 uint32 offset = B_BENDIAN_TO_HOST_INT16(entry[lef
[all...]
/haiku/src/tests/kits/storage/
H A DQueryTest.cpp410 // the test entry hierarchy:
480 const QueryTestEntry *entry = testEntries[i]; local
481 switch (entry->kind) {
483 cmdLine += " ; mkdir " + entry->path;
486 cmdLine += " ; touch " + entry->path;
489 cmdLine += " ; ln -s " + entry->linkToPath + " " + entry->path;
507 const QueryTestEntry *entry = testEntries[i]; local
508 switch (entry->kind) {
512 cmdLine += " ; rm -rf " + entry
1012 BEntry entry; local
1080 BEntry entry; local
1251 BEntry entry; local
1264 BEntry entry; local
1302 QueryTestEntry *entry = entries[i]; local
1325 QueryTestEntry *entry = entries[i]; local
1407 BEntry entry; local
1445 BEntry entry; local
[all...]
/haiku/src/preferences/joysticks/
H A DJoyWin.cpp223 BEntry entry(strOldFile.String());
224 entry.Remove();
291 BEntry entry;
292 while ((root.GetNextEntry(&entry)) > B_ERROR ) {
293 if (entry.IsDirectory()) {
294 _AddToList(list, command, rootPath, &entry);
297 entry.GetPath(&path);
534 BEntry entry(path.Path());
535 if (entry.IsSymLink()) {
536 BSymLink symLink(&entry);
[all...]
/haiku/src/apps/diskprobe/
H A DDiskProbe.cpp91 status_t Probe(BEntry& entry,
286 DiskProbe::Probe(BEntry& entry, const char* attribute) argument
289 status_t status = entry.GetRef(&ref);
310 if (!entry.Exists())
313 entry.GetRef(&ref);
370 BEntry entry; local
371 status_t status = entry.SetTo(&ref, traverseLinks);
374 status = Probe(entry, attribute);
380 "%s", "Opening of entry reference buffer for a DiskProbe "
381 "request Alert message. The name of entry referenc
415 BEntry entry; local
[all...]
/haiku/src/servers/package/
H A DCommitTransactionHandler.cpp61 TransactionIssueBuilder& SetPath1(const FSUtils::Entry& entry) argument
63 return SetPath1(entry.Path());
72 TransactionIssueBuilder& SetPath2(const FSUtils::Entry& entry) argument
74 return SetPath2(entry.Path());
559 BEntry entry; local
560 status_t error = entry.SetTo(&entryRef);
562 ERROR("Failed to get package entry for %s: %s\n",
570 // move entry
573 error = entry.MoveTo(&fOldStateDirectory);
624 BEntry entry; local
1047 entry_ref entry; local
1285 BEntry entry; local
1334 BEntry entry; local
1673 BEntry& entry = _entry != NULL ? *_entry : stackEntry; local
1927 _GetPath(const FSUtils::Entry& entry, const BString& fallback) argument
1940 dirent *entry = (dirent*)buffer; local
2002 _AssertEntriesAreEqual(const BEntry& entry, const BDirectory* directory) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dcache.h79 struct CACHED_GENERIC *entry; member in struct:HASH_ENTRY
96 struct CACHED_GENERIC entry[0]; member in struct:CACHE_HEADER
/haiku/src/apps/diskusage/
H A DSnapshot.cpp55 BEntry entry(&ref, true);
56 BPath pathObj(&entry);
H A DApp.cpp45 BEntry entry(argv[i], true);
47 if (entry.GetRef(&ref) == B_OK)
/haiku/src/apps/mail/
H A DWIndex.h80 status_t AddItem(WIndexEntry* entry);
101 virtual size_t _GetEntrySize(WIndexEntry* entry,
/haiku/src/system/kernel/arch/m68k/paging/040/
H A DM68KPagingStructures040.cpp126 page_root_entry entry)
134 info->pgroot_virt[index] = entry;
125 UpdateAllPageDirs(int index, page_root_entry entry) argument
/haiku/headers/os/storage/
H A DFile.h22 BFile(const BEntry *entry, uint32 openMode);
28 status_t SetTo(const BEntry *entry, uint32 openMode);
H A DPath.h25 BPath(const BEntry* entry);
37 status_t SetTo(const BEntry* entry);
/haiku/src/tests/servers/app/newerClipping/drawing/
H A DAccelerantHWInterface.cpp140 the first working entry.
154 struct dirent *entry; local
157 while (count < deviceNumber && (entry = readdir(directory)) != NULL) {
158 if (!strcmp(entry->d_name, ".") || !strcmp(entry->d_name, "..") ||
159 !strcmp(entry->d_name, "stub") || !strcmp(entry->d_name, "vesa"))
167 sprintf(path, "/dev/graphics/%s", entry->d_name);
184 fCardNameInDevFS = entry->d_name;
/haiku/src/servers/mail/
H A DMailDaemonApplication.h86 const BEntry& entry, const BNode& node);
89 static bool _IsEntryInTrash(BEntry& entry);
/haiku/src/kits/debugger/debug_info/
H A DDwarfStackFrameDebugInfo.cpp358 DwarfStackFrameDebugInfo::_GetDIEType(EntryType* entry) argument
360 if (DIEType* typeEntry = entry->GetType())
364 entry->AbstractOrigin())) {
365 entry = abstractOrigin;
366 if (DIEType* typeEntry = entry->GetType())
371 entry->Specification())) {
372 entry = specification;
373 if (DIEType* typeEntry = entry->GetType())
/haiku/src/add-ons/locale/catalogs/plaintext/
H A DCatalog.cpp306 CatMap::Entry entry; local
312 entry = iter.Next();
313 original = entry.key.fString;
314 comment = entry.key.fComment;
315 translated = entry.value;
323 << entry.key.fContext.String() << "\t"
373 BEntry entry(path);
374 BFile node(&entry, B_READ_WRITE);
/haiku/src/tests/add-ons/index_server/fulltext_search/
H A DSearchWindow.cpp98 BEntry entry(result->Text());
99 entry.GetRef(&ref);
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DRPCCallbackServer.h54 status_t ReleaseConnection(ConnectionEntry* entry);
60 status_t ConnectionThread(ConnectionEntry* entry);
/haiku/headers/build/os/storage/
H A DFile.h36 BFile(const BEntry *entry, uint32 openMode);
42 status_t SetTo(const BEntry *entry, uint32 openMode);

Completed in 218 milliseconds

<<11121314151617181920>>