Home
last modified time | relevance | path

Searched refs:isService (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
DAssistManager.java151 final boolean isService = assistComponent.equals(getVoiceInteractorComponentName()); in startAssist()
152 if (!isService || (!isVoiceSessionRunning() && shouldShowOrb())) { in startAssist()
153 showOrb(assistComponent, isService); in startAssist()
154 mView.postDelayed(mHideRunnable, isService in startAssist()
158 startAssistInternal(args, assistComponent, isService); in startAssist()
182 private void showOrb(@NonNull ComponentName assistComponent, boolean isService) { in showOrb() argument
183 maybeSwapSearchIcon(assistComponent, isService); in showOrb()
190 boolean isService) { in startAssistInternal() argument
191 if (isService) { in startAssistInternal()
263 private void maybeSwapSearchIcon(@NonNull ComponentName assistComponent, boolean isService) { in maybeSwapSearchIcon() argument
[all …]
/frameworks/base/tools/preload/
DPolicy.java80 public static boolean isService(String processName) { in isService() method in Policy
DWritePreloadedClassFile.java99 if (proc.fromZygote() && !Policy.isService(proc.name)) { in main()