Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapAccountItem.java36 private final String mProviderAuthority; field in BluetoothMapAccountItem
50 this.mProviderAuthority = authority; in BluetoothMapAccountItem()
118 if (!other.mProviderAuthority.equals(this.mProviderAuthority)) { in compareTo()
120 Log.d(TAG, "Wrong providerName : " + this.mProviderAuthority + " vs " in compareTo()
121 + other.mProviderAuthority); in compareTo()
148 prime * result + ((mProviderAuthority == null) ? 0 : mProviderAuthority.hashCode()); in hashCode()
185 if (mProviderAuthority == null) { in equals()
186 if (other.mProviderAuthority != null) { in equals()
189 } else if (!mProviderAuthority.equals(other.mProviderAuthority)) { in equals()
224 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()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/util/
DPreviewUtils.java41 private final String mProviderAuthority; field in PreviewUtils
51 mProviderAuthority = info.activityInfo.metaData.getString(authorityMetadataKey); in PreviewUtils()
53 mProviderAuthority = null; in PreviewUtils()
56 mProviderInfo = TextUtils.isEmpty(mProviderAuthority) ? null in PreviewUtils()
57 : mContext.getPackageManager().resolveContentProvider(mProviderAuthority, 0); in PreviewUtils()
/packages/apps/Launcher3/src/com/android/launcher3/
DLauncherProvider.java110 protected String mProviderAuthority; field in LauncherProvider
468 mProviderAuthority = null; in call()
470 mProviderAuthority = extras.getString(KEY_LAYOUT_PROVIDER_AUTHORITY); in call()
584 if (!TextUtils.isEmpty(mProviderAuthority)) { in createWorkspaceLoaderFromAppRestriction()
585 authority = mProviderAuthority; in createWorkspaceLoaderFromAppRestriction()