Home
last modified time | relevance | path

Searched refs:TABLE_MESSAGE (Results 1 – 8 of 8) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/mapapi/
DBluetoothMapContractTest.java62 "content://" + TEST_AUTHORITY + "/" + BluetoothMapContract.TABLE_MESSAGE; in testBuildMessageUri()
76 + BluetoothMapContract.TABLE_MESSAGE; in testBuildMessageUri_withAccountId()
90 + BluetoothMapContract.TABLE_MESSAGE in testBuildMessageUriWithId()
DBluetoothMapEmailProviderTest.java136 .appendPath(BluetoothMapContract.TABLE_MESSAGE) in delete_success()
151 .appendPath(BluetoothMapContract.TABLE_MESSAGE) in insert_whenFolderIdIsNull()
181 .appendPath(BluetoothMapContract.TABLE_MESSAGE) in insert_success()
253 .appendPath(BluetoothMapContract.TABLE_MESSAGE) in query_forMessageUri()
349 .appendPath(BluetoothMapContract.TABLE_MESSAGE) in update_forMessageUri_success()
433 .appendPath(BluetoothMapContract.TABLE_MESSAGE) in getAccountId_success()
DBluetoothMapIMProviderTest.java147 .appendPath(BluetoothMapContract.TABLE_MESSAGE) in delete_success()
177 .appendPath(BluetoothMapContract.TABLE_MESSAGE) in insert_success()
224 .appendPath(BluetoothMapContract.TABLE_MESSAGE) in query_forMessageUri()
434 .appendPath(BluetoothMapContract.TABLE_MESSAGE) in update_forMessageUri_success()
549 .appendPath(BluetoothMapContract.TABLE_MESSAGE) in getAccountId_success()
/packages/modules/Bluetooth/android/app/lib/mapapi/com/android/bluetooth/mapapi/
DBluetoothMapContract.java182 .appendPath(TABLE_MESSAGE) in buildMessageUri()
195 .appendPath(TABLE_MESSAGE) in buildMessageUri()
208 .appendPath(TABLE_MESSAGE) in buildMessageUriWithId()
282 public static final String TABLE_MESSAGE = "Message"; field in BluetoothMapContract
DBluetoothMapIMProvider.java67 mMatcher.addURI(mAuthority, "#/" + BluetoothMapContract.TABLE_MESSAGE, MATCH_MESSAGE); in attachInfo()
231 if (table.equals(BluetoothMapContract.TABLE_MESSAGE)) { in delete()
281 if (table.equals(BluetoothMapContract.TABLE_MESSAGE)) { in insert()
549 } else if (table.equals(BluetoothMapContract.TABLE_MESSAGE)) { in update()
DBluetoothMapEmailProvider.java95 mMatcher.addURI(mAuthority, "#/" + BluetoothMapContract.TABLE_MESSAGE, MATCH_MESSAGE); in attachInfo()
431 if (table.equals(BluetoothMapContract.TABLE_MESSAGE)) { in delete()
479 if (table.equals(BluetoothMapContract.TABLE_MESSAGE)) { in insert()
648 } else if (table.equals(BluetoothMapContract.TABLE_MESSAGE)) { in update()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapContent.java2304 Uri contentUri = Uri.parse(mBaseUri + BluetoothMapContract.TABLE_MESSAGE); in msgListing()
2347 Uri contentUri = Uri.parse(mBaseUri + BluetoothMapContract.TABLE_MESSAGE); in msgListing()
2502 Uri contentUri = Uri.parse(mBaseUri + BluetoothMapContract.TABLE_MESSAGE); in msgListingSize()
2528 Uri contentUri = Uri.parse(mBaseUri + BluetoothMapContract.TABLE_MESSAGE); in msgListingSize()
2626 Uri contentUri = Uri.parse(mBaseUri + BluetoothMapContract.TABLE_MESSAGE); in msgListingHasUnread()
2654 Uri contentUri = Uri.parse(mBaseUri + BluetoothMapContract.TABLE_MESSAGE); in msgListingHasUnread()
4058 Uri contentUri = Uri.parse(mBaseUri + BluetoothMapContract.TABLE_MESSAGE); in getEmailMessage()
4271 Uri contentUri = Uri.parse(mBaseUri + BluetoothMapContract.TABLE_MESSAGE); in getIMMessage()
DBluetoothMapContentObserver.java275 mMessageUri = Uri.parse(account.mBase_uri + "/" + BluetoothMapContract.TABLE_MESSAGE); in BluetoothMapContentObserver()
1099 + BluetoothMapContract.TABLE_MESSAGE); in registerObserver()
1105 uri = Uri.parse(mAccount.mBase_uri + "/" + BluetoothMapContract.TABLE_MESSAGE); in registerObserver()
2573 Uri uri = Uri.parse(uriStr + BluetoothMapContract.TABLE_MESSAGE); in setEmailMessageStatusDelete()
3122 Uri uriInsert = Uri.parse(emailBaseUri + BluetoothMapContract.TABLE_MESSAGE); in pushMessage()