Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapVcardManager.java169 final Uri myUri = DevicePolicyUtils.getEnterprisePhoneUri(mContext); in getContactsSize() local
172 contactCursor = mResolver.query(myUri, new String[]{Phone.CONTACT_ID}, null, null, in getContactsSize()
189 final Uri myUri = CallLog.Calls.CONTENT_URI; in getCallHistorySize() local
195 mResolver.query(myUri, null, selection, null, CallLog.Calls.DEFAULT_SORT_ORDER); in getCallHistorySize()
215 final Uri myUri = CallLog.Calls.CONTENT_URI; in loadCallHistoryList() local
225 callCursor = mResolver.query(myUri, projection, selection, null, CALLLOG_SORT_ORDER); in loadCallHistoryList()
266 final Uri myUri = DevicePolicyUtils.getEnterprisePhoneUri(mContext); in getPhonebookNameList() local
274 contactCursor = mResolver.query(myUri, PHONES_CONTACTS_PROJECTION, null, null, orderBy); in getPhonebookNameList()
329 final Uri myUri = DevicePolicyUtils.getEnterprisePhoneUri(mContext); in getSelectedPhonebookNameList() local
332 contactCursor = mResolver.query(myUri, PHONES_CONTACTS_PROJECTION, null, null, in getSelectedPhonebookNameList()
[all …]
/packages/apps/Car/libs/car-media-common/src/com/android/car/media/common/
DMediaItemMetadata.java153 Uri myUri = getImageURI(); in equals() local
155 if ((myUri != null) || (otherUri != null)) { in equals()
156 return Objects.equals(myUri, otherUri); in equals()