Searched refs:page (Results 1 - 25 of 46) sorted by relevance

12

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/i86xpv/xdt/
H A Dtst.memenable.ksh55 xdt:mem::page-grant-map,
56 xdt:mem::page-grant-unmap,
57 xdt:mem::page-grant-transfer
/vbox/src/VBox/Additions/linux/sharedfolders/
H A Dregops.c37 /* fall back on a page sized buffer. */
64 * contiguous in physical memory (kmalloc or single page), we should
81 * contiguous in physical memory (kmalloc or single page), we should
455 static struct page *sf_reg_nopage(struct vm_area_struct *vma, unsigned long vaddr, int *type)
458 static struct page *sf_reg_nopage(struct vm_area_struct *vma, unsigned long vaddr, int unused)
462 struct page *page; local
487 page = alloc_page(GFP_USER);
488 if (!page) {
489 LogRelFunc(("failed to allocate page\
521 clear_user_page(page_address(page), vmf->pgoff, page); local
606 sf_readpage(struct file *file, struct page *page) argument
637 sf_writepage(struct page *page, struct writeback_control *wbc) argument
688 sf_write_end(struct file *file, struct address_space *mapping, loff_t pos, unsigned len, unsigned copied, struct page *page, void *fsdata) argument
[all...]
H A Dlnkops.c49 char *page = nd_get_link(nd); local
50 if (!IS_ERR(page))
51 free_page((unsigned long)page);
/vbox/src/VBox/Frontends/VirtualBox/src/settings/
H A DVBoxSettingsSelector.cpp64 UISettingsPage *page() const { return mPage; } function in class:SelectorItem
104 UISettingsPage *page = NULL; local
106 page = item->page();
107 return page;
114 if (item->page())
115 list << item->page();
123 if (item->page())
124 list << item->page();
157 if (item->page()
507 QWidget *page = NULL; local
519 QWidget *page = NULL; local
[all...]
H A DUISettingsDialog.cpp96 /* No page-title with tool-bar: */
114 /* Prepare page-stack: */
200 /* Switch to the new page first if we are shrinking: */
205 /* Switch to the new page last if we are zooming: */
287 /* Raise current page priority: */
329 /* Retranslate current page headline: */
349 /* And propagate it to settings-page(s): */
375 /* Add stack-widget page if created: */
391 /* Perform page revalidation: */
392 UISettingsPage *pSettingsPage = pValidator->page();
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/malloc/
H A Dprmalloc.c113 * This structure describes a page's worth of chunks.
118 char *page; /* Pointer to the page */ member in struct:pginfo
119 u_short size; /* size of this page's chunks */
129 char *page; /* pointer to free pages */ member in struct:pgfree
155 * The size of a page.
163 * Half a page.
196 * The offset from pagenumber to index into the page directory
201 * The last index in the page directory we care about
206 * Pointer to page director
825 u_long osize,page,index,tmp_index; local
928 free_pages(char *ptr, u_long page, int index, struct pginfo *info) argument
1041 free_bytes(void *ptr, u_long page, int index, struct pginfo *info) argument
1112 u_long page; local
[all...]
/vbox/src/VBox/VMM/VMMR3/
H A DCSAM.cpp199 SSMFIELD_ENTRY_RCPTR( CSAMPAGEREC, page.pPageGC),
202 SSMFIELD_ENTRY_GCPHYS( CSAMPAGEREC, page.GCPhys),
203 SSMFIELD_ENTRY( CSAMPAGEREC, page.fFlags),
204 SSMFIELD_ENTRY( CSAMPAGEREC, page.uSize),
206 SSMFIELD_ENTRY_HCPTR_NI( CSAMPAGEREC, page.pBitmap),
207 SSMFIELD_ENTRY( CSAMPAGEREC, page.fCode32),
208 SSMFIELD_ENTRY( CSAMPAGEREC, page.fMonitorActive),
209 SSMFIELD_ENTRY( CSAMPAGEREC, page.fMonitorInvalidation),
211 SSMFIELD_ENTRY( CSAMPAGEREC, page.enmTag),
212 SSMFIELD_ENTRY( CSAMPAGEREC, page
500 CSAMPAGEREC page = *pPage; local
647 CSAMPAGEREC page; local
[all...]
/vbox/src/VBox/VMM/VMMAll/
H A DCSAMAll.cpp48 * Check if this page needs to be analysed by CSAM
60 LogFlow(("CSAMGCExecFault: for page %08X scanned=%d\n", pvFault, CSAMIsPageScanned(pVM, pvFault)));
76 * Check if this page was previously scanned by CSAM
80 * @param pPage GC page address
85 uintptr_t page; local
88 page = (uintptr_t)pPage;
89 pgdir = page >> X86_PAGE_4M_SHIFT;
90 bit = (page & X86_PAGE_4M_OFFSET_MASK) >> X86_PAGE_4K_SHIFT;
101 * Mark a page as scanned/not scanned
107 * @param pPage GC page addres
114 uintptr_t page; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/ResetVector/Vtf0/Ia32/
H A DFlat32ToFlat64.asm21 ; Macro for filling in page table entries with EAX as base content.
40 ; Macro for filling in page table entries with zeros.
58 ; The address of the page tables.
81 ; Produce our own page table that does not reside in ROM, since the PGM
85 ; First, set up page directories with 2MB pages for the first 4GB.
89 ; Second, set up page a directory pointer table with 4 entries pointing to
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/
H A DVBoxGuestRAMSlider.cpp86 * double cbRamOverhead = cbRam * 0.0390625; // 160 bytes per page.
157 /* Setup the scale so that ticks are at page step boundaries */
167 * Calculates a suitable page step size for the given max value. The returned
169 * page size is 4.
173 /* reasonable max. number of page steps is 32 */
174 uint page = ((uint) aMax + 31) / 32; local
176 uint p = page, p2 = 0x1;
179 if (page != p2)
/vbox/src/VBox/Frontends/VirtualBox/src/wizards/
H A DUIWizard.cpp42 /* Enable hide/show description button for 1st page: */
90 * This prevents the using of Enter to jump to the next page. */
110 button(QWizard::CustomButton1)->setToolTip(tr("Switch to <nobr><b>Expert Mode</b></nobr>, a one-page dialog for experienced users."));
125 qobject_cast<UIWizardPage*>(page(ids[i]))->retranslate();
130 /* Configure page first: */
132 /* Add page finally: */
149 qobject_cast<UIWizardPage*>(page(ids[i]))->markReady();
151 /* Make sure custom buttons shown even if final page is first to show: */
161 /* Get enumerated page ID: */
163 /* Get corresponding page
[all...]
/vbox/src/VBox/Runtime/r0drv/linux/
H A Dalloc-r0drv-linux.c164 struct page **papPages;
174 papPages = (struct page **)kmalloc(cPages * sizeof(papPages[0]), GFP_KERNEL | __GFP_NOWARN);
197 struct page **papPagesIterator = papPages;
336 struct page **papPages = pHdrEx->pVmArea->pages;
374 * The allocation is page aligned and the content is undefined.
376 * @returns Pointer to the memory block. This is page aligned.
385 struct page *paPages;
394 * Allocate page pointer array.
458 struct page *paPages;
471 * Restore page attribute
[all...]
H A Dthe-linux-kernel.h157 # define page_to_pfn(page) ((page) - mem_map)
283 * the page attributes from PAGE_KERNEL to something else, because there appears
/vbox/src/VBox/Frontends/VirtualBox/src/settings/machine/
H A DUIMachineSettingsSerial.cpp241 /* Creating port page: */
297 /* Get port page: */
300 /* Load port data to page: */
310 /* Polish page finally: */
324 /* Getting port page: */
390 /* Get current tab/page: */
392 UIMachineSettingsSerial *page = static_cast<UIMachineSettingsSerial*>(pTab); local
393 if (!page->mGbSerial->isChecked())
401 const QString strIRQ(page->mLeIRQ->text());
402 const QString strIOPort(page
455 UIMachineSettingsSerial *page = local
[all...]
/vbox/src/VBox/ValidationKit/bootsectors/
H A Dbootsector2-cpu-pf-1.asm39 ;; Base address at which we can start testing page tables and page directories.
41 ;; Base address at which we can start testing the page pointer table.
43 ;; Base address at which we can start testing the page map level 4.
H A Dbootsector2-cpu-xcpt-1.asm42 ;; Base address at which we can start testing page tables and page directories.
44 ;; Base address at which we can start testing the page pointer table.
46 ;; Base address at which we can start testing the page map level 4.
/vbox/src/VBox/Devices/Graphics/BIOS/
H A Dvgabios.c327 static void vga_get_cursor_pos(uint8_t page, uint16_t STACK_BASED *scans, uint16_t STACK_BASED *loc) argument
329 if (page > 7) {
335 *loc = read_word(BIOSMEM_SEG,BIOSMEM_CURSOR_POS + page * 2);
340 static void vga_read_char_attr(uint8_t page, uint16_t STACK_BASED *chr_atr) argument
352 // Get the cursor pos for the page
353 vga_get_cursor_pos(page, &dummy, &cursor);
363 address = SCREEN_MEM_START(nbcols, nbrows, page) + (xcurs + ycurs * nbcols) * 2;
420 static void vga_read_pixel(uint8_t page, uint16_t col, uint16_t row, uint16_t STACK_BASED *pixel) argument
545 static void biosfn_set_cursor_pos (uint8_t page, uint16_t cursor) argument
551 if(page>
579 biosfn_set_active_page(uint8_t page) argument
929 biosfn_scroll(uint8_t nblines, uint8_t attr, uint8_t rul, uint8_t cul, uint8_t rlr, uint8_t clr, uint8_t page, uint8_t dir) argument
1235 biosfn_write_char_attr(uint8_t car, uint8_t page, uint8_t attr, uint16_t count) argument
1292 biosfn_write_char_only(uint8_t car, uint8_t page, uint8_t attr, uint16_t count) argument
1424 biosfn_write_teletype(uint8_t car, uint8_t page, uint8_t attr, uint8_t flag) argument
1716 biosfn_write_string(uint8_t flag, uint8_t page, uint8_t attr, uint16_t count, uint8_t row, uint8_t col, uint16_t seg, uint16_t offset) argument
[all...]
/vbox/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/
H A DUIWizardCloneVMPageBasic2.cpp83 /* On older Qt versions the content of the current page isn't updated when
92 /* Translate page: */
116 /* Translate page: */
122 /* This page could be final: */
147 return m_pFullCloneRadio->isChecked() && wizard()->page(UIWizardCloneVM::Page3) ? UIWizardCloneVM::Page3 : -1;
H A DUIWizardCloneVM.cpp60 KCloneMode cloneMode = (mode() == WizardMode_Basic && page(Page3)) ||
61 (mode() == WizardMode_Expert && page(PageExpert)) ?
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/igbvf/
H A Digbvf.h118 struct page *page;
122 struct page *page;
/vbox/src/VBox/Devices/PC/BIOS/
H A Dfloppy.c453 uint8_t page, mode_register, val8, media_state; local
554 page = (ES >> 12); // upper 4 bits
559 // in case of carry, adjust page by 1
560 page++;
586 base_count, page, base_address);
594 BX_DEBUG_INT13_FL("setting page register\n");
596 outb(0x0081, page);
695 page = (ES >> 12); // upper 4 bits
700 // in case of carry, adjust page by 1
701 page
[all...]
/vbox/src/VBox/VMM/VMMRC/
H A DMMRamRCA.asm33 ; MMRamGC page fault handler must be installed prior this call for safe operation.
78 ; Read error - we will be here after our page fault handler.
139 ; Write error - we will be here after our page fault handler.
/vbox/src/VBox/Frontends/VirtualBox/src/extensions/
H A DQIWidgetValidator.h132 UISettingsPage* page() const { return m_pPage; } function in class:UIPageValidator
/vbox/src/VBox/VMM/testcase/
H A DtstMicroRCA.asm149 ; Invalidate page 0.
163 ; Invalidate the current code page.
178 ; Invalidate page 0.
262 ; Generate a #PF accessing page 0 in
289 ; Generate a #PF accessing page 0 in ring-1
329 ; Generate a #PF accessing page 0 in ring-2
369 ; Generate a #PF accessing page 0 in ring-3
/vbox/src/VBox/Runtime/r0drv/solaris/
H A Dthe-solaris-kernel.h51 #include <vm/page.h>

Completed in 1790 milliseconds

12