Searched defs:mBackingStore (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DGenerationRegistry.java45 private MemoryIntArray mBackingStore; field in class:GenerationRegistry
115 if (mBackingStore == null) {
122 mBackingStore = new MemoryIntArray(size);
124 Slog.e(LOG_TAG, "Created backing store " + mBackingStore);
130 return mBackingStore;
134 if (mBackingStore != null) {
136 mBackingStore.close();
138 Slog.e(LOG_TAG, "Destroyed backing store " + mBackingStore);
143 mBackingStore = null;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrame.java63 BackingStore mBackingStore; field in class:Frame
72 return mBackingStore.getFrameType();
76 return mBackingStore.getElementCount();
85 mBackingStore.setTimestamp(timestamp);
92 return mBackingStore.getTimestamp();
99 return mBackingStore.getTimestamp() / 1000000L;
107 return FrameValue.create(mBackingStore);
111 return FrameValues.create(mBackingStore);
115 return FrameBuffer1D.create(mBackingStore);
119 return FrameBuffer2D.create(mBackingStore);
[all...]

Completed in 85 milliseconds