Searched refs:entry (Results 101 - 125 of 922) sorted by last modified time

1234567891011>>

/haiku/src/add-ons/kernel/busses/scsi/virtio/
H A DVirtioSCSIController.cpp351 physical_entry entry; local
352 get_memory_map(event, sizeof(struct virtio_scsi_event), &entry, 1);
354 fVirtio->queue_request_v(fEventVirtioQueue, &entry,
/haiku/src/kits/debugger/dwarf/
H A DDebugInfoEntries.cpp2315 // the specification may point to a member entry rather than
2316 // a variable entry
2848 DebugInfoEntry* entry = NULL; local
2852 entry = new(std::nothrow) DIEArrayType;
2855 entry = new(std::nothrow) DIEClassType;
2858 entry = new(std::nothrow) DIEEntryPoint;
2861 entry = new(std::nothrow) DIEEnumerationType;
2864 entry = new(std::nothrow) DIEFormalParameter;
2867 entry = new(std::nothrow) DIEImportedDeclaration;
2870 entry
[all...]
H A DAttributeValue.h123 void SetToReference(DebugInfoEntry* entry) argument
127 this->reference = entry;
H A DAttributeClasses.cpp253 const attribute_name_info_entry& entry = kAttributeNameInfos[i]; local
254 if (entry.value <= DW_AT_loclists_base)
255 sAttributeNameInfos[entry.value] = entry;
258 + (entry.value - DW_AT_call_site_value)] = entry;
263 const attribute_info_entry& entry = kAttributeFormInfos[i]; local
264 sAttributeFormInfos[entry.value] = entry;
/haiku/src/libs/compat/freebsd_network/
H A Dcondvar.cpp57 ConditionVariableEntry entry; local
58 condition->Add(&entry);
62 status = entry.Wait(flags, bigtimeout);
/haiku/headers/private/kernel/
H A Dcondition_variable.h67 void Add(ConditionVariableEntry* entry);
/haiku/src/apps/glteapot/
H A DObjectView.cpp794 int entry; local
796 entry = (fOldestEntry + fHistEntries) % HISTSIZE;
799 entry = fOldestEntry;
803 fFpsHistory[entry] = fps;
/haiku/src/system/kernel/
H A Delf.cpp68 size_t Hash(ValueType* entry) const
69 { return HashKey(entry->id); }
70 ValueType*& GetLink(ValueType* entry) const
71 { return entry->next; }
78 bool Compare(KeyType key, ValueType* entry) const
80 return key == entry->id;
1827 elf_load_user_image(const char *path, Team *team, uint32 flags, addr_t *entry) argument
1834 TRACE(("elf_load: entry path '%s', team %p\n", path, team));
2115 *entry = elfHeader.e_entry + delta;
2136 TRACE(("elf_load_kspace: entry pat
[all...]
H A Dthread.cpp489 // queue the entry
497 // remove the entry
523 this->entry = NULL;
568 if (entry == NULL || !IS_USER_ADDRESS(entry)
692 // Jump to the entry point in user space. Only returns, if something fails.
750 /*! Prepares the given thread's kernel stack for executing its entry function.
753 thread's kernel stack. A pointer to the copy's data is passed to the entry
754 function. The entry function is common_thread_entry().
758 to the entry functio
[all...]
/haiku/src/system/boot/platform/atari_m68k/
H A Dtoscalls.h575 " jbsr (%[entry])\n" \
580 [entry]"a"(gXHDIEntryPoint), \
597 " jbsr (%[entry])\n" \
602 [entry]"a"(gXHDIEntryPoint), \
623 " jbsr (%[entry])\n" \
629 [entry]"a"(gXHDIEntryPoint), \
652 " jbsr (%[entry])\n" \
658 [entry]"a"(gXHDIEntryPoint), \
683 " jbsr (%[entry])\n" \
690 [entry]"
[all...]
/haiku/src/system/kernel/posix/
H A Dxsi_semaphore.cpp999 while (struct sem_undo *entry
1001 MutexLocker _(entry->team->xsi_sem_context->lock);
1002 entry->team->xsi_sem_context->undo_list.Remove(entry);
1003 delete entry;
/haiku/src/add-ons/kernel/file_systems/packagefs/volume/
H A DVolume.cpp716 while (dirent* entry = readdir(dir.Get())) {
717 if (strncmp(entry->d_name, "state_", 6) != 0
718 || strcmp(entry->d_name, packagesState) < 0) {
725 adminDirStat.st_ino, entry->d_name);
906 while (dirent* entry = readdir(dir.Get())) {
908 if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0)
911 // also skip any entry without a ".hpkg" extension
912 size_t nameLength = strlen(entry->d_name);
914 || memcmp(entry
[all...]
/haiku/src/bin/filteredquery/
H A Dquery.cpp108 BEntry entry; local
110 while (query.GetNextEntry(&entry) == B_OK) {
111 if (entry.GetPath(&path) < B_OK) {
112 fprintf(stderr, "%s: could not get path for entry\n", __progname);
173 BEntry entry(volumePath);
174 if (entry.InitCheck() != B_OK) {
179 status_t status = entry.GetVolume(&volume);
H A DFilteredQuery.h36 virtual status_t GetNextEntry(BEntry *entry, bool traverse = false);
H A DFilteredQuery.cpp115 TFilteredQuery::GetNextEntry(BEntry *entry, bool traverse) argument
118 // BQuery::GetNextEntry(BEntry *entry, bool traverse)
123 error = entry->SetTo(&ref, traverse);
/haiku/src/add-ons/tracker/zipomatic/
H A DZipperThread.cpp99 BEntry entry(&dirRef);
101 entry.GetPath(&path);
104 BEntry entry(&lastRef);
106 entry.GetParent(&entry);
107 entry.GetPath(&path);
131 BEntry entry(tryName.String());
132 if (!entry.Exists()) {
134 entry.GetRef(&fOutputEntryRef);
418 BEntry entry(
[all...]
/haiku/src/kits/tracker/
H A DNavMenu.cpp156 BEntry entry(model->EntryRef(), true);
157 if (entry.InitCheck() == B_OK) {
158 if (entry.IsDirectory()) {
163 Model resolvedModel(&entry);
169 // bad entry ref (bad symlink?), disable
205 BEntry entry(ref, true);
206 if (entry.InitCheck() == B_OK) {
208 if (entry.GetRef(&resolvedRef) == B_OK)
406 BEntry entry; local
408 if (fNavDir.device < 0 || entry
490 BEntry entry; local
523 BEntry entry; local
684 BEntry entry; local
[all...]
/haiku/src/apps/icon-o-matic/
H A DMainWindow.cpp347 BEntry entry; local
349 && entry.SetTo(&dir, name, true) >= B_OK
350 && entry.GetRef(&ref) >= B_OK) {
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DQuery.h41 status_t GetNextEntry(struct dirent* entry, size_t size);
43 void LiveUpdate(Entry* entry, Node* node,
H A DQuery.cpp27 status_t GetNextEntry(uint8 *buffer, size_t *keyLength, Entry **entry);
87 if (Entry *entry = fIterator.GetCurrent(buffer, &keyLength)) {
89 *_entry = entry;
93 // get next entry
131 static ino_t EntryGetParentID(Entry* entry) argument
133 return entry->GetParent()->GetID();
136 static Node* EntryGetNode(Entry* entry) argument
138 return entry->GetNode();
141 static ino_t EntryGetNodeID(Entry* entry) argument
143 return entry
146 EntryGetName(Entry* entry, void* buffer, size_t bufferSize) argument
157 EntryGetNameNoCopy(Entry* entry, void* buffer, size_t bufferSize) argument
264 NodeGetNextReferrer(Node* node, Entry* entry) argument
327 GetNextEntry(struct dirent* entry, size_t size) argument
334 LiveUpdate(Entry* entry, Node* node, const char* attribute, int32 type, const void* oldKey, size_t oldLength, const void* newKey, size_t newLength) argument
[all...]
/haiku/src/servers/app/
H A DServerFont.cpp701 FontCacheEntry* entry = NULL;
705 entry = GlyphLayoutEngine::FontCacheEntryFor(*this, false);
706 if (entry == NULL)
709 cacheReference.SetTo(entry);
715 hasArray[charIndex] = entry->CanCreateGlyph(charCode);
753 FontCacheEntry* entry, double x, double y, double advanceX,
820 FontCacheEntry* entry, double x, double y, double advanceX,
887 FontCacheEntry* entry, double x, double y, double advanceX,
940 FontCacheEntry* entry, double x, double y, double advanceX,
964 entry
752 ConsumeGlyph(int32 index, uint32 charCode, const GlyphCache* glyph, FontCacheEntry* entry, double x, double y, double advanceX, double advanceY) argument
819 ConsumeGlyph(int32 index, uint32 charCode, const GlyphCache* glyph, FontCacheEntry* entry, double x, double y, double advanceX, double advanceY) argument
886 ConsumeGlyph(int32 index, uint32 charCode, const GlyphCache* glyph, FontCacheEntry* entry, double x, double y, double advanceX, double advanceY) argument
939 ConsumeGlyph(int32 index, uint32 charCode, const GlyphCache* glyph, FontCacheEntry* entry, double x, double y, double advanceX, double advanceY) argument
1072 ConsumeGlyph(int32 index, uint32 charCode, const GlyphCache* glyph, FontCacheEntry* entry, double x, double y, double advanceX, double advanceY) argument
[all...]
/haiku/src/apps/cortex/ValControl/
H A DValControl.cpp269 [](ValCtrlLayoutEntry& entry) { ValCtrlLayoutEntry::InitChildFrame(entry); }
450 // archive entry
484 ValCtrlLayoutEntry entry = segment->makeLayoutEntry(); local
485 _InsertEntry(entry, nIndex);
494 // the entry's frame rectangle will be filled in
496 ValControl::_Add(ValCtrlLayoutEntry& entry, entry_location from) argument
502 if (entry.pView)
503 AddChild(entry.pView);
506 _InsertEntry(entry, inde
602 _InsertEntry(ValCtrlLayoutEntry& entry, uint16 index) argument
[all...]
/haiku/src/system/kernel/debug/
H A Dcore_dump.cpp1347 elf_note_area_entry entry; local
1348 memset(&entry, 0, sizeof(entry));
1349 entry.na_id = areaInfo->Id();
1350 entry.na_lock = areaInfo->Lock();
1351 entry.na_protection = areaInfo->Protection();
1352 entry.na_base = areaInfo->Base();
1353 entry.na_size = areaInfo->Size();
1354 entry.na_ram_size = areaInfo->RamSize();
1355 writer.Write(entry);
1395 elf_note_image_entry entry; local
1504 elf_note_thread_entry entry; local
[all...]
/haiku/src/apps/icon-o-matic/import_export/
H A DExporter.cpp152 BEntry entry(docRef, true);
153 if (entry.IsDirectory())
159 // if (entry.Exists()) {
167 // && entry.SetTo(tempPath.Path()) >= B_OK
168 // && entry.GetRef(&tempRef) >= B_OK) {
202 // entry.Remove();
210 // BNode destNode(&entry);
239 // ret = entry.Rename(docRef->name, true);
/haiku/src/add-ons/kernel/network/protocols/unix/
H A DUnixFifo.cpp111 while (AncillaryDataEntry* entry = fAncillaryData.RemoveHead()) {
112 gStackModule->delete_ancillary_data_container(entry->data);
113 delete entry;
181 // Adjust ancillary data entry offsets, respectively attach the ones
183 if (AncillaryDataEntry* entry = fAncillaryData.Head()) {
185 while (entry != NULL && offsetDelta > entry->offset) {
186 // entry data have been read -- add ancillary data to request
188 offsetDelta -= entry->offset;
189 request.AddAncillaryData(entry
530 ConditionVariableEntry entry; local
557 ConditionVariableEntry entry; local
588 ConditionVariableEntry entry; local
615 ConditionVariableEntry entry; local
[all...]

Completed in 221 milliseconds

1234567891011>>