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

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsProvider2.java6108 final String usageType = uri.getQueryParameter(DataUsageFeedback.USAGE_TYPE);
6109 final int typeInt = getDataUsageFeedbackType(usageType, USAGE_TYPE_ALL);
7202 * @param usageType when non-null {@link Tables#DATA_USAGE_STAT} is joined with the specified
7206 String[] projection, boolean distinct, Integer usageType) {
7207 setTablesAndProjectionMapForData(qb, uri, projection, distinct, false, usageType);
7211 String[] projection, boolean distinct, boolean addSipLookupColumns, Integer usageType) {
7221 appendDataUsageStatJoin(sb, usageType == null ? USAGE_TYPE_ALL : usageType,
7318 private void appendDataUsageStatJoin(StringBuilder sb, int usageType, String dataIdColumn) { argument
7319 if (usageType !
7205 setTablesAndProjectionMapForData(SQLiteQueryBuilder qb, Uri uri, String[] projection, boolean distinct, Integer usageType) argument
7210 setTablesAndProjectionMapForData(SQLiteQueryBuilder qb, Uri uri, String[] projection, boolean distinct, boolean addSipLookupColumns, Integer usageType) argument
[all...]
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactsProvider2Test.java8306 * @param usageType One of {@link DataUsageFeedback#USAGE_TYPE}
8310 private void sendFeedback(String data1, String usageType, ContentValues values) { argument
8313 MoreAsserts.assertNotEqual(0, updateDataUsageFeedback(usageType, dataId));
8319 private void updateDataUsageFeedback(String usageType, Uri resultUri) { argument
8321 final boolean successful = updateDataUsageFeedback(usageType, id) > 0;
8325 private int updateDataUsageFeedback(String usageType, long... ids) { argument
8333 .appendQueryParameter(DataUsageFeedback.USAGE_TYPE, usageType)

Completed in 35 milliseconds