Home
last modified time | relevance | path

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

/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
DPduPersister.java1250 final Uri partUri = part.getDataUri(); in updateParts() local
1251 if ((partUri == null) || TextUtils.isEmpty(partUri.getAuthority()) in updateParts()
1252 || !partUri.getAuthority().startsWith("mms")) { in updateParts()
1255 toBeUpdated.put(partUri, part); in updateParts()
1265 DatabaseUtils.appendEscapedSQLString(filter, partUri.getLastPathSegment()); in updateParts()
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
DTelephonyBackupAgent.java1126 final Uri partUri = Telephony.Mms.CONTENT_URI.buildUpon()
1142 if (mContentResolver.insert(partUri, values) == null) {
1164 if (mContentResolver.insert(partUri, values) == null) {
1185 Uri newPartUri = mContentResolver.insert(partUri, values);
1208 mContentResolver.update(partUri, values, null, null);
/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/
DTelephonyBackupAgentTest.java383 final Uri partUri = Telephony.Mms.CONTENT_URI.buildUpon().appendPath(String.valueOf(id)). in createMmsRow() local
385 mCursors.put(partUri, createBodyCursor(body, bodyCharset, smil, attachmentTypes, in createMmsRow()
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapContentObserver.java3110 Uri partUri = Uri.parse(Mms.CONTENT_URI + "/" + handle + "/part"); in writeMmsDataPart() local
3111 Uri res = mResolver.insert(partUri, values); in writeMmsDataPart()