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

/frameworks/base/core/java/android/speech/
H A DRecognitionService.java63 private Callback mCurrentCallback = null; field in class:RecognitionService
95 if (mCurrentCallback == null) {
96 if (DBG) Log.d(TAG, "created new mCurrentCallback, listener = " + listener.asBinder());
97 mCurrentCallback = new Callback(listener);
98 RecognitionService.this.onStartListening(intent, mCurrentCallback);
111 if (mCurrentCallback == null) {
114 } else if (mCurrentCallback.mListener.asBinder() != listener.asBinder()) {
118 RecognitionService.this.onStopListening(mCurrentCallback);
126 if (mCurrentCallback == null) {
128 } else if (mCurrentCallback
[all...]

Completed in 143 milliseconds