Searched refs:page (Results 26 - 50 of 107) sorted by relevance

12345

/haiku/src/add-ons/print/drivers/canon_lips/lips3/
H A DLips3.h22 virtual bool StartPage(int page);
24 virtual bool EndPage(int page);
/haiku/src/add-ons/print/drivers/canon_lips/lips4/
H A DLips4.h23 virtual bool StartPage(int page);
25 virtual bool EndPage(int page);
/haiku/src/add-ons/print/drivers/postscript/
H A DPS.h23 virtual bool StartPage(int page);
25 virtual bool EndPage(int page);
/haiku/src/apps/showimage/
H A DImageFileNavigator.h33 void SetTo(const entry_ref& ref, int32 page = 1,
38 // example. The page count is determined at image loading time.
48 bool GoToPage(int32 page);
H A DImageCache.cpp35 int32 page; member in struct:QueueEntry
87 ImageCache::RetrieveImage(const entry_ref& ref, int32 page, argument
92 CacheMap::iterator find = fCacheMap.find(std::make_pair(ref, page));
106 QueueMap::iterator findQueue = fQueueMap.find(std::make_pair(ref, page));
128 entry->page = page;
144 std::make_pair(entry->ref, entry->page), entry));
207 self->fQueueMap.erase(std::make_pair(entry->ref, entry->page));
242 if (queueEntry->page != 0
243 && ioExtension.AddInt32("/documentIndex", queueEntry->page) !
[all...]
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPDriver.h41 bool StartPage(int page);
43 bool EndPage(int page);
/haiku/src/system/kernel/arch/m68k/paging/040/
H A DM68KVMTranslationMap040.cpp84 vm_page *page; local
92 page = vm_lookup_page(pgtbl_pn);
93 pgtbl = (page_table_entry *)page;
95 if (!page) {
96 panic("destroy_tmap: didn't find pgtable page\n");
99 DEBUG_PAGE_ACCESS_START(page);
100 vm_page_set_state(page, PAGE_STATE_FREE);
117 vm_page* page = vm_lookup_page(address / B_PAGE_SIZE);
118 if (!page)
119 panic("destroy_tmap: didn't find pgtable page\
236 vm_page *page; local
287 vm_page *page; local
577 vm_page* page = vm_lookup_page( local
666 vm_page* page = mapping->page; local
[all...]
/haiku/src/system/kernel/arch/ppc/paging/classic/
H A DPPCVMTranslationMapClassic.cpp24 2) segment + page translation. The first mechanism does this directly
35 (page table) |
48 setting a register to another page directory, since we only have one
49 page table containing both kernel and user address mappings. Instead we
70 * The current locking scheme is insufficient. The page table is a resource
158 vm_page* page = vm_lookup_page(address / B_PAGE_SIZE);
159 if (!page)
160 panic("destroy_tmap: didn't find pgtable page\n");
161 DEBUG_PAGE_ACCESS_START(page);
162 vm_page_set_state(page, PAGE_STATE_FRE
1269 vm_page* page = vm_lookup_page(physicalAddress / B_PAGE_SIZE); local
[all...]
/haiku/src/system/kernel/arch/ppc/paging/460/
H A DPPCVMTranslationMap460.cpp24 2) segment + page translation. The first mechanism does this directly
35 (page table) |
48 setting a register to another page directory, since we only have one
49 page table containing both kernel and user address mappings. Instead we
70 * The current locking scheme is insufficient. The page table is a resource
158 vm_page* page = vm_lookup_page(address / B_PAGE_SIZE);
159 if (!page)
160 panic("destroy_tmap: didn't find pgtable page\n");
161 DEBUG_PAGE_ACCESS_START(page);
162 vm_page_set_state(page, PAGE_STATE_FRE
1269 vm_page* page = vm_lookup_page(physicalAddress / B_PAGE_SIZE); local
[all...]
/haiku/headers/private/kernel/vm/
H A DVMCache.h34 PAGE_EVENT_NOT_BUSY = 0x01 // page not busy anymore
103 void WaitForPageEvents(vm_page* page, uint32 events,
105 void NotifyPageEvents(vm_page* page, uint32 events) argument
107 _NotifyPageEvents(page, events); }
108 inline void MarkPageUnbusy(vm_page* page);
111 void InsertPage(vm_page* page, off_t offset);
112 void RemovePage(vm_page* page);
113 void MovePage(vm_page* page, off_t offset);
114 void MovePage(vm_page* page);
213 void _NotifyPageEvents(vm_page* page, uint3
333 MarkPageUnbusy(vm_page* page) argument
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/
H A Dif_rtwn_fw.c58 rtwn_fw_loadpage(struct rtwn_softc *sc, int page, const uint8_t *buf, argument
66 reg = RW(reg, R92C_MCUFWDL_PAGE, page);
88 "%s: could not load firmware page %d (offset %u)\n",
89 __func__, page, off);
165 int page; local
170 for (page = 0; page < maxpages; page++) {
171 error = rtwn_fw_loadpage(sc, page, curr_ptr,
177 if (page !
[all...]
/haiku/src/system/kernel/arch/x86/paging/pae/
H A DX86VMTranslationMapPAE.cpp244 // cycle through and free all of the user space page tables
258 vm_page* page = vm_lookup_page(address / B_PAGE_SIZE); local
259 if (page == NULL)
261 "didn't find page table page: page address: %#"
265 DEBUG_PAGE_ACCESS_START(page);
266 vm_page_set_state(page, PAGE_STATE_FREE);
290 // get the physical page mapper
299 // allocate a physical page mappe
390 vm_page *page = vm_page_allocate_page(reservation, local
686 vm_page* page = vm_lookup_page( local
773 vm_page* page = mapping->page; local
[all...]
/haiku/src/apps/bootmanager/
H A DBootManagerController.cpp161 // cannot leave the current state/page
246 WizardPageView* page = NULL; local
252 page = new DrivesPage(wizard, fBootMenus, &fSettings, "drives");
255 page = _CreateErrorEntryPage();
260 page = _CreateSaveMBRPage(frame);
264 page = _CreateMBRSavedPage();
267 page = new PartitionsPage(&fSettings, "partitions");
271 page = new DefaultPartitionPage(&fSettings, frame, "default");
274 page = _CreateInstallSummaryPage();
277 page
[all...]
H A DWizardView.h28 virtual void SetPage(WizardPageView* page);
H A DWizardController.cpp108 WizardPageView* page = CreatePage(fStack->State(), wizard);
109 wizard->SetPage(page);
/haiku/src/system/kernel/cache/
H A Dfile_cache.cpp159 vm_page* page = vm_page_allocate_page(reservation, local
162 fCache->InsertPage(page, fOffset + pos);
165 page->physical_page_number * B_PAGE_SIZE, B_PAGE_SIZE);
166 fPages[i++] = page;
204 // clear partial page
298 // have been written back in order to relieve the page pressure
312 vm_page* page; local
314 (page = it.Next()) != NULL && left > 0;) {
315 if (page->State() == PAGE_STATE_CACHED && !page
395 vm_page* page = pages[pageIndex++] = vm_page_allocate_page( local
519 vm_page* page = pages[pageIndex++] = vm_page_allocate_page( local
781 vm_page* page = cache->LookupPage(offset); local
998 vm_page* page = cache->LookupPage(offset); local
1119 vm_page* page = vm_page_allocate_page(&reservation, local
1274 vm_page* page = cache->LookupPage(newSize - partialBytes); local
[all...]
/haiku/headers/libs/print/libprint/
H A DPreview.h32 PreviewPage(int32 page, PrintJobPage* pjp);
74 void ShowFindPage(int32 page);
92 void _LoadPage(int32 page);
94 bool _IsPageLoaded(int32 page) const;
/haiku/src/add-ons/print/drivers/lpstyl/
H A DLpstyl.h35 bool EndPage(int page);
/haiku/src/system/kernel/arch/riscv64/
H A Darch_cpu.cpp135 addr_t page = pages[i]; local
136 if (IS_KERNEL_ADDRESS(page))
137 FlushTlbPage(page);
139 FlushTlbPageAsid(page, 0);
/haiku/src/add-ons/kernel/bus_managers/virtio/
H A DVirtioBalloonDevice.cpp150 //TRACE("allocating page %" B_PRIu32 " pages\n", i);
151 vm_page* page = vm_page_allocate_page(&reservation, local
153 if (page == NULL) {
159 info->page = page;
160 fBuffer[i] = (phys_addr_t)page->physical_page_number
178 vm_page* page = info->page; local
179 fBuffer[i] = (phys_addr_t)page->physical_page_number
181 vm_page_free(NULL, page);
[all...]
/haiku/src/kits/tracker/
H A DTrackerSettingsWindow.h64 void ShowPage(SettingsPage page);
/haiku/src/add-ons/print/drivers/pcl6/
H A DPCL6.h28 virtual bool StartPage(int page);
30 virtual bool EndPage(int page);
/haiku/src/system/boot/platform/bios_ia32/
H A Dsmp_trampoline.S5 // expects a stack page like this:
8 // 0x9eff8 : page dir
46 popl %eax # get the page dir
47 movl %eax,%cr3 # set the page dir
/haiku/src/system/boot/platform/pxe_ia32/
H A Dsmp_trampoline.S5 // expects a stack page like this:
8 // 0x8cff8 : page dir
46 popl %eax # get the page dir
47 movl %eax,%cr3 # set the page dir
/haiku/src/system/kernel/arch/arm/
H A Darch_cpu.cpp78 arch_cpu_invalidate_TLB_page(addr_t page) argument
83 // TLBIMVAIS(page)
85 : : "r" (page));

Completed in 158 milliseconds

12345