HomeSort by relevance Sort by last modified time
    Searched refs:mMaxSize (Results 1 - 5 of 5) sorted by null

  /development/simulator/app/
LogPool.h 26 mCurrentSize(0), mMaxSize(10240)
39 long GetMaxSize(void) const { return mMaxSize; }
53 long mMaxSize; // maximum size, in bytes
LogPool.cpp 34 while (mCurrentSize > mMaxSize)
77 mMaxSize = maxSize;
78 while (mCurrentSize > mMaxSize)
  /frameworks/base/core/java/com/android/internal/util/
ProcessedMessages.java 121 private int mMaxSize = DEFAULT_SIZE;
141 mMaxSize = maxSize;
167 if (nextIndex >= mMaxSize) {
168 nextIndex -= mMaxSize;
187 if (mMessages.size() < mMaxSize) {
192 if (mOldestIndex >= mMaxSize) {
  /frameworks/base/core/jni/
CursorWindow.cpp 37 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...]
CursorWindow.h 190 size_t mMaxSize;

Completed in 71 milliseconds