Searched refs:dispatcher (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/core/java/android/speech/tts/
H A DPlaybackQueueItem.java11 PlaybackQueueItem(TextToSpeechService.UtteranceProgressDispatcher dispatcher, argument
13 mDispatcher = dispatcher;
H A DAudioPlaybackQueueItem.java36 AudioPlaybackQueueItem(UtteranceProgressDispatcher dispatcher, argument
39 super(dispatcher, callerIdentity);
51 final UtteranceProgressDispatcher dispatcher = getDispatcher();
53 dispatcher.dispatchOnStart();
56 dispatcher.dispatchOnError();
86 dispatcher.dispatchOnDone();
88 dispatcher.dispatchOnError();
H A DSilencePlaybackQueueItem.java26 SilencePlaybackQueueItem(UtteranceProgressDispatcher dispatcher, argument
28 super(dispatcher, callerIdentity);
H A DSynthesisPlaybackQueueItem.java68 float volume, float pan, UtteranceProgressDispatcher dispatcher,
70 super(dispatcher, callerIdentity);
86 final UtteranceProgressDispatcher dispatcher = getDispatcher();
87 dispatcher.dispatchOnStart();
91 dispatcher.dispatchOnError();
116 dispatcher.dispatchOnError();
118 dispatcher.dispatchOnDone();
66 SynthesisPlaybackQueueItem(int streamType, int sampleRate, int audioFormat, int channelCount, float volume, float pan, UtteranceProgressDispatcher dispatcher, Object callerIdentity, EventLogger logger) argument
H A DPlaybackSynthesisCallback.java70 AudioPlaybackHandler audioTrackHandler, UtteranceProgressDispatcher dispatcher,
76 mDispatcher = dispatcher;
69 PlaybackSynthesisCallback(int streamType, float volume, float pan, AudioPlaybackHandler audioTrackHandler, UtteranceProgressDispatcher dispatcher, Object callerIdentity, EventLogger logger) argument
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneFallbackEventHandler.java79 final KeyEvent.DispatcherState dispatcher = mView.getKeyDispatcherState();
111 if (getKeyguardManager().inKeyguardRestrictedInputMode() || dispatcher == null) {
115 dispatcher.startTracking(event, this);
116 } else if (event.isLongPress() && dispatcher.isTracking(event)) {
117 dispatcher.performedLongPress(event);
133 if (getKeyguardManager().inKeyguardRestrictedInputMode() || dispatcher == null) {
137 dispatcher.startTracking(event, this);
138 } else if (event.isLongPress() && dispatcher.isTracking(event)) {
139 dispatcher.performedLongPress(event);
152 if (getKeyguardManager().inKeyguardRestrictedInputMode() || dispatcher
[all...]
H A DPhoneWindow.java1440 final KeyEvent.DispatcherState dispatcher =
1466 if (dispatcher != null) {
1467 dispatcher.startTracking(event, this);
1499 final KeyEvent.DispatcherState dispatcher =
1501 if (dispatcher != null) {
1502 dispatcher.handleUpEvent(event);
/frameworks/base/services/input/
H A DInputManager.cpp38 const sp<InputDispatcherInterface>& dispatcher) :
40 mDispatcher(dispatcher) {
36 InputManager( const sp<InputReaderInterface>& reader, const sp<InputDispatcherInterface>& dispatcher) argument
H A DInputManager.h72 /* Gets the input dispatcher. */
89 const sp<InputDispatcherInterface>& dispatcher);
H A DInputDispatcher.h71 /* Waits for previous events to be dispatched so that the input dispatcher can determine
165 * Input dispatcher configuration.
167 * Specifies various options that modify the behavior of the input dispatcher.
183 * Input dispatcher policy interface.
208 /* Gets the input dispatcher configuration. */
268 * The dispatcher is expected to be mostly asynchronous. */
275 /* Dumps the state of the input dispatcher.
280 /* Called by the heatbeat to ensures that the dispatcher has not deadlocked. */
286 * This method should only be called on the input dispatcher thread.
346 /* Dispatches events to input targets. Some functions of the input dispatcher, suc
[all...]
H A DInputDispatcher.cpp22 // Log detailed debug messages about each inbound event notification to the dispatcher.
25 // Log detailed debug messages about each outbound event processed by the dispatcher.
916 "is no longer registered with the input dispatcher.",
1124 // In the new native input dispatcher we're a bit more careful about event
2933 resetAndDropEverythingLocked("dispatcher is being disabled");
3730 // Acquire and release the lock to ensure that the dispatcher has not deadlocked.
4414 InputDispatcherThread::InputDispatcherThread(const sp<InputDispatcherInterface>& dispatcher) : argument
4415 Thread(/*canCallJava*/ true), mDispatcher(dispatcher) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DRuimSmsInterfaceManager.java84 public RuimSmsInterfaceManager(CDMAPhone phone, SMSDispatcher dispatcher) { argument
86 mDispatcher = dispatcher;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSimSmsInterfaceManager.java105 public SimSmsInterfaceManager(GSMPhone phone, SMSDispatcher dispatcher) { argument
107 mDispatcher = dispatcher;
/frameworks/av/media/libstagefright/omx/
H A DOMX.cpp43 CallbackDispatcherThread(CallbackDispatcher *dispatcher) argument
44 : mDispatcher(dispatcher) {
/frameworks/base/core/java/android/webkit/
H A DWebViewInputDispatcher.java31 * This dispatcher is shared by the UI thread ({@link WebViewClassic}) and web kit
40 * to the dispatcher, then immediately returns true to the input system to indicate that
44 * events may be enqueued from the UI thread. In some cases, the dispatcher may decide to
49 * After processing each input event, it informs the dispatcher whether the web application
57 * right to handle it. The dispatcher synthesizes a cancellation event for web kit and
61 * One thing to keep in mind about the dispatcher is that what goes into the dispatcher
63 * dispatcher may tweak the input event stream to improve responsiveness. Both web view and
72 * Currently, the input dispatcher only handles pointer events (includes touch,
96 // Posted state, tracks events posted to the dispatcher
1097 dispatchWebKitEvent(WebViewInputDispatcher dispatcher, MotionEvent event, int eventType, int flags) argument
[all...]
H A DWebViewCore.java1772 public boolean dispatchWebKitEvent(WebViewInputDispatcher dispatcher, argument
1807 dispatcher.skipWebkitForRemainingTouchStream();

Completed in 281 milliseconds