Searched defs:mStorage (Results 1 - 12 of 12) sorted by relevance

/frameworks/native/services/surfaceflinger/EventLog/
H A DEventLog.h53 char mStorage[STORAGE_MAX_SIZE]; member in class:android::EventLog::TagBuffer
/frameworks/base/tools/aapt2/
H A DMaybe.h103 typename std::aligned_storage<sizeof(T), alignof(T)>::type mStorage; member in class:aapt::Maybe
122 new (&mStorage) T(reinterpret_cast<const T&>(rhs.mStorage));
131 new (&mStorage) T(reinterpret_cast<const U&>(rhs.mStorage));
142 new (&mStorage) T(std::move(reinterpret_cast<T&>(rhs.mStorage)));
155 new (&mStorage) T(std::move(reinterpret_cast<U&>(rhs.mStorage)));
180 reinterpret_cast<T&>(mStorage)
[all...]
/frameworks/native/include/ui/
H A DRegion.h50 inline bool isRect() const { return mStorage.size() == 1; }
52 inline Rect getBounds() const { return mStorage[mStorage.size() - 1]; }
179 // mStorage is a (manually) sorted array of Rects describing the region
182 // a simple Rect then mStorage contains only that rect.
183 Vector<Rect> mStorage; member in class:android::Region
/frameworks/base/core/jni/android/graphics/
H A DGraphicsJNI.h137 android::Bitmap* result = mStorage;
138 mStorage = NULL;
144 android::Bitmap* mStorage = nullptr; member in class:JavaPixelAllocator
153 android::Bitmap* result = mStorage;
154 mStorage = NULL;
160 android::Bitmap* mStorage = nullptr; member in class:AshmemPixelAllocator
H A DBitmap.cpp41 , mStorage(storage) {
82 setPreLocked(mStorage, mRowBytes, mColorTable);
103 rec->fPixels = mStorage;
119 void* mStorage; member in class:android::WrappedPixelRef
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/
H A DCopyTest.java119 private StubProvider mStorage; field in class:CopyTest
130 mStorage.clearCacheAndBuildRoots();
157 Uri testFile = mStorage.createFile(SRC, srcPath, "text/plain",
187 mStorage.createFile(SRC, srcPaths[0], "text/plain", testContent[0].getBytes()),
188 mStorage.createFile(SRC, srcPaths[1], "text/plain", testContent[1].getBytes()),
189 mStorage.createFile(SRC, srcPaths[2], "text/plain", testContent[2].getBytes()));
207 Uri testDir = mStorage.createFile(SRC, srcPath, DocumentsContract.Document.MIME_TYPE_DIR,
219 File dst = mStorage.getFile(DST, srcPath);
225 Uri testFile = mStorage.createFile(SRC, srcPath, "text/plain",
230 mStorage
[all...]
H A DStubProvider.java70 private HashMap<String, StubDocument> mStorage = new HashMap<String, StubDocument>(); field in class:StubProvider
93 mStorage.clear();
141 final StubDocument file = mStorage.get(documentId);
151 final StubDocument parentDocument = mStorage.get(parentDocId);
152 final StubDocument childDocument = mStorage.get(docId);
159 final StubDocument parentDocument = mStorage.get(parentDocumentId);
190 final StubDocument document = mStorage.get(documentId);
206 final StubDocument parentDocument = mStorage.get(parentDocumentId);
216 document = mStorage.get(getDocumentIdForFile(file));
235 final StubDocument document = mStorage
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DLockSettingsStorageTests.java34 LockSettingsStorage mStorage; field in class:LockSettingsStorageTests
73 mStorage = new LockSettingsStorage(getContext(), new LockSettingsStorage.Callback() {
76 mStorage.writeKeyValue(db, "initializedKey", "initialValue", 0);
96 mStorage.closeDatabase();
100 assertEquals("initialValue", mStorage.readKeyValue("initializedKey", "default", 0));
101 mStorage.clearCache();
102 assertEquals("initialValue", mStorage.readKeyValue("initializedKey", "default", 0));
106 mStorage.writeKeyValue("key", "value", 0);
107 assertEquals("value", mStorage.readKeyValue("key", "default", 0));
108 mStorage
[all...]
/frameworks/ex/common/java/com/android/common/
H A DOperationScheduler.java76 private final SharedPreferences mStorage; field in class:OperationScheduler
83 mStorage = storage;
151 boolean enabledState = mStorage.getBoolean(PREFIX + "enabledState", true);
154 boolean permanentError = mStorage.getBoolean(PREFIX + "permanentError", false);
161 int errorCount = mStorage.getInt(PREFIX + "errorCount", 0);
165 long triggerTimeMillis = mStorage.getLong(PREFIX + "triggerTimeMillis", Long.MAX_VALUE);
203 return mStorage.getLong(PREFIX + "lastSuccessTimeMillis", 0);
214 mStorage.getLong(PREFIX + "lastSuccessTimeMillis", 0),
215 mStorage.getLong(PREFIX + "lastErrorTimeMillis", 0));
228 long time = mStorage
[all...]
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DClusterManager.java72 private AggregatorRecordStorage mStorage; field in class:ClusterManager
102 mStorage = new AggregatorRecordStorage(context, SEMANTIC_TABLE, SEMANTIC_COLUMNS);
258 List<Map<String, String> > allData = mStorage.getAllData();
289 mStorage.removeAllData();
306 mStorage.addData(rowFeatures);
/frameworks/base/services/core/java/com/android/server/
H A DLockSettingsService.java75 private final LockSettingsStorage mStorage; field in class:LockSettingsService
103 mStorage = new LockSettingsStorage(context, new LockSettingsStorage.Callback() {
110 mStorage.writeKeyValue(db, LockPatternUtils.DISABLE_LOCKSCREEN_KEY, "1", 0);
129 mStorage.prefetchUser(userHandle);
148 mStorage.prefetchUser(UserHandle.USER_OWNER);
314 mStorage.writeKeyValue(key, value, userId);
353 return mStorage.readKeyValue(key, defaultValue, userId);
360 return mStorage.hasPassword(userId);
367 return mStorage.hasPattern(userId);
395 int currentHandleType = mStorage
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageInstallerService.java159 private StorageManager mStorage; field in class:PackageInstallerService
243 mStorage = mContext.getSystemService(StorageManager.class);

Completed in 444 milliseconds