HomeSort by relevance Sort by last modified time
    Searched refs:mServiceInterface (Results 1 - 10 of 10) sorted by null

  /frameworks/base/telephony/java/android/telephony/ims/
ImsUtListener.java 35 private IImsUtListener mServiceInterface;
40 mServiceInterface.utConfigurationUpdated(null, id);
48 mServiceInterface.utConfigurationUpdateFailed(null, id, error);
56 mServiceInterface.utConfigurationQueried(null, id, ssInfo);
64 mServiceInterface.utConfigurationQueryFailed(null, id, error);
72 mServiceInterface.utConfigurationCallBarringQueried(null, id, cbInfo);
80 mServiceInterface.utConfigurationCallForwardQueried(null, id, cfInfo);
88 mServiceInterface.utConfigurationCallWaitingQueried(null, id, cwInfo);
96 mServiceInterface.onSupplementaryServiceIndication(ssData);
106 mServiceInterface = serviceInterface
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
MotionEventInjectorTest.java 111 IAccessibilityServiceClient mServiceInterface;
145 mServiceInterface = mock(IAccessibilityServiceClient.class);
177 injectEventsSync(mLineList, mServiceInterface, LINE_SEQUENCE);
195 verifyZeroInteractions(mServiceInterface);
202 verify(mServiceInterface).onPerformGestureResult(LINE_SEQUENCE, true);
203 verifyNoMoreInteractions(mServiceInterface);
225 injectEventsSync(events, mServiceInterface, CLICK_SEQUENCE);
227 verify(mServiceInterface).onPerformGestureResult(eq(CLICK_SEQUENCE), anyBoolean());
233 injectEventsSync(mLineList, mServiceInterface, LINE_SEQUENCE);
244 injectEventsSync(mLineList, mServiceInterface, LINE_SEQUENCE)
    [all...]
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
AccessibilityServiceConnection.java 156 mServiceInterface = IAccessibilityServiceClient.Stub.asInterface(service);
184 serviceInterface = mServiceInterface;
313 return (mServiceInterface != null)
325 serviceInterface = mServiceInterface;
329 mServiceInterface.onFingerprintCapturingGesturesChanged(active);
342 serviceInterface = mServiceInterface;
346 mServiceInterface.onFingerprintGesture(gesture);
360 gestureSteps.getList(), mServiceInterface, sequence);
363 mServiceInterface.onPerformGestureResult(sequence, false);
366 + mServiceInterface, re)
    [all...]
UiAutomationManager.java 106 mUiAutomationService.mServiceInterface = serviceClient;
109 mUiAutomationService.mServiceInterface.asBinder().linkToDeath(mUiAutomationService, 0);
122 || (mUiAutomationService.mServiceInterface == null)
124 != mUiAutomationService.mServiceInterface.asBinder())) {
179 mUiAutomationService.mServiceInterface.asBinder().unlinkToDeath(mUiAutomationService, 0);
211 serviceInterface = mServiceInterface;
212 mService = (serviceInterface == null) ? null : mServiceInterface.asBinder();
AbstractAccessibilityServiceConnection.java 101 IAccessibilityServiceClient mServiceInterface;
270 if (!mRequestFilterKeyEvents || (mServiceInterface == null)) {
278 mServiceInterface.onKeyEvent(keyEvent, sequenceNumber);
    [all...]
AccessibilityManagerService.java 651 IAccessibilityServiceClient a11yServiceInterface = service.mServiceInterface;
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
ConnectionServiceWrapper.java 83 if (mServiceInterface != null) {
86 mServiceInterface.createConnectionComplete(callId,
    [all...]
  /frameworks/av/media/libaaudio/src/client/
AudioStreamInternal.cpp 65 , mServiceInterface(serviceInterface)
121 mServiceStreamHandle = mServiceInterface.openStream(request, configurationOutput);
132 mServiceStreamHandle = mServiceInterface.openStream(request, configurationOutput);
161 result = mServiceInterface.getStreamDescription(mServiceStreamHandle, mEndPointParcelable);
251 mServiceInterface.closeStream(serviceStreamHandle);
308 aaudio_result_t result = mServiceInterface.startStream(mServiceStreamHandle);
373 return mServiceInterface.stopStream(mServiceStreamHandle);
381 return mServiceInterface.registerAudioThread(mServiceStreamHandle,
391 return mServiceInterface.unregisterAudioThread(mServiceStreamHandle, gettid());
400 aaudio_result_t result = mServiceInterface.startClient(mServiceStreamHandle
    [all...]
AudioStreamInternal.h 165 AAudioServiceInterface &mServiceInterface; // abstract interface to the service
AudioStreamInternalPlay.cpp 67 return mServiceInterface.pauseStream(mServiceStreamHandle);
77 return mServiceInterface.flushStream(mServiceStreamHandle);

Completed in 281 milliseconds