Searched refs:mStorage (Results 1 - 5 of 5) sorted by relevance

/frameworks/ex/common/java/com/android/common/
H A DOperationScheduler.java65 private final SharedPreferences mStorage; field in class:OperationScheduler
72 mStorage = storage;
136 boolean enabledState = mStorage.getBoolean(PREFIX + "enabledState", true);
139 boolean permanentError = mStorage.getBoolean(PREFIX + "permanentError", false);
146 int errorCount = mStorage.getInt(PREFIX + "errorCount", 0);
150 long triggerTimeMillis = mStorage.getLong(PREFIX + "triggerTimeMillis", Long.MAX_VALUE);
175 return mStorage.getLong(PREFIX + "lastSuccessTimeMillis", 0);
186 mStorage.getLong(PREFIX + "lastSuccessTimeMillis", 0),
187 mStorage.getLong(PREFIX + "lastErrorTimeMillis", 0));
200 long time = mStorage
[all...]
/frameworks/native/libs/utils/
H A DVectorImpl.cpp45 : mStorage(0), mCount(0), mFlags(flags), mItemSize(itemSize)
50 : mStorage(rhs.mStorage), mCount(rhs.mCount),
53 if (mStorage) {
54 SharedBuffer::bufferFromData(mStorage)->acquire();
74 mStorage = rhs.mStorage;
76 SharedBuffer::bufferFromData(mStorage)->acquire();
78 mStorage = 0;
87 if (mStorage) {
[all...]
/frameworks/native/libs/ui/
H A DRegion.cpp53 mStorage.add(Rect(0,0));
57 : mStorage(rhs.mStorage)
65 mStorage.add(rhs);
78 mStorage = rhs.mStorage;
84 if (mStorage.size() >= 2) {
86 mStorage.clear();
87 mStorage.add(bounds);
94 mStorage
[all...]
/frameworks/native/include/ui/
H A DRegion.h46 inline bool isRect() const { return mStorage.size() == 1; }
48 inline Rect getBounds() const { return mStorage[mStorage.size() - 1]; }
167 // mStorage is a (manually) sorted array of Rects describing the region
170 // a simple Rect then mStorage contains only that rect.
171 Vector<Rect> mStorage; member in class:android::Region
/frameworks/native/include/utils/
H A DVectorImpl.h35 * For performance reasons, we expose mStorage and mCount
59 inline const void* arrayImpl() const { return mStorage; }
131 void * mStorage; // base address of the vector member in class:android::VectorImpl

Completed in 1095 milliseconds