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.java173 static final String[] SMS_PROJECTION = new String[] { field in TelephonyBackupAgent
344 Cursor smsCursor = mContentResolver.query(Telephony.Sms.CONTENT_URI, SMS_PROJECTION, in onFullBackup() argument
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapContent.java164 static final String[] SMS_PROJECTION = new String[] { field in BluetoothMapContent
2103 SMS_PROJECTION, where, null, Sms.DATE + " DESC" + limit); in msgListing()
2302 SMS_PROJECTION, where, null, Sms.DATE + " DESC"); in msgListingSize()
2386 SMS_PROJECTION, where, null, Sms.DATE + " DESC"); in msgListingHasUnread()
3404 Cursor c = mResolver.query(Sms.CONTENT_URI, SMS_PROJECTION, "_ID = " + id, null, null); in getSmsMessage()
DBluetoothMapContentObserver.java179 static final String[] SMS_PROJECTION = new String[] { field in BluetoothMapContentObserver
3337 Cursor c = mResolver.query(Sms.CONTENT_URI, SMS_PROJECTION, where, null, in resendPendingMessages()
3363 Cursor c = mResolver.query(Sms.CONTENT_URI, SMS_PROJECTION, where, null, in failPendingMessages()
/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/
DTelephonyBackupAgentTest.java114 mSmsCursor = new FakeCursor(mSmsTable, TelephonyBackupAgent.SMS_PROJECTION); in setUp()