Searched defs:usageType (Results 1 - 2 of 2) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactsProvider2Test.java8784 * @param usageType One of {@link DataUsageFeedback#USAGE_TYPE}
8788 private void sendFeedback(String data1, String usageType, ContentValues values) { argument
8791 MoreAsserts.assertNotEqual(0, updateDataUsageFeedback(usageType, dataId));
8797 private void updateDataUsageFeedback(String usageType, Uri resultUri) { argument
8799 final boolean successful = updateDataUsageFeedback(usageType, id) > 0;
8803 private int updateDataUsageFeedback(String usageType, long... ids) { argument
8811 .appendQueryParameter(DataUsageFeedback.USAGE_TYPE, usageType)
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsProvider2.java6141 final String usageType = uri.getQueryParameter(DataUsageFeedback.USAGE_TYPE);
6142 final int typeInt = getDataUsageFeedbackType(usageType, USAGE_TYPE_ALL);
7401 * @param usageType when non-null {@link Tables#DATA_USAGE_STAT} is joined with the specified
7405 String[] projection, boolean distinct, Integer usageType) {
7406 setTablesAndProjectionMapForData(qb, uri, projection, distinct, false, usageType);
7410 String[] projection, boolean distinct, boolean addSipLookupColumns, Integer usageType) {
7421 sb, usageType == null ? USAGE_TYPE_ALL : usageType, DataColumns.CONCRETE_ID);
7523 private void appendDataUsageStatJoin(StringBuilder sb, int usageType, String dataIdColumn) { argument
7524 if (usageType !
7404 setTablesAndProjectionMapForData(SQLiteQueryBuilder qb, Uri uri, String[] projection, boolean distinct, Integer usageType) argument
7409 setTablesAndProjectionMapForData(SQLiteQueryBuilder qb, Uri uri, String[] projection, boolean distinct, boolean addSipLookupColumns, Integer usageType) argument
[all...]

Completed in 54 milliseconds