Home
last modified time | relevance | path

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

/frameworks/base/packages/SettingsProvider/test/src/com/android/providers/settings/
DSettingsProviderTest.java494 ContentValues[] allValues = new ContentValues[3]; in toTestBulkInsertViaProviderApiForType() local
500 allValues[0] = firstValues; in toTestBulkInsertViaProviderApiForType()
506 allValues[1] = secondValues; in toTestBulkInsertViaProviderApiForType()
512 allValues[2] = thirdValues; in toTestBulkInsertViaProviderApiForType()
515 final int insertCount = getContext().getContentResolver().bulkInsert(uri, allValues); in toTestBulkInsertViaProviderApiForType()
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DSettingsProvider.java657 public int bulkInsert(Uri uri, ContentValues[] allValues) { in bulkInsert() argument
663 final int valuesCount = allValues.length; in bulkInsert()
665 ContentValues values = allValues[i]; in bulkInsert()