Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/speech/
DSpeechRecognitionManagerService.java87 boolean onDevice, in createSession() argument
92 service.createSessionLocked(componentName, clientToken, onDevice, callback); in createSession()
DSpeechRecognitionManagerServiceImpl.java104 boolean onDevice, in createSessionLocked() argument
108 componentName, onDevice)); in createSessionLocked()
112 if (onDevice) { in createSessionLocked()
116 if (!onDevice && Process.isIsolated(Binder.getCallingUid())) { in createSessionLocked()
/frameworks/base/core/java/android/speech/
DIRecognitionServiceManager.aidl32 boolean onDevice, in createSession() argument
DSpeechRecognizerImpl.java135 /* package */ SpeechRecognizerImpl(final Context context, boolean onDevice) { in SpeechRecognizerImpl() argument
136 this(context, null, onDevice); in SpeechRecognizerImpl()
142 final boolean onDevice) { in SpeechRecognizerImpl() argument
145 mOnDevice = onDevice; in SpeechRecognizerImpl()
/frameworks/base/services/usage/java/com/android/server/usage/
DUsageStatsDatabase.java1428 private IntervalStats mergeStats(IntervalStats beingRestored, IntervalStats onDevice) { in mergeStats() argument
1429 if (onDevice == null) return beingRestored; in mergeStats()
1431 beingRestored.activeConfiguration = onDevice.activeConfiguration; in mergeStats()
1432 beingRestored.configurations.putAll(onDevice.configurations); in mergeStats()
1434 beingRestored.events.merge(onDevice.events); in mergeStats()