Home
last modified time | relevance | path

Searched refs:mSlot (Results 1 – 3 of 3) sorted by relevance

/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/clipping/
DClipStorageTest.java64 private int mSlot; field in ClipStorageTest
76 mSlot = mStorage.claimStorageSlot(); in setUp()
86 writeAll(mSlot, TEST_URIS); in testWrite()
91 writeAll(mSlot, TEST_URIS); in testRead()
94 File copy = mStorage.getFile(mSlot); in testRead()
119 writeAll(mSlot, TEST_URIS); in testReadConcurrently()
123 File copy = mStorage.getFile(mSlot); in testReadConcurrently()
124 File copy2 = mStorage.getFile(mSlot); in testReadConcurrently()
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
DPhotoTable.java492 private final int mSlot; field in PhotoTable.LoadNaturalSiblingTask
498 mSlot = slot; in LoadNaturalSiblingTask()
503 log("load natural %s", (mSlot == NEXT ? "next" : "previous")); in doInBackground()
508 if (mSlot == NEXT) { in doInBackground()
522 log("natural %s being rendered", (mSlot == NEXT ? "next" : "previous")); in onPostExecute()
525 PhotoTable.this.mOnDeck[mSlot] = photo; in onPostExecute()
528 photo.setX(mSlot == PREV ? -2 * width : mWidth + 2 * width); in onPostExecute()
534 PhotoTable.this.placeOnDeck(v, mSlot); in onPostExecute()
542 log("natural, %s was null!", (mSlot == NEXT ? "next" : "previous")); in onPostExecute()
/packages/apps/DocumentsUI/src/com/android/documentsui/clipping/
DClipStorage.java257 private final int mSlot; field in ClipStorage.PersistTask
262 mSlot = slot; in PersistTask()
267 try(Writer writer = mClipStore.createWriter(mSlot)){ in doInBackground()