Home
last modified time | relevance | path

Searched refs:COLUMN_STORAGE_ID (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
DMtpDatabaseTest.java44 MtpDatabaseConstants.COLUMN_STORAGE_ID,
98 assertEquals(1, getInt(cursor, COLUMN_STORAGE_ID)); in testPutSingleStorageDocuments()
161 assertEquals(1, getInt(cursor, COLUMN_STORAGE_ID)); in testPutStorageDocuments()
211 assertEquals(0, getInt(cursor, COLUMN_STORAGE_ID)); in testPutChildDocuments()
230 assertEquals(0, getInt(cursor, COLUMN_STORAGE_ID)); in testPutChildDocuments()
250 assertEquals(0, getInt(cursor, COLUMN_STORAGE_ID)); in testPutChildDocuments()
324 MtpDatabaseConstants.COLUMN_STORAGE_ID, in testRestoreIdForRootDocuments()
341 assertEquals(100, getInt(cursor, COLUMN_STORAGE_ID)); in testRestoreIdForRootDocuments()
345 assertEquals(101, getInt(cursor, COLUMN_STORAGE_ID)); in testRestoreIdForRootDocuments()
374 assertEquals(200, getInt(cursor, COLUMN_STORAGE_ID)); in testRestoreIdForRootDocuments()
[all …]
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
DMtpDatabaseConstants.java65 static final String COLUMN_STORAGE_ID = "storage_id"; field in MtpDatabaseConstants
125 COLUMN_STORAGE_ID + " INTEGER," +
DMtpDatabase.java412 COLUMN_STORAGE_ID, in createIdentifier()
544 values.putNull(COLUMN_STORAGE_ID); in disconnectDocuments()
627 "parent." + COLUMN_STORAGE_ID, in getUnmappedDocumentsParent() argument
745 values.putNull(COLUMN_STORAGE_ID); in getDeviceDocumentValues()
789 values.put(COLUMN_STORAGE_ID, root.mStorageId); in getStorageDocumentValues()
827 values.put(COLUMN_STORAGE_ID, info.getStorageId()); in getObjectDocumentValues()
DMapper.java116 strings(COLUMN_STORAGE_ID, Document.COLUMN_DISPLAY_NAME)); in putStorageDocuments()