Home
last modified time | relevance | path

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

/packages/apps/Car/Notification/src/com/android/car/notification/
DNotificationUtils.java97 public static boolean isSignedWithPlatformKey(Context context, in isSignedWithPlatformKey() method in NotificationUtils
102 return packageInfo.applicationInfo.isSignedWithPlatformKey(); in isSignedWithPlatformKey()
168 return (packageInfo.applicationInfo.isSignedWithPlatformKey() || in isSystemPrivilegedOrPlatformKeyInner()
/packages/apps/Car/Notification/src/com/android/car/notification/template/
DCarNotificationBaseViewHolder.java209 boolean isSignedWithPlatformKey = NotificationUtils.isSignedWithPlatformKey(mContext, in canChangeCardBackgroundColor()
213 return isSystemApp || isNavigationCategory || isSignedWithPlatformKey; in canChangeCardBackgroundColor()
/packages/apps/Car/Notification/tests/robotests/src/com/android/car/notification/
DNotificationUtilsTest.java157 assertThat(NotificationUtils.isSignedWithPlatformKey(mContext, in onIsSignedWithPlatformKey_isSignedWithPlatformKey_returnsTrue()
167 assertThat(NotificationUtils.isSignedWithPlatformKey(mContext, in onIsSignedWithPlatformKey_isNotSignedWithPlatformKey_returnsFalse()
DPreprocessingManagerTest.java181 when(mApplicationInfo.isSignedWithPlatformKey()).thenReturn(true); in setup()