HomeSort by relevance Sort by last modified time
    Searched defs:page (Results 151 - 175 of 329) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/linux-tools-perf/
builtin-help.c 36 OPT_SET_UINT('m', "man", &help_format, "show man page", HELP_FORMAT_MAN),
39 OPT_SET_UINT('i', "info", &help_format, "show info page",
117 static void exec_woman_emacs(const char *path, const char *page)
125 strbuf_addf(&man_page, "(woman \"%s\")", page);
131 static void exec_man_konqueror(const char *path, const char *page)
153 strbuf_addf(&man_page, "man:%s(1)", page);
159 static void exec_man_man(const char *path, const char *page)
163 execlp(path, "man", page, NULL);
167 static void exec_man_cmd(const char *cmd, const char *page)
170 strbuf_addf(&shell_cmd, "%s %s", cmd, page);
358 const char *page = cmd_to_page(perf_cmd); local
373 const char *page = cmd_to_page(perf_cmd); local
406 const char *page = cmd_to_page(perf_cmd); local
    [all...]
  /external/linux-tools-perf/util/
trace-event-read.c 206 die("did not read header page");
212 * The size field in the page is of type long,
287 char *page; member in struct:cpu_data
307 if (!cpu_data[cpu].page)
312 free(cpu_data[cpu].page);
313 cpu_data[cpu].page = NULL;
325 ret = read(input_fd, cpu_data[cpu].page, page_size);
327 die("failed to read page");
335 munmap(cpu_data[cpu].page, page_size);
336 cpu_data[cpu].page = NULL
374 void *page = cpu_data[cpu].page; local
    [all...]
  /external/qemu/hw/
dma.c 42 uint8_t page; member in struct:dma_regs
91 d->regs[ichan].page = data;
117 return d->regs[ichan].page;
406 target_phys_addr_t addr = ((r->pageh & 0x7f) << 24) | (r->page << 16) | r->now[ADDR];
428 target_phys_addr_t addr = ((r->pageh & 0x7f) << 24) | (r->page << 16) | r->now[ADDR];
523 qemu_put_8s (f, &r->page);
551 qemu_get_8s (f, &r->page);
goldfish_events_device.c 54 int page; member in struct:__anon11170
94 QFIELD_INT32(page),
185 int page = s->page; local
186 if (page == PAGE_NAME) {
189 } if (page >= PAGE_EVBITS && page <= PAGE_EVBITS + EV_MAX)
190 return s->ev_bits[page - PAGE_EVBITS].len;
191 if (page == PAGE_ABSDATA)
199 int page = s->page local
    [all...]
scsi-disk.c 462 /* Supported page codes, mandatory */
474 outbuf[r->iov.iov_len++] = 0x00; // this page
477 outbuf[r->iov.iov_len++] = 0x00; // list of supported pages (this page)
498 /* Supported page codes */
505 outbuf[r->iov.iov_len++] = 0x80; // this page
515 /* Device identification page, mandatory */
530 outbuf[r->iov.iov_len++] = 0x83; // this page
555 BADF("Error: Inquiry (STANDARD) page or code "
560 /* PAGE CODE == 0 */
613 int page; local
    [all...]
  /external/v8/src/
store-buffer.cc 210 { 97, ((Page::kPageSize / kPointerSize) / 97) / 8 },
211 { 23, ((Page::kPageSize / kPointerSize) / 23) / 16 },
212 { 7, ((Page::kPageSize / kPointerSize) / 7) / 32 },
213 { 3, ((Page::kPageSize / kPointerSize) / 3) / 256 },
386 Page* page = it.next(); local
388 reinterpret_cast<PagedSpace*>(page->owner()),
389 page,
456 Address page = Page::FromAddress(addr)->area_start() local
463 Address page = Page::FromAllocationTop(addr)->area_start(); local
646 Page* page = reinterpret_cast<Page*>(chunk); local
    [all...]
  /external/webkit/Source/WebCore/loader/
HistoryController.cpp 45 #include "Page.h"
58 static inline void addVisitedLink(Page* page, const KURL& url)
61 platformStrategies()->visitedLinkStrategy()->addVisitedLink(page, visitedLinkHash(url.string().characters(), url.string().length()));
63 page->group().addVisitedLink(url);
98 first time we draw the page is already scrolled to the right place, instead of starting at the top and later
114 // early and from a user standpoint - as in the above radar - the previous page load failed
143 // For a standard page load, we will have a previous item set, which will be used to
151 // that we keep track of the end of a page transition with m_frameLoadComplete. We
246 Page* page = m_frame->page() local
436 Page* page = m_frame->page(); local
745 Page* page = m_frame->page(); local
    [all...]
  /external/webkit/Source/WebCore/page/
Frame.h 84 static PassRefPtr<Frame> create(Page*, HTMLFrameOwnerElement*, FrameLoaderClient*);
101 Page* page() const;
210 Frame(Page*, HTMLFrameOwnerElement*, FrameLoaderClient*);
221 Page* m_page;
365 inline Page* Frame::page() const function in class:WebCore::Frame
Geolocation.cpp 35 #include "Page.h"
238 Page* Geolocation::page() const function in class:WebCore::Geolocation
240 return m_frame ? m_frame->page() : 0;
245 Page* page = this->page(); local
246 if (page && m_allowGeolocation == InProgress) {
248 page->geolocationController()->cancelPermissionRequest(this);
250 page->chrome()->cancelGeolocationPermissionRequestForFrame(m_frame, this)
271 Page* page = this->page(); local
704 Page* page = this->page(); local
730 Page* page = this->page(); local
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebPluginContainerImpl.cpp 70 #include "Page.h"
402 WebViewImpl* view = WebViewImpl::fromPage(m_element->document()->frame()->page());
484 if (Page* currentPage = containingFrame->page())
497 Page* page = parentView->frame()->page(); local
498 if (!page)
501 static_cast<ChromeClientImpl*>(page->chrome()->client());
WebViewImpl.h 61 class Page;
214 static WebViewImpl* fromPage(WebCore::Page*);
231 // Returns the page object associated with this view. This may be null when
232 // the page is shutting down, but will be valid at all other times.
233 WebCore::Page* page() const function in class:WebKit::WebViewImpl
241 // the page is shutting down, but will be valid at all other times.
291 // Determines whether a page should e.g. be opened in a background tab.
426 OwnPtr<WebCore::Page> m_page;
  /external/webkit/Source/WebKit/qt/Api/
qgraphicswebview.cpp 57 , page(0)
76 QWebPage* page; member in class:QGraphicsWebViewPrivate
82 if (!page || !page->d->client)
89 return static_cast<WebCore::PageClientQGraphicsWidget*> (page->d->client.get());
107 // If the page had no title, still make sure it gets the signal
116 page = 0;
122 ASSERT(page);
126 if (!page->preferredContentsSize().isValid())
127 page->setPreferredContentsSize(QSize(960, 800))
262 QWebPage* QGraphicsWebView::page() const function in class:QGraphicsWebView
266 QWebPage* page = new QWebPage(that); local
    [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebelement/
tst_qwebelement.cpp 93 m_page = m_view->page();
956 QWebPage page; local
957 QSignalSpy loadSpy(&page, SIGNAL(loadFinished(bool)));
958 page.mainFrame()->setHtml(html);
960 waitForSignal(&page, SIGNAL(loadFinished(bool)));
963 QSize size = page.mainFrame()->contentsSize();
964 page.setViewportSize(size);
966 QWebElementCollection imgs = page.mainFrame()->findAllElements("img");
998 // compare table rendered through QWebElement::render to whole page table rendering
1000 QWebElementCollection tables = page.mainFrame()->findAllElements("table")
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/
WebProcess.cpp 61 #include <WebCore/Page.h>
285 Page::visitedStateChanged(PageGroup::pageGroup(it->second->identifier()), linkHashes[i]);
297 Page::allVisitedStateChanged(PageGroup::pageGroup(it->second->identifier()));
338 // Page cache capacity (in pages)
363 // Page cache capacity (in pages)
409 // Page cache capacity (in pages)
410 // (Research indicates that value / page drops substantially after 3 pages.)
480 WebPage* page = (*it).second.get(); local
481 if (page->windowIsFocused())
482 return page;
825 WebPage* page = (*it).second.get(); local
    [all...]
  /external/yaffs2/yaffs2/mtdemul/
nandemul2k.c 75 nandemul_Page *page[PAGES_PER_BLOCK]; member in struct:__anon15776
101 static void nandemul2k_Read(void *buffer, int page, int start, int nBytes)
103 int pg = page%PAGES_PER_BLOCK;
104 int blk = page/PAGES_PER_BLOCK;
107 memcpy(buffer,&ned.block[blk]->page[pg]->data[start],nBytes);
112 static void nandemul2k_Program(const void *buffer, int page, int start, int nBytes)
114 int pg = page%PAGES_PER_BLOCK;
115 int blk = page/PAGES_PER_BLOCK;
119 p = &ned.block[blk]->page[pg]->data[start];
145 memset(blk->page[i],0xff,sizeof(nandemul_Page))
321 int start, page; local
379 int col, page; local
425 int start, page; local
483 int col, page; local
    [all...]
  /frameworks/av/media/libstagefright/
NuCachedSource2.cpp 35 struct Page {
40 Page *acquirePage();
41 void releasePage(Page *page);
43 void appendPage(Page *page);
56 List<Page *> mActivePages;
57 List<Page *> mFreePages;
59 void freePages(List<Page *> *list);
74 void PageCache::freePages(List<Page *> *list)
77 Page *page = *it; local
90 Page *page = *it; local
96 Page *page = new Page; local
119 Page *page = *it; local
312 PageCache::Page *page = mCache->acquirePage(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
videotext.h 36 #define VTXIOCCLRPAGE_OLD 0x7102 /* clear page-buffer */
37 #define VTXIOCCLRFOUND_OLD 0x7103 /* clear bits indicating that page was found */
38 #define VTXIOCPAGEREQ_OLD 0x7104 /* search for page */
39 #define VTXIOCGETSTAT_OLD 0x7105 /* get status of page-buffer */
40 #define VTXIOCGETPAGE_OLD 0x7106 /* get contents of page-buffer */
42 #define VTXIOCPUTPAGE_OLD 0x7108 /* display page on TV-screen */
61 int numpages; /* number of page-buffers of vtx-chipset */
86 int page; /* number of requested page (hexadecimal) */ member in struct:__anon23433
90 int pgbuf; /* buffer where page will be stored *
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
videotext.h 36 #define VTXIOCCLRPAGE_OLD 0x7102 /* clear page-buffer */
37 #define VTXIOCCLRFOUND_OLD 0x7103 /* clear bits indicating that page was found */
38 #define VTXIOCPAGEREQ_OLD 0x7104 /* search for page */
39 #define VTXIOCGETSTAT_OLD 0x7105 /* get status of page-buffer */
40 #define VTXIOCGETPAGE_OLD 0x7106 /* get contents of page-buffer */
42 #define VTXIOCPUTPAGE_OLD 0x7108 /* display page on TV-screen */
61 int numpages; /* number of page-buffers of vtx-chipset */
86 int page; /* number of requested page (hexadecimal) */ member in struct:__anon25023
90 int pgbuf; /* buffer where page will be stored *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
videotext.h 36 #define VTXIOCCLRPAGE_OLD 0x7102 /* clear page-buffer */
37 #define VTXIOCCLRFOUND_OLD 0x7103 /* clear bits indicating that page was found */
38 #define VTXIOCPAGEREQ_OLD 0x7104 /* search for page */
39 #define VTXIOCGETSTAT_OLD 0x7105 /* get status of page-buffer */
40 #define VTXIOCGETPAGE_OLD 0x7106 /* get contents of page-buffer */
42 #define VTXIOCPUTPAGE_OLD 0x7108 /* display page on TV-screen */
61 int numpages; /* number of page-buffers of vtx-chipset */
86 int page; /* number of requested page (hexadecimal) */ member in struct:__anon26535
90 int pgbuf; /* buffer where page will be stored *
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidTextEditor.java 68 * Multi-page form editor for Android text files.
78 /** Preference name for the current page of this file */
84 /** Page id of the XML source editor, used for switching tabs programmatically */
90 /** Page index of the text editor (always the last page) */
96 /** flag set during page creation */
119 * as well as text editor page) have been created. This give a chance to deriving
120 * classes to adjust behavior once the text page has been created.
141 * Creates the pages of the multi-page editor.
150 * Creates the page for the Android Editor
405 Object page = pages.get(i); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/common/
CommonXmlEditor.java 56 * Multi-page form editor for ALL /res XML files.
379 IFormPage page = super.setActivePage(pageId); local
382 return mDelegate.delegatePostSetActivePage(page, pageId);
385 return page;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintListDialog.java 95 IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); local
97 if (page.getActivePart() != null) {
98 site = page.getActivePart().getSite();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java 355 // workbench page has an editor area (typically the ddms perspective doesn't).
358 IWorkbenchPage page = window.getActivePage(); local
359 if (page.isEditorAreaVisible() == false) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/
AaptQuickFixTest.java 115 IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); local
116 assertNotNull(page);
117 IEditorPart editor = IDE.openEditor(page, file);
225 IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); local
226 assertNotNull(page);
227 IEditorPart editor = IDE.openEditor(page, file);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
HyperlinksTest.java 196 IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); local
197 assertNotNull(page);
198 IEditorPart editor = IDE.openEditor(page, file);

Completed in 1328 milliseconds

1 2 3 4 5 67 8 91011>>