Home
last modified time | relevance | path

Searched refs:otherValues (Results 1 – 2 of 2) sorted by relevance

/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/
DTelephonyProviderTest.java1230 ContentValues otherValues = new ContentValues(); in testQueryPreferredApn() local
1233 otherValues.put(Carriers.APN, otherApn); in testQueryPreferredApn()
1234 otherValues.put(Carriers.NAME, otherName); in testQueryPreferredApn()
1235 otherValues.put(Carriers.NUMERIC, TEST_OPERATOR); in testQueryPreferredApn()
1240 + otherValues); in testQueryPreferredApn()
1242 mContentResolver.insert(CONTENT_URI_WITH_SUBID, otherValues); in testQueryPreferredApn()
1413 ContentValues otherValues = new ContentValues(); in testRestoreDefaultApn() local
1418 otherValues.put(Carriers.APN, otherApn); in testRestoreDefaultApn()
1419 otherValues.put(Carriers.NAME, otherName); in testRestoreDefaultApn()
1420 otherValues.put(Carriers.NUMERIC, TEST_OPERATOR); in testRestoreDefaultApn()
[all …]
/packages/providers/MediaProvider/src/com/android/providers/media/
DMediaProvider.java5861 ContentValues otherValues = new ContentValues(); in getKeyIdForName() local
5862 otherValues.put(keyField, k); in getKeyIdForName()
5863 otherValues.put(nameField, rawName); in getKeyIdForName()
5864 rowId = db.insert(table, "duration", otherValues); in getKeyIdForName()