Searched refs:entry (Results 251 - 275 of 922) sorted by last modified time

<<11121314151617181920>>

/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/boot/platform/efi/arch/generic/
H A Dgeneric_mmu.cpp23 efi_memory_descriptor* entry = (efi_memory_descriptor *)(addr + i * descriptorSize); local
24 switch (entry->Type) {
30 uint64_t base = entry->PhysicalStart;
31 uint64_t end = entry->PhysicalStart + entry->NumberOfPages * B_PAGE_SIZE;
55 efi_memory_descriptor* entry = (efi_memory_descriptor *)(addr + i * descriptorSize); local
56 switch (entry->Type) {
64 uint64_t base = entry->PhysicalStart;
65 uint64_t size = entry->NumberOfPages * B_PAGE_SIZE;
86 efi_memory_descriptor* entry local
[all...]
/haiku/src/kits/shared/
H A DIconView.cpp65 BEntry entry(path.Path());
66 BNode node(&entry);
H A DIconButton.cpp338 BEntry entry(pathToBitmap, true);
339 if (!entry.Exists()) {
/haiku/src/apps/installer/
H A DWorkerThread.cpp115 virtual bool ShouldCopyEntry(const BEntry& entry, const char* path, argument
607 // the system entry is a file or a symlink
752 BEntry entry; local
753 while (directory.GetNextEntry(&entry) == B_OK) {
755 if (entry.GetName(name) != B_OK)
772 entry.GetPath(&path);
/haiku/src/system/kernel/arch/x86/paging/pae/
H A DX86VMTranslationMapPAE.cpp54 void PrintPageTableEntry(TraceOutput& out, pae_page_table_entry entry) argument
57 entry & X86_PAE_PTE_ADDRESS_MASK,
58 (entry & X86_PAE_PTE_PRESENT) != 0 ? 'P' : '-',
59 (entry & X86_PAE_PTE_WRITABLE) != 0 ? 'W' : '-',
60 (entry & X86_PAE_PTE_USER) != 0 ? 'U' : '-',
61 (entry & X86_PAE_PTE_NOT_EXECUTABLE) != 0 ? '-' : 'X',
62 (entry & X86_PAE_PTE_GLOBAL) != 0 ? 'G' : '-',
63 (entry & X86_PAE_PTE_WRITE_THROUGH) != 0 ? "WT" : "--",
64 (entry & X86_PAE_PTE_CACHING_DISABLED) != 0 ? "UC" : "--",
65 (entry
73 Map(X86VMTranslationMapPAE* map, addr_t virtualAddress, pae_page_table_entry entry) argument
100 Unmap(X86VMTranslationMapPAE* map, addr_t virtualAddress, pae_page_table_entry entry) argument
194 ClearFlagsUnmap(X86VMTranslationMapPAE* map, addr_t virtualAddress, pae_page_table_entry entry) argument
418 pae_page_table_entry* entry = pageTable local
906 pae_page_table_entry entry local
957 pae_page_table_entry entry local
1030 pae_page_table_entry entry = pageTable[index]; local
1089 pae_page_table_entry* entry local
1129 pae_page_table_entry* entry local
1251 pae_page_table_entry entry = pageTable[pteIndex]; local
1315 pae_page_table_entry entry = pageTable[pteIndex]; local
[all...]
/haiku/src/apps/mail/
H A DWIndex.cpp244 WIndex::AddItem(WIndexEntry *entry) argument
248 memcpy(((WIndexEntry *)(fEntryList + (fEntries * fEntrySize))), entry,
397 WIndex::_GetEntrySize(WIndexEntry *entry, const char *entryData) argument
400 (void)entry;
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DShortDirectory.cpp26 ShortDirectory::GetFileType(ShortFormEntry* entry) argument
29 return entry->name[entry->namelen];
61 ShortDirectory::GetEntryIno(ShortFormEntry* entry) argument
64 return GetIno((ShortFormInodeUnion*)(entry->name
65 + entry->namelen + sizeof(uint8)));
67 return GetIno((ShortFormInodeUnion*)(entry->name + entry->namelen));
97 ShortFormEntry* entry = FirstEntry(); local
98 TRACE("Length of first entry
142 ShortFormEntry* entry = FirstEntry(); local
[all...]
/haiku/src/apps/deskbar/
H A DStatusView.h121 status_t LoadAddOn(BEntry* entry, int32* id,
144 BEntry &entry, bool isAddon);
/haiku/src/kits/tracker/
H A DIconMenuItem.cpp118 ModelMenuItem::SetEntry(const BEntry* entry) argument
120 return fModel.SetTo(entry);
H A DNodePreloader.cpp185 BEntry entry(&ref);
186 if (!entry.IsFile())
H A DIconCache.h78 kDisabled = 0x10, // inactive nav menu entry
148 // to some other entry that does
159 const SharedCacheEntry* entry);
161 IconCacheEntry* entry);
282 void SetAliasFor(IconCacheEntry* entry,
284 IconCacheEntry* ResolveIfAlias(IconCacheEntry* entry) const;
327 // special cache entry that has to be deleted explicitly
350 // used by permanent NodeIconCache entries, when an entry gets deleted
391 // used by permanent NodeIconCache entries, when an entry gets
468 LazyBitmapAllocator* lazyBitmap, IconCacheEntry* entry);
[all...]
H A DNavigator.cpp168 BEntry entry(&ref, true);
169 if (!entry.IsDirectory()) {
170 entry.GetRef(&ref);
189 BEntry entry; local
190 if (entry.SetTo(fBackHistory.ItemAt(itemCount - 2)->Path()) == B_OK)
191 SendNavigationMessage(kActionBackward, &entry, option);
200 BEntry entry; local
201 if (entry.SetTo(fForwHistory.LastItem()->Path()) == B_OK)
202 SendNavigationMessage(kActionForward, &entry, option);
210 BEntry entry; local
221 SendNavigationMessage(NavigationAction action, BEntry* entry, bool option) argument
285 BEntry entry; local
336 BEntry entry; local
[all...]
/haiku/src/servers/app/decorator/
H A DDefaultDecorator.cpp826 decorator_bitmap* entry = new(std::nothrow) decorator_bitmap;
827 if (entry == NULL) {
832 entry->item = item;
833 entry->down = down;
834 entry->width = width;
835 entry->height = height;
836 entry->bitmap = bitmap;
837 entry->baseColor = colors[COLOR_BUTTON];
838 entry->lightColor = colors[COLOR_BUTTON_LIGHT];
839 entry
[all...]
/haiku/src/add-ons/print/transports/ipp/
H A DIpp.cpp135 const IPPPrinterMap::Entry& entry = iterator.Next(); local
136 msg->AddString("port_id", entry.value->fURI);
138 BString name = entry.value->fInfo;
139 if (name.Length() && entry.value->fLocation.Length()) {
141 name.Append(entry.value->fLocation);
/haiku/src/system/kernel/scheduler/
H A Dscheduler_cpu.cpp111 cpu_ent* entry = &gCPU[fCPUNumber]; local
114 SpinLocker locker(entry->irqs_lock);
116 = (irq_assignment*)list_get_first_item(&entry->irqs);
123 irq = (irq_assignment*)list_get_first_item(&entry->irqs);
379 CPUEntry* entry = PeekRoot(); local
380 while (entry) {
381 int32 cpu = entry->ID();
382 int32 key = GetKey(entry);
384 entry->GetLoad() / 10);
387 sDebugCPUHeap.Insert(entry, ke
623 CoreEntry* entry = PeekMinimum(); local
706 DumpCoreLoadHeapEntry(CoreEntry* entry) argument
[all...]
/haiku/src/system/kernel/fs/
H A DEntryCache.cpp56 rw_lock_init(&fLock, "entry cache");
65 EntryCacheEntry* entry = fEntries.Clear(true); local
66 while (entry != NULL) {
67 EntryCacheEntry* next = entry->hash_link;
68 free(entry);
69 entry = next;
115 EntryCacheEntry* entry = fEntries.Lookup(key);
116 if (entry != NULL) {
117 entry->node_id = nodeID;
118 entry
154 EntryCacheEntry* entry = fEntries.Lookup(key); local
183 EntryCacheEntry* entry = fEntries.Lookup(key); local
247 _AddEntryToCurrentGeneration(EntryCacheEntry* entry) argument
[all...]
H A DEntryCache.h108 EntryCacheEntry* entry);
/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/preferences/backgrounds/
H A DImageFilePanel.cpp115 BEntry entry(&ref);
/haiku/src/add-ons/input_server/devices/mouse/
H A DMouseInputDevice.cpp824 BEntry entry; local
826 while (dir.GetNextEntry(&entry) == B_OK) {
828 entry.GetPath(&path);
835 if (entry.IsDirectory())
/haiku/src/apps/musiccollection/
H A DFileMonitor.h22 entry_ref entry; member in struct:WatchedFile
118 virtual bool ReadNextEntry(entry_ref& entry) = 0;
H A DMusicCollectionWindow.cpp56 //ListItem* item1 = new ListItem(file->entry.name, file);
66 BNode node(&file->entry);
93 BString title= (strcmp(buffer, "") == 0) ? file->entry.name
/haiku/src/add-ons/kernel/file_systems/reiserfs/
H A DSettings.cpp62 // load the driver settings and find the entry for the volume
82 // load the driver settings and find the entry for the volume
135 const char *entry = NULL; local
137 entry = fHiddenEntries.ItemAt(index).GetString();
138 return entry;
151 for (int32 i = 0; const char *entry = HiddenEntryAt(i); i++)
152 PRINT((" `%s'\n", entry));
186 PRINT((" hidden entry: `%s'\n", parameter->values[i]));
194 PRINT((" checking hidden entry names...'\n"));
196 String &entry local
[all...]
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DAttributeIndexImpl.cpp177 virtual void EntryRemoved(Entry *entry);
379 Entry *entry = GetCurrent(); local
380 if (entry) {
382 if ((*attribute)->GetNode() == entry->GetNode()) {
385 FATAL("Node of current attribute and node of current entry "
388 entry->GetNode()->GetID());
389 entry = NULL;
392 FATAL("We have a current entry (`%s', node: %" B_PRIdINO "), but no current "
393 "attribute.\n", entry->GetName(),
394 entry
[all...]

Completed in 100 milliseconds

<<11121314151617181920>>