Home
last modified time | relevance | path

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

/system/chre/platform/shared/
Dmemory_manager.cc29 } else if ((mTotalAllocatedBytes + bytes) > kMaxAllocationBytes) { in nanoappAlloc()
38 mTotalAllocatedBytes += bytes; in nanoappAlloc()
39 if (mTotalAllocatedBytes > mPeakAllocatedBytes) { in nanoappAlloc()
40 mPeakAllocatedBytes = mTotalAllocatedBytes; in nanoappAlloc()
73 if (mTotalAllocatedBytes >= header->data.bytes) { in nanoappFree()
74 mTotalAllocatedBytes -= header->data.bytes; in nanoappFree()
76 mTotalAllocatedBytes = 0; in nanoappFree()
/system/chre/core/include/chre/core/
Dnanoapp.h63 return mTotalAllocatedBytes; in getTotalAllocatedBytes()
81 mTotalAllocatedBytes = totalAllocatedBytes; in setTotalAllocatedBytes()
82 if (mTotalAllocatedBytes > mPeakAllocatedBytes) { in setTotalAllocatedBytes()
83 mPeakAllocatedBytes = mTotalAllocatedBytes; in setTotalAllocatedBytes()
164 size_t mTotalAllocatedBytes = 0; variable
/system/chre/platform/include/chre/platform/
Dmemory_manager.h62 return mTotalAllocatedBytes; in getTotalAllocatedBytes()
123 size_t mTotalAllocatedBytes = 0; variable