/aosp12/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/ |
H A D | RemotePrintDocument.java | 108 if (mUpdateSpec.pages != null) { 251 && pages != null && !PageRangeUtils.contains(mUpdateSpec.pages, pages, in update() 277 mUpdateSpec.update(attributes, preview, pages); in update() 515 PageRange[] pages; field in RemotePrintDocument.UpdateSpec 518 PageRange[] pages) { in update() argument 521 this.pages = (pages != null) ? Arrays.copyOf(pages, pages.length) : null; in update() 527 pages = null; in reset() 1024 mPages = Arrays.copyOf(pages, pages.length); in WriteCommand() 1234 PageRange[] pages = (PageRange[]) message.obj; in handleMessage() local 1235 handleOnWriteFinished(pages, sequence); in handleMessage() [all …]
|
H A D | PageContentRepository.java | 558 private int findIndexOfPage(int pageNum, @NonNull PageRange[] pages) { in findIndexOfPage() argument 560 for (int i = 0; i < pages.length; i++) { in findIndexOfPage() 561 if (pages[i].contains(pageNum)) { in findIndexOfPage() 562 return pagesBefore + pageNum - pages[i].getStart(); in findIndexOfPage() 564 pagesBefore += pages[i].getSize(); in findIndexOfPage()
|
/aosp12/system/memory/libmeminfo/testdata1/ |
H A D | vmallocinfo | 23 0x0000000000000000-0x0000000000000000 16384 n_tty_open+0x1c/0xac pages=3 vmalloc 137 0x0000000000000000-0x0000000000000000 12288 pcpu_alloc+0x3e8/0x9e4 pages=2 vmalloc 187 0x0000000000000000-0x0000000000000000 16384 n_tty_open+0x1c/0xac pages=3 vmalloc 553 0x0000000000000000-0x0000000000000000 24576 lz4_init+0x1c/0x48 pages=5 vmalloc 554 0x0000000000000000-0x0000000000000000 24576 lz4_init+0x1c/0x48 pages=5 vmalloc 555 0x0000000000000000-0x0000000000000000 24576 lz4_init+0x1c/0x48 pages=5 vmalloc 556 0x0000000000000000-0x0000000000000000 24576 lz4_init+0x1c/0x48 pages=5 vmalloc 557 0x0000000000000000-0x0000000000000000 24576 lz4_init+0x1c/0x48 pages=5 vmalloc 558 0x0000000000000000-0x0000000000000000 24576 lz4_init+0x1c/0x48 pages=5 vmalloc 559 0x0000000000000000-0x0000000000000000 24576 lz4_init+0x1c/0x48 pages=5 vmalloc [all …]
|
/aosp12/packages/apps/UniversalMediaPlayer/java/com/android/pump/activity/ |
H A D | PumpActivity.java | 138 for (Pages pages : PAGES_LIST) { in onNavigationItemSelected() 139 if (pages.getId() == item.getItemId()) { in onNavigationItemSelected() 140 selectPages(item.getTitle(), pages); in onNavigationItemSelected() local 162 private void selectPages(@NonNull CharSequence title, @NonNull Pages pages) { in selectPages() argument 173 mActivityPagerAdapter.setPages(pages); in selectPages() 177 mViewPager.setCurrentItem(pages.getCurrent()); in selectPages() 187 void setPages(@NonNull Pages pages) { in setPages() argument 188 mPages = pages; in setPages() 264 Pages(@IdRes int id, @NonNull Page[] pages) { in Pages() argument 266 mPages = pages; in Pages()
|
/aosp12/packages/services/BuiltInPrintService/jni/plugins/ |
H A D | wprint_mupdf.c | 49 int pages; in _mupdf_get_hdr() local 51 pages = pdf_render->openDocument(pdf_render, image_info->decoder_data.urlPath); in _mupdf_get_hdr() 52 if (pages < 1) return ERROR; in _mupdf_get_hdr()
|
/aosp12/frameworks/base/core/java/android/print/ |
H A D | PrintDocumentAdapter.java | 242 public abstract void onWrite(PageRange[] pages, ParcelFileDescriptor destination, in onWrite() argument 277 public void onWriteFinished(PageRange[] pages) { in onWriteFinished() argument
|
H A D | PrintManager.java | 881 public void write(PageRange[] pages, ParcelFileDescriptor fd, in write() argument 904 args.arg2 = pages; in write() 1066 PageRange[] pages = (PageRange[]) args.arg2; in handleMessage() local 1075 builder.append("\n pages:").append(Arrays.toString(pages)); in handleMessage() 1080 adapter.onWrite(pages, fd, cancellation, callback); in handleMessage() 1230 public void onWriteFinished(PageRange[] pages) { in onWriteFinished() argument 1245 if (pages == null) { in onWriteFinished() 1248 if (pages.length == 0) { in onWriteFinished() 1253 callback.onWriteFinished(pages, mSequence); in onWriteFinished()
|
H A D | IWriteResultCallback.aidl | 29 void onWriteFinished(in PageRange[] pages, int sequence); in onWriteFinished() argument
|
H A D | IPrintDocumentAdapter.aidl | 37 void write(in PageRange[] pages, in ParcelFileDescriptor fd, in write() argument
|
H A D | PrintFileDocumentAdapter.java | 89 public void onWrite(PageRange[] pages, ParcelFileDescriptor destination, in onWrite() argument
|
/aosp12/system/extras/simpleperf/ |
H A D | RecordReadThread.cpp | 378 for (size_t pages = max_mmap_pages_; pages >= min_mmap_pages_; pages >>= 1) { in HandleAddEventFds() local 380 bool report_error = pages == min_mmap_pages_; in HandleAddEventFds() 384 if (!fd->CreateMappedBuffer(pages, report_error)) { in HandleAddEventFds() 397 if (!fd->ShareMappedBuffer(*(it->second), pages == min_mmap_pages_)) { in HandleAddEventFds() 404 LOG(VERBOSE) << "Each kernel buffer is " << pages << " pages."; in HandleAddEventFds()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | ImageWallpaper.java | 166 final int pages; in onOffsetsChanged() local 168 pages = (int) Math.round(1 / xOffsetStep) + 1; in onOffsetsChanged() 170 pages = 1; in onOffsetsChanged() 172 if (pages == mPages) return; in onOffsetsChanged() 173 mPages = pages; in onOffsetsChanged()
|
/aosp12/frameworks/base/core/java/com/android/internal/print/ |
H A D | DumpUtils.java | 328 PageRange[] pages = printJobInfo.getPages(); in writePrintJobInfo() local 329 if (pages != null) { in writePrintJobInfo() 330 for (int i = 0; i < pages.length; i++) { in writePrintJobInfo() 331 writePageRange(proto, "pages", PrintJobInfoProto.PAGES, pages[i]); in writePrintJobInfo()
|
/aosp12/build/make/target/board/ |
H A D | go_defaults_common.prop | 31 # Note that this is a trade-off: here we trade clean pages for dirty pages,
|
/aosp12/frameworks/base/core/proto/android/service/ |
H A D | procstats.proto | 79 // Number of pages available of various types and sizes, representation fragmentation. 93 // Node these pages are in (as per /proc/pagetypeinfo) 96 // Zone these pages are in (as per /proc/pagetypeinfo) 99 // Label for the type of these pages (as per /proc/pagetypeinfo) 102 // Distribution of number of pages available by order size. First entry in array is
|
/aosp12/system/extras/simpleperf/doc/ |
H A D | jit_symbols.md | 55 Current implementation gets confused if memory pages where JIT symbols reside are reused by mapping 58 For example, if memory pages were first used by `dlopen("libfoo.so")`, then freed by `dlclose`,
|
/aosp12/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/renderer/ |
H A D | IPdfEditor.aidl | 28 void removePages(in PageRange[] pages); in removePages() argument
|
/aosp12/frameworks/base/cmds/incident_helper/testdata/ |
H A D | pagetypeinfo.txt | 4 Free pages count per migrate type at order 0 1 2 3 4 5 6 7…
|
/aosp12/system/logging/logd/ |
H A D | README.replay.md | 28 2. `memory_usage BUFFER_TYPE` - this prints the memory usage (sum of private dirty pages of the 30 appear in these dirty pages, and a baseline is taken before allocating the log buffers, so only
|
/aosp12/bionic/libc/kernel/uapi/linux/ |
H A D | screen_info.h | 53 __u16 pages; member
|
H A D | vbox_vmmdev_types.h | 192 __u64 pages[1]; member
|
/aosp12/frameworks/base/tools/preload/loadclass/ |
H A D | LoadClass.java | 61 int[] pages = new int[6]; in main() local
|
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/folder/ |
H A D | FolderPagedView.java | 289 ArrayList<CellLayout> pages = new ArrayList<>(); in arrangeChildren() local 293 pages.add(page); in arrangeChildren() 298 Iterator<CellLayout> pageItr = pages.iterator(); in arrangeChildren()
|
/aosp12/frameworks/base/packages/PrintSpooler/tests/outofprocess/src/com/android/printspooler/outofprocess/tests/ |
H A D | WorkflowTest.java | 222 public void onWrite(PageRange[] pages, ParcelFileDescriptor destination, in print() 243 callback.onWriteFinished(pages); in print()
|
/aosp12/frameworks/base/core/proto/android/server/ |
H A D | activitymanagerservice.proto | 166 // The private dirty pages used by the heap. 168 // The shared dirty pages used by the heap. 170 // The shared clean pages used by the heap. 172 // The private clean pages used by the heap. 175 // The dirty the pages that have been swapped out. 177 // The dirty the pages that have been swapped out, proportional.
|