Home
last modified time | relevance | path

Searched refs:FOLDER_ID (Results 1 – 10 of 10) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/mapapi/
DBluetoothMapEmailProviderTest.java56 private static final String FOLDER_ID = "6789"; field in BluetoothMapEmailProviderTest
169 values.put(BluetoothMapContract.MessageColumns.FOLDER_ID, Long.parseLong(FOLDER_ID)); in insert_whenTableNameIsWrong()
185 values.put(BluetoothMapContract.MessageColumns.FOLDER_ID, Long.parseLong(FOLDER_ID)); in insert_success()
188 verify(mProvider).insertMessage(ACCOUNT_ID, FOLDER_ID); in insert_success()
355 values.put(BluetoothMapContract.MessageColumns.FOLDER_ID, Long.parseLong(FOLDER_ID)); in update_forMessageUri_success()
363 Long.parseLong(FOLDER_ID), in update_forMessageUri_success()
399 extras.putLong(BluetoothMapContract.EXTRA_UPDATE_FOLDER_ID, Long.parseLong(FOLDER_ID)); in call_success()
402 verify(mProvider).syncFolder(Long.parseLong(ACCOUNT_ID), Long.parseLong(FOLDER_ID)); in call_success()
DBluetoothMapIMProviderTest.java67 private static final String FOLDER_ID = "6789"; field in BluetoothMapIMProviderTest
165 values.put(BluetoothMapContract.MessageColumns.FOLDER_ID, Long.parseLong(FOLDER_ID)); in insert_whenTableNameIsWrong()
181 values.put(BluetoothMapContract.MessageColumns.FOLDER_ID, Long.parseLong(FOLDER_ID)); in insert_success()
440 values.put(BluetoothMapContract.MessageColumns.FOLDER_ID, Long.parseLong(FOLDER_ID)); in update_forMessageUri_success()
448 Long.parseLong(FOLDER_ID), in update_forMessageUri_success()
484 extras.putLong(BluetoothMapContract.EXTRA_UPDATE_FOLDER_ID, Long.parseLong(FOLDER_ID)); in call_updateFolderMethod_success()
487 verify(mProvider).syncFolder(Long.parseLong(ACCOUNT_ID), Long.parseLong(FOLDER_ID)); in call_updateFolderMethod_success()
/packages/modules/Bluetooth/android/app/lib/mapapi/com/android/bluetooth/mapapi/
DBluetoothMapContract.java616 String FOLDER_ID = "folder_id"; field
1018 MessageColumns.FOLDER_ID,
1040 MessageColumns.FOLDER_ID,
DBluetoothMapEmailProvider.java465 Long folderId = values.getAsLong(BluetoothMapContract.MessageColumns.FOLDER_ID); in insert()
654 Long folderId = values.getAsLong(BluetoothMapContract.MessageColumns.FOLDER_ID); in update()
DBluetoothMapIMProvider.java558 Long folderId = values.getAsLong(BluetoothMapContract.MessageColumns.FOLDER_ID); in update()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/map/
DBluetoothMapContentTest.java885 BluetoothMapContract.MessageColumns.FOLDER_ID, in getEmailMessage_withFileNotFoundExceptionForEmailBodyAccess()
938 BluetoothMapContract.MessageColumns.FOLDER_ID, in getEmailMessage_withNullPointerExceptionForEmailBodyAccess()
991 BluetoothMapContract.MessageColumns.FOLDER_ID, in getEmailMessage()
1066 BluetoothMapContract.MessageColumns.FOLDER_ID, in getIMMessage_withSentFolderId()
1126 BluetoothMapContract.MessageColumns.FOLDER_ID, in getIMMessage_withInboxFolderId()
1557 BluetoothMapContract.MessageColumns.FOLDER_ID, in msgListing_withEmailCursorOnly()
1650 BluetoothMapContract.MessageColumns.FOLDER_ID, in msgListing_withImCursorOnly()
DBluetoothMapContentObserverTest.java987 MessageColumns._ID, MessageColumns.FOLDER_ID, MessageColumns.FLAG_READ in initMsgList_withMsg()
1083 BluetoothMapContract.MessageColumns.FOLDER_ID, in handleMsgListChangesMsg_withNonExistingMessage_andVersion11()
1131 BluetoothMapContract.MessageColumns.FOLDER_ID, in handleMsgListChangesMsg_withNonExistingMessage_andVersion12()
1181 BluetoothMapContract.MessageColumns.FOLDER_ID, in handleMsgListChangesMsg_withNonExistingMessage_andVersion10()
1217 BluetoothMapContract.MessageColumns.FOLDER_ID, in handleMsgListChangesMsg_withExistingMessage_andNonNullDeletedFolder()
1252 BluetoothMapContract.MessageColumns.FOLDER_ID, in handleMsgListChangesMsg_withExistingMessage_andNonNullSentFolder()
1289 BluetoothMapContract.MessageColumns.FOLDER_ID, in handleMsgListChangesMsg_withExistingMessage_andNonNullTransparentSentFolder()
1329 BluetoothMapContract.MessageColumns.FOLDER_ID, in handleMsgListChangesMsg_withExistingMessage_andUnknownOldFolder()
DFilterInfoTest.java53 BluetoothMapContract.MessageColumns.FOLDER_ID, in setMessageColumns()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapContentObserver.java231 BluetoothMapContract.MessageColumns.FOLDER_ID,
238 BluetoothMapContract.MessageColumns.FOLDER_ID,
249 BluetoothMapContract.MessageColumns.FOLDER_ID,
1421 BluetoothMapContract.MessageColumns.FOLDER_ID)); in initMsgList()
2042 BluetoothMapContract.MessageColumns.FOLDER_ID)); in handleMsgListChangesMsg()
2588 contentValues.put(BluetoothMapContract.MessageColumns.FOLDER_ID, folderId); in setEmailMessageStatusDelete()
2640 contentValues.put(BluetoothMapContract.MessageColumns.FOLDER_ID, folderId); in setEmailMessageStatusDelete()
3134 values.put(BluetoothMapContract.MessageColumns.FOLDER_ID, folderId); in pushMessage()
DBluetoothMapContent.java341 mMessageColFolder = c.getColumnIndex(BluetoothMapContract.MessageColumns.FOLDER_ID); in setMessageColumns()
1726 where = BluetoothMapContract.MessageColumns.FOLDER_ID + " = " + folderId; in setWhereFilterFolderTypeEmail()
1742 where = BluetoothMapContract.MessageColumns.FOLDER_ID + " = " + folderId; in setWhereFilterFolderTypeIm()
4121 BluetoothMapContract.MessageColumns.FOLDER_ID)); in getEmailMessage()
4299 c.getLong(c.getColumnIndex(BluetoothMapContract.MessageColumns.FOLDER_ID)); in getIMMessage()