Home
last modified time | relevance | path

Searched refs:mTotalAllocatedBytes (Results 1 – 3 of 3) sorted by relevance

/system/chre/platform/shared/
Dmemory_manager.cc31 ((mTotalAllocatedBytes + bytes) > kMaxAllocationBytes)) { in nanoappAlloc()
41 mTotalAllocatedBytes += bytes; in nanoappAlloc()
42 if (mTotalAllocatedBytes > mPeakAllocatedBytes) { in nanoappAlloc()
43 mPeakAllocatedBytes = mTotalAllocatedBytes; in nanoappAlloc()
76 if (mTotalAllocatedBytes >= header->data.bytes) { in nanoappFree()
77 mTotalAllocatedBytes -= header->data.bytes; in nanoappFree()
79 mTotalAllocatedBytes = 0; in nanoappFree()
/system/chre/core/include/chre/core/
Dnanoapp.h67 return mTotalAllocatedBytes; in getTotalAllocatedBytes()
84 mTotalAllocatedBytes = totalAllocatedBytes; in setTotalAllocatedBytes()
85 if (mTotalAllocatedBytes > mPeakAllocatedBytes) { in setTotalAllocatedBytes()
86 mPeakAllocatedBytes = mTotalAllocatedBytes; in setTotalAllocatedBytes()
213 size_t mTotalAllocatedBytes = 0; variable
/system/chre/platform/include/chre/platform/
Dmemory_manager.h63 return mTotalAllocatedBytes; in getTotalAllocatedBytes()
122 size_t mTotalAllocatedBytes = 0; variable