/frameworks/rs/cpu_ref/linkloader/lib/ |
D | MemChunk.cpp | 74 buf = (unsigned char *)mmap((void *)StartAddr, size, in allocate() 79 buf = (unsigned char *)mmap(0, size, in allocate()
|
D | mmanWindows.cpp | 21 void* mmap(void *, size_t, int, int, int, off_t) { in mmap() function
|
/frameworks/compile/mclinker/lib/Support/Windows/ |
D | FileSystem.inc | 158 bool FileHandle::mmap(void*& pMemBuffer, size_t pStartOffset, size_t pLength) 160 // FIXME: This implementation reduces mmap to read. Use Windows APIs. 167 // FIXME: This implementation reduces mmap to read. Use Windows APIs.
|
/frameworks/rs/cpu_ref/linkloader/include/ |
D | mmanWindows.h | 35 extern void* mmap(void *, size_t, int, int, int, off_t);
|
/frameworks/compile/mclinker/include/mcld/Support/ |
D | FileHandle.h | 95 bool mmap(void*& pMemBuffer, size_t pStartOffset, size_t pLength);
|
D | FileSystem.h | 103 void* mmap(void *pAddr, size_t pLen,
|
/frameworks/rs/cpu_ref/linkloader/android/ |
D | test-librsloader.c | 88 mmap(NULL, sb.st_size, PROT_READ, MAP_PRIVATE, fd, 0); in main()
|
/frameworks/compile/mclinker/lib/Support/Unix/ |
D | FileSystem.inc | 158 bool FileHandle::mmap(void*& pMemBuffer, size_t pStartOffset, size_t pLength) 190 pMemBuffer = ::mmap(NULL, pLength, prot, flag, m_Handler, pStartOffset);
|
/frameworks/base/libs/androidfw/ |
D | CursorWindow.cpp | 55 void* data = ::mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, ashmemFd, 0); in create() 101 void* data = ::mmap(NULL, size, PROT_READ, MAP_SHARED, dupAshmemFd, 0); in createFromParcel()
|
/frameworks/native/libs/binder/ |
D | MemoryHeapBase.cpp | 113 void* base = (uint8_t*)mmap(0, size, in mapfd()
|
D | ProcessState.cpp | 351 mVMStart = mmap(0, BINDER_VM_SIZE, PROT_READ, MAP_PRIVATE | MAP_NORESERVE, mDriverFD, 0); in ProcessState()
|
D | IMemory.cpp | 314 mBase = mmap(0, size, access, MAP_SHARED, fd, offset); in assertReallyMapped()
|
/frameworks/base/core/jni/ |
D | android_os_MemoryFile.cpp | 50 void* result = mmap(NULL, length, prot, MAP_SHARED, fd, 0); in android_os_MemoryFile_mmap()
|
/frameworks/base/cmds/screencap/ |
D | screencap.cpp | 165 mapbase = mmap(0, mapsize, PROT_READ, MAP_PRIVATE, fb, 0); in main()
|
/frameworks/rs/cpu_ref/linkloader/ |
D | main.cpp | 236 mmap(0, size, PROT_READ, MAP_PRIVATE, fd, 0)); in open_mmap_file()
|
/frameworks/webview/chromium/loader/ |
D | loader.cpp | 47 void* addr = mmap(NULL, vsize, PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in DoReserveAddressSpace()
|
/frameworks/base/docs/html/tools/debugging/ |
D | debugging-memory.jd | 239 .so mmap 5443(5) 1996 2584 2664(5) 5788 1996(5) 240 .apk mmap 235 32 0 0 1252 32 241 .ttf mmap 36 12 0 0 88 12 242 .dex mmap 3019(5) 2148 0 0 8936 2148(5) 243 Other mmap 107 0 8 8 324 68 284 <dt><code>.so mmap</code> and <code>.dex mmap</code></dt> 288 what currently needs to be in RAM for code that has been executed by the app. However, the .so mmap
|
/frameworks/base/docs/html/tools/help/ |
D | zipalign.jd | 12 allows all portions to be accessed directly with {@code mmap()} even if they
|
/frameworks/base/cmds/idmap/ |
D | inspect.cpp | 46 … if ((buf_ = (const char*)mmap(NULL, len_, PROT_READ, MAP_PRIVATE, fd, 0)) == MAP_FAILED) { in init()
|
/frameworks/native/opengl/libs/EGL/ |
D | egl_cache.cpp | 314 uint8_t* buf = reinterpret_cast<uint8_t*>(mmap(NULL, fileSize, in loadBlobCacheLocked()
|
/frameworks/base/tests/touchlag/ |
D | touchlag.cpp | 227 void* bits = mmap(0, fi.smem_len, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); in main()
|
/frameworks/base/docs/html/training/articles/ |
D | memory.jd | 556 .so mmap 287 0 2840 212 972 0 557 .apk mmap 54 0 0 0 136 0 558 .dex mmap 250 148 0 0 3704 148 559 Other mmap 8 0 8 8 20 0 587 .so mmap 2166 0 2824 1828 3756 0 588 .apk mmap 48 0 0 0 632 0 589 .ttf mmap 3 0 0 0 24 0 590 .dex mmap 292 4 0 0 5672 4 591 Other mmap 10 0 8 8 68 0
|
/frameworks/compile/libbcc/ |
D | README.rst | 172 a page size, so that we can mmap the context directly into memory.
|
/frameworks/native/cmds/servicemanager/ |
D | binder.c | 120 bs->mapped = mmap(NULL, mapsize, PROT_READ, MAP_PRIVATE, bs->fd, 0); in binder_open()
|
/frameworks/wilhelm/tests/examples/ |
D | slesTestDecodeAac.cpp | 432 ptr = mmap(NULL, statbuf.st_size, PROT_READ, MAP_FILE | MAP_PRIVATE, fd, (off_t) 0); in TestDecToBuffQueue()
|