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.java149 final boolean isService = assistComponent.equals(getVoiceInteractorComponentName()); in startAssist()
150 if (!isService || (!isVoiceSessionRunning() && shouldShowOrb())) { in startAssist()
151 showOrb(assistComponent, isService); in startAssist()
152 mView.postDelayed(mHideRunnable, isService in startAssist()
156 startAssistInternal(args, assistComponent, isService); in startAssist()
183 private void showOrb(@NonNull ComponentName assistComponent, boolean isService) { in showOrb() argument
184 maybeSwapSearchIcon(assistComponent, isService); in showOrb()
189 boolean isService) { in startAssistInternal() argument
190 if (isService) { in startAssistInternal()
262 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()