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.java204 static final String[] SMS_PROJECTION = new String[] { field in TelephonyBackupAgent
379 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
2262 smsCursor = mResolver.query(Sms.CONTENT_URI, SMS_PROJECTION, where, null, in msgListing()
2500 Cursor c = mResolver.query(Sms.CONTENT_URI, SMS_PROJECTION, where, null, in msgListingSize()
2596 Cursor c = mResolver.query(Sms.CONTENT_URI, SMS_PROJECTION, where, null, in msgListingHasUnread()
3665 Cursor c = mResolver.query(Sms.CONTENT_URI, SMS_PROJECTION, "_ID = " + id, null, null); in getSmsMessage()
DBluetoothMapContentObserver.java186 static final String[] SMS_PROJECTION = new String[]{ field in BluetoothMapContentObserver
3624 Cursor c = mResolver.query(Sms.CONTENT_URI, SMS_PROJECTION, where, null, null); in resendPendingMessages()
3650 Cursor c = mResolver.query(Sms.CONTENT_URI, SMS_PROJECTION, where, null, null); in failPendingMessages()
/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/
DTelephonyBackupAgentTest.java133 mSmsCursor = new FakeCursor(mSmsTable, TelephonyBackupAgent.SMS_PROJECTION); in setUp()