Searched refs:fEntries (Results 1 - 25 of 62) sorted by last modified time

123

/haiku/src/system/kernel/
H A Dcondition_variable.cpp107 fVariable->fEntries.Add(this);
153 if (fVariable->fEntries.Contains(this))
154 fVariable->fEntries.Remove(this);
233 new(&fEntries) EntryList;
282 if (!fEntries.IsEmpty())
368 if (!fEntries.IsEmpty()) {
388 while (ConditionVariableEntry* entry = fEntries.RemoveHead()) {
451 int count = variable->fEntries.Count();
466 for (EntryList::ConstIterator it = fEntries.GetIterator();
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A DFUSEVolume.cpp40 fEntries(NULL),
51 free(fEntries);
61 Entry* newEntries = (Entry*)realloc(fEntries,
66 fEntries = newEntries;
86 fEntries[fEntryCount].nodeID = nodeID;
87 fEntries[fEntryCount].nameOffset = fNamesSize;
88 fEntries[fEntryCount].nameSize = nameSize;
108 const Entry& entry = fEntries[index];
136 Entry* fEntries; member in struct:FUSEVolume::DirEntryCache
720 error = fEntries
[all...]
H A DFUSEVolume.h223 FUSEEntryTable fEntries; member in class:UserlandFS::FUSEVolume
/haiku/src/kits/debugger/dwarf/
H A DBaseUnit.h81 Array<DebugInfoEntry*> fEntries; member in class:BaseUnit
H A DBaseUnit.cpp33 for (int32 i = 0; i < fEntries.Count(); i++)
34 delete fEntries[i];
48 if (!fEntries.Add(entry))
51 fEntries.Remove(fEntries.Count() - 1);
76 return fEntries.Count();
84 entry = fEntries[index];
92 if (fEntries.IsEmpty())
97 int upper = fEntries.Count() - 1;
106 return fEntryOffsets[lower] == offset ? fEntries[lowe
[all...]
/haiku/headers/private/kernel/
H A Dcondition_variable.h96 EntryList fEntries; member in struct:ConditionVariable
/haiku/src/system/kernel/events/
H A Dwait_for_objects.cpp212 fEntries(NULL),
225 fEntries = (FDEntry*)alloc_tracing_buffer(fCount * sizeof(FDEntry));
226 if (fEntries != NULL) {
230 fEntries[i].fd = fds->fd;
231 fEntries[i].events = events;
240 if (fEntries == NULL)
261 out.Print("<%u: ", fEntries[i].fd);
264 out.Print(", <%u: ", fEntries[i].fd);
268 if ((fEntries[i].events & kEventNames[k].event) != 0) {
287 FDEntry* fEntries; member in class:WaitForObjectsTracing::PollTraceEntry
[all...]
/haiku/src/tests/add-ons/kernel/kernelland_emu/
H A Dcondition_variable.cpp86 fVariable->fEntries.Add(this);
132 fVariable->fEntries.Add(this);
141 fVariable->fEntries.Remove(this);
157 new(&fEntries) EntryList;
168 new(&fEntries) EntryList;
189 if (!fEntries.IsEmpty())
216 if (!fEntries.IsEmpty()) {
238 while (ConditionVariableEntry* entry = fEntries.RemoveHead()) {
/haiku/src/apps/mail/
H A DWIndex.cpp181 fEntries = head.entries;
184 fBlocks = fEntries / fEntriesPerBlock + 1;;
191 if (fEntries)
201 if (fEntries && !fIsSorted)
205 head.entries = fEntries;
210 if (fEntries)
220 if (!fEntries)
228 Ub = fEntries - 1;
248 memcpy(((WIndexEntry *)(fEntryList + (fEntries * fEntrySize))), entry,
250 fEntries
[all...]
/haiku/src/system/kernel/fs/
H A DEntryCache.cpp58 new(&fEntries) EntryTable;
65 EntryCacheEntry* entry = fEntries.Clear(true);
80 status_t error = fEntries.Init();
115 EntryCacheEntry* entry = fEntries.Lookup(key);
139 fEntries.Insert(entry);
154 EntryCacheEntry* entry = fEntries.Lookup(key);
158 fEntries.Remove(entry);
183 EntryCacheEntry* entry = fEntries.Lookup(key);
233 for (EntryTable::Iterator it = fEntries.GetIterator();
268 fEntries
[all...]
H A DEntryCache.h112 EntryTable fEntries; member in class:EntryCache
/haiku/src/system/boot/loader/file_systems/tarfs/
H A Dtarfs.cpp136 EntryList fEntries; member in class:TarFS::Directory
336 while (TarFS::Entry* entry = fEntries.Head()) {
337 fEntries.Remove(entry);
349 = new(nothrow) EntryIterator(fEntries.GetIterator());
385 EntryIterator iterator(fEntries.GetIterator());
445 *iterator = fEntries.GetIterator();
479 fEntries.Add(dir);
528 dir->fEntries.Add(entry);
537 return fEntries.IsEmpty();
/haiku/src/system/libroot/os/
H A Dimage.cpp30 fEntries(NULL),
41 delete[] fEntries;
71 && fEntries[fNextEntryIndex].index == index) {
72 env = fEntries[fNextEntryIndex].replacement;
82 size_t envSize = _FillSlot(fEntries[i].replacement, buffer);
127 fEntries = new(std::nothrow) Entry[entryCount];
128 if (fEntries == NULL)
140 fEntries[fEntryCount].replacement = out;
141 fEntries[fEntryCount].index = _FindEnvEntry(env, envCount, out,
143 if (fEntries[fEntryCoun
194 Entry* fEntries; member in struct:EnvironmentFilter
[all...]
/haiku/src/system/boot/loader/file_systems/packagefs/
H A DPackageSettingsItem.cpp24 fEntries(),
32 Entry* entry = fEntries.Clear(true);
84 if (fEntries.Init() != B_OK)
105 fEntries.Insert(entry);
152 return fEntries.Lookup(EntryKey(parent, name));
160 return fEntries.Lookup(EntryKey(parent, name, nameLength));
H A Dpackagefs.cpp209 while (PackageNode* node = fEntries.RemoveHead())
215 fEntries.Add(node);
220 return fEntries.Head();
225 return fEntries.GetNext(child);
250 fEntries.Remove(child);
264 for (NodeList::Iterator it = fEntries.GetIterator();
276 NodeList fEntries; member in struct:PackageFS::PackageDirectory
H A DPackageSettingsItem.h183 EntryTable fEntries; member in class:PackageFS::PackageSettingsItem
/haiku/src/add-ons/kernel/file_systems/packagefs/volume/
H A DPackageSettings.cpp29 fEntries()
36 Entry* entry = fEntries.Clear(true);
48 if (!fName.SetTo(name) || fEntries.Init() != B_OK)
78 fEntries.Insert(entry);
124 return fEntries.Lookup(EntryKey(parent, name));
131 return fEntries.Lookup(EntryKey(parent, name));
H A DPackageSettings.h158 EntryTable fEntries; member in class:PackageSettingsItem
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DInodeDir.cpp290 snapshot->fEntries.Add(entry);
387 cookie->fCurrent = cookie->fSnapshot->fEntries.Head();
390 = cookie->fSnapshot->fEntries.GetNext(cookie->fCurrent);
/haiku/src/add-ons/kernel/file_systems/layers/attribute_overlay/
H A Dattribute_overlay.cpp156 AttributeEntry ** fEntries; member in class:attribute_overlay::AttributeFile
331 fEntries(NULL)
468 fEntries = (AttributeEntry **)malloc(fFile->entry_count
470 if (fEntries == NULL) {
477 fEntries[i] = NULL;
482 fEntries[i] = new(std::nothrow) AttributeEntry(this,
484 if (fEntries[i] == NULL) {
490 totalSize += fEntries[i]->EntrySize() + fEntries[i]->DataSize();
505 if (fEntries !
[all...]
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPConnectionWorker.cpp173 fEntries(entries)
182 if (fEntries.empty())
185 fUID = *fEntries.begin();
186 fEntries.erase(fEntries.begin());
210 return fEntries.empty();
228 MessageUIDList fEntries; member in class:FetchBodiesCommand
456 fEntries(entries),
463 if (fEntries.empty())
466 fUID = *fEntries
487 MessageUIDList fEntries; member in class:UpdateFlagsCommand
[all...]
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DJournal.cpp659 if (logEntry == journal->fEntries.First()) {
660 LogEntry* next = journal->fEntries.GetNext(logEntry);
675 journal->fEntries.Remove(logEntry);
900 fEntries.Add(logEntry);
1124 LogEntryList::Iterator iterator = fEntries.GetIterator();
/haiku/src/add-ons/media/media-add-ons/multi_audio/
H A DTimeComputer.cpp79 Entry& entry = fEntries[fFirstEntry];
89 Entry& entry = fEntries[fLastEntry];
/haiku/src/system/kernel/debug/
H A Dtracing.cpp121 uint32 fEntries; member in class:TracingMetaData
215 return fEntries;
298 fEntries++;
301 fAfterLastEntry, fFirstEntry, fEntries));
310 if (fEntries == 0)
339 fEntries--;
416 TRACE((" out: start %p, entries %ld\n", fFirstEntry, fEntries));
477 metaData->fEntries = 0;
676 fEntries);
677 fEntries
[all...]
/haiku/src/bin/
H A Ddiff_zip.cpp137 fEntries()
143 fEntries[name] = node;
173 fEntries[entry->d_name] = node;
188 for (EntryMap::iterator it = fEntries.begin(); it != fEntries.end();
228 EntryMap::const_iterator it = fEntries.find(entry->d_name);
229 if (it == fEntries.end()) {
262 for (EntryMap::const_iterator it = fEntries.begin();
263 it != fEntries.end(); ++it) {
272 EntryMap fEntries; member in class:Directory
[all...]

Completed in 148 milliseconds

123