Searched refs:mVMStart (Results 1 – 5 of 5) sorted by relevance
/aosp12/frameworks/native/libs/binder/ |
H A D | ProcessState.cpp | 415 , mVMStart(MAP_FAILED) in ProcessState() 428 … mVMStart = mmap(nullptr, BINDER_VM_SIZE, PROT_READ, MAP_PRIVATE | MAP_NORESERVE, mDriverFD, 0); in ProcessState() 429 if (mVMStart == MAP_FAILED) { in ProcessState() 446 if (mVMStart != MAP_FAILED) { in ~ProcessState() 447 munmap(mVMStart, BINDER_VM_SIZE); in ~ProcessState()
|
/aosp12/system/libhwbinder/ |
H A D | ProcessState.cpp | 398 , mVMStart(MAP_FAILED) in ProcessState() 411 mVMStart = mmap(nullptr, mMmapSize, PROT_READ, MAP_PRIVATE | MAP_NORESERVE, mDriverFD, 0); in ProcessState() 412 if (mVMStart == MAP_FAILED) { in ProcessState() 428 if (mVMStart != MAP_FAILED) { in ~ProcessState() 429 munmap(mVMStart, mMmapSize); in ~ProcessState()
|
/aosp12/frameworks/native/include/binder/ |
H A D | ProcessState.h | 110 void* mVMStart; variable
|
/aosp12/frameworks/native/libs/binder/include/binder/ |
H A D | ProcessState.h | 110 void* mVMStart; variable
|
/aosp12/system/libhwbinder/include/hwbinder/ |
H A D | ProcessState.h | 105 void* mVMStart; variable
|