Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapAccountItem.java32 private final String mProviderAuthority; field in BluetoothMapAccountItem
53 this.mProviderAuthority = authority; in BluetoothMapAccountItem()
125 if (!other.mProviderAuthority.equals(this.mProviderAuthority)) { in compareTo()
129 + this.mProviderAuthority in compareTo()
131 + other.mProviderAuthority); in compareTo()
153 prime * result + ((mProviderAuthority == null) ? 0 : mProviderAuthority.hashCode()); in hashCode()
190 if (mProviderAuthority == null) { in equals()
191 if (other.mProviderAuthority != null) { in equals()
194 } else if (!mProviderAuthority.equals(other.mProviderAuthority)) { in equals()
229 return mProviderAuthority; in getProviderAuthority()
/packages/apps/ThemePicker/src/com/android/customization/model/themedicon/
DThemedIconUtils.java33 private final String mProviderAuthority; field in ThemedIconUtils
44 mProviderAuthority = resolveInfo.activityInfo.metaData.getString(authorityMetaKey); in ThemedIconUtils()
46 mProviderAuthority = null; in ThemedIconUtils()
48 mProviderInfo = TextUtils.isEmpty(mProviderAuthority) ? null : in ThemedIconUtils()
49 mContext.getPackageManager().resolveContentProvider(mProviderAuthority, 0); in ThemedIconUtils()