Home
last modified time | relevance | path

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

/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
DTelephonyBackupAgent.java192 static final String[] SMS_PROJECTION = new String[] { field in TelephonyBackupAgent
367 Cursor smsCursor = mContentResolver.query(Telephony.Sms.CONTENT_URI, SMS_PROJECTION, in onFullBackup() argument
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapContent.java156 static final String[] SMS_PROJECTION = new String[]{ field in BluetoothMapContent
2267 smsCursor = mResolver.query(Sms.CONTENT_URI, SMS_PROJECTION, where, null, in msgListing()
2506 Cursor c = mResolver.query(Sms.CONTENT_URI, SMS_PROJECTION, where, null, in msgListingSize()
2602 Cursor c = mResolver.query(Sms.CONTENT_URI, SMS_PROJECTION, where, null, in msgListingHasUnread()
3671 Cursor c = mResolver.query(Sms.CONTENT_URI, SMS_PROJECTION, "_ID = " + id, null, null); in getSmsMessage()
DBluetoothMapContentObserver.java184 static final String[] SMS_PROJECTION = new String[]{ field in BluetoothMapContentObserver
3564 Cursor c = mResolver.query(Sms.CONTENT_URI, SMS_PROJECTION, where, null, null); in resendPendingMessages()
3590 Cursor c = mResolver.query(Sms.CONTENT_URI, SMS_PROJECTION, where, null, null); in failPendingMessages()
/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/
DTelephonyBackupAgentTest.java121 mSmsCursor = new FakeCursor(mSmsTable, TelephonyBackupAgent.SMS_PROJECTION); in setUp()