Searched refs:mMaxSize (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/com/android/internal/util/
H A DProcessedMessages.java121 private int mMaxSize = DEFAULT_SIZE; field in class:ProcessedMessages
141 mMaxSize = maxSize;
167 if (nextIndex >= mMaxSize) {
168 nextIndex -= mMaxSize;
187 if (mMessages.size() < mMaxSize) {
192 if (mOldestIndex >= mMaxSize) {
/frameworks/base/core/jni/
H A DCursorWindow.cpp37 mMaxSize(maxSize)
53 mMaxSize = size;
55 LOG_WINDOW("Created CursorWindow from existing IMemory: mFreeOffset = %d, numRows = %d, numColumns = %d, mSize = %d, mMaxSize = %d, mData = %p", mFreeOffset, mHeader->numRows, mHeader->numColumns, mSize, mMaxSize, mData);
64 heap = new MemoryHeapBase(mMaxSize, 0, "CursorWindow");
66 mMemory = new MemoryBase(heap, 0, mMaxSize);
71 mSize = mMaxSize;
75 LOG_WINDOW("Created CursorWindow with new MemoryDealer: mFreeOffset = %d, mSize = %d, mMaxSize = %d, mData = %p", mFreeOffset, mSize, mMaxSize, mData);
152 LOGE("not growing since there are already %d row(s), max size %d", mHeader->numRows, mMaxSize);
[all...]
H A DCursorWindow.h190 size_t mMaxSize; member in class:android::CursorWindow

Completed in 59 milliseconds