Home
last modified time | relevance | path

Searched refs:isSystemUi (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/util/
DBinderLogger.kt74 if (analysis.isSystemUi) { in onTransactStarted()
129 val isSystemUi: Boolean, constant in com.android.systemui.util.BinderLogger.BinderTransactionAnalysis
138 (if (isSystemUi) getSimpleCallRefWithFileAndLineNumber(cause)
142 (if (!isSystemUi) ", but the call did not originate from System UI" else "") +
/frameworks/base/services/core/java/com/android/server/notification/
DManagedServices.java1854 public boolean isSystemUi; field in ManagedServices.ManagedServiceInfo
1890 public boolean isSystemUi() { in isSystemUi() method in ManagedServices.ManagedServiceInfo
1891 return isSystemUi; in isSystemUi()
DNotificationManagerService.java11527 info.isSystemUi = !isCallerSystemOrPhone() && getContext().checkPermission(
11911 if (info.isSystemUi() && old != null && old.getNotification() != null
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DManagedServicesTest.java2066 service0.isSystemUi = true; in testManagedServiceInfoIsSystemUi()
2067 assertThat(service0.isSystemUi()).isTrue(); in testManagedServiceInfoIsSystemUi()
2068 service0.isSystemUi = false; in testManagedServiceInfoIsSystemUi()
2069 assertThat(service0.isSystemUi()).isFalse(); in testManagedServiceInfoIsSystemUi()
DNotificationListenersTest.java867 info.isSystemUi = true; in testListenerPost_UpdateLifetimeExtended()