Home
last modified time | relevance | path

Searched refs:mServiceInterface (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/telephony/java/android/telephony/ims/
DImsUtListener.java70 private IImsUtListener mServiceInterface; field in ImsUtListener
75 mServiceInterface.utConfigurationUpdated(null, id); in onUtConfigurationUpdated()
83 mServiceInterface.utConfigurationUpdateFailed(null, id, error); in onUtConfigurationUpdateFailed()
107 mServiceInterface.utConfigurationQueried(null, id, configuration); in onUtConfigurationQueried()
126 mServiceInterface.lineIdentificationSupplementaryServiceResponse(id, configuration); in onLineIdentificationSupplementaryServiceResponse()
139 mServiceInterface.utConfigurationQueryFailed(null, id, error); in onUtConfigurationQueryFailed()
147 mServiceInterface.utConfigurationCallBarringQueried(null, id, cbInfo); in onUtConfigurationCallBarringQueried()
155 mServiceInterface.utConfigurationCallForwardQueried(null, id, cfInfo); in onUtConfigurationCallForwardQueried()
163 mServiceInterface.utConfigurationCallWaitingQueried(null, id, cwInfo); in onUtConfigurationCallWaitingQueried()
171 mServiceInterface.onSupplementaryServiceIndication(ssData); in onSupplementaryServiceIndication()
[all …]
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
DMotionEventInjectorTest.java115 IAccessibilityServiceClient mServiceInterface; field in MotionEventInjectorTest
143 mServiceInterface = mock(IAccessibilityServiceClient.class); in setUp()
185 injectEventsSync(mLineList, mServiceInterface, LINE_SEQUENCE); in testInjectEvents_shouldEmergeInOrderWithCorrectTiming()
203 verifyZeroInteractions(mServiceInterface); in testInjectEvents_shouldEmergeInOrderWithCorrectTiming()
210 verify(mServiceInterface).onPerformGestureResult(LINE_SEQUENCE, true); in testInjectEvents_shouldEmergeInOrderWithCorrectTiming()
211 verifyNoMoreInteractions(mServiceInterface); in testInjectEvents_shouldEmergeInOrderWithCorrectTiming()
233 injectEventsSync(events, mServiceInterface, CLICK_SEQUENCE); in testInjectEvents_gestureWithTooManyPoints_shouldNotCrash()
235 verify(mServiceInterface).onPerformGestureResult(eq(CLICK_SEQUENCE), anyBoolean()); in testInjectEvents_gestureWithTooManyPoints_shouldNotCrash()
241 injectEventsSync(mLineList, mServiceInterface, LINE_SEQUENCE); in testRegularEvent_afterGestureComplete_shouldPassToNext()
252 injectEventsSync(mLineList, mServiceInterface, LINE_SEQUENCE); in testInjectEvents_withRealGestureUnderway_shouldCancelRealAndPassInjected()
[all …]
DAbstractAccessibilityServiceConnectionTest.java232 mServiceConnection.mServiceInterface = mMockServiceInterface; in setup()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DAccessibilityServiceConnection.java168 mServiceInterface = IAccessibilityServiceClient.Stub.asInterface(service); in onServiceConnected()
197 serviceInterface = mServiceInterface; in initializeService()
334 return (mServiceInterface != null) in isCapturingFingerprintGestures()
346 serviceInterface = mServiceInterface; in onFingerprintGestureDetectionActiveChanged()
350 mServiceInterface.onFingerprintCapturingGesturesChanged(active); in onFingerprintGestureDetectionActiveChanged()
363 serviceInterface = mServiceInterface; in onFingerprintGesture()
367 mServiceInterface.onFingerprintGesture(gesture); in onFingerprintGesture()
382 gestureSteps.getList(), mServiceInterface, sequence, displayId); in dispatchGesture() local
385 mServiceInterface.onPerformGestureResult(sequence, false); in dispatchGesture()
388 + mServiceInterface, re); in dispatchGesture()
DUiAutomationManager.java116 mUiAutomationService.mServiceInterface = serviceClient; in registerUiTestAutomationServiceLocked()
119 mUiAutomationService.mServiceInterface.asBinder().linkToDeath(mUiAutomationService, in registerUiTestAutomationServiceLocked()
135 || (mUiAutomationService.mServiceInterface == null) in unregisterUiTestAutomationServiceLocked()
137 != mUiAutomationService.mServiceInterface.asBinder())) { in unregisterUiTestAutomationServiceLocked()
207 mUiAutomationService.mServiceInterface.asBinder().unlinkToDeath( in destroyUiAutomationService()
244 serviceInterface = mServiceInterface; in connectServiceUnknownThread()
245 mService = (serviceInterface == null) ? null : mServiceInterface.asBinder(); in connectServiceUnknownThread()
DAbstractAccessibilityServiceConnection.java134 IAccessibilityServiceClient mServiceInterface; field in AbstractAccessibilityServiceConnection
277 if (!mRequestFilterKeyEvents || (mServiceInterface == null)) { in onKeyEvent()
288 mServiceInterface.onKeyEvent(keyEvent, sequenceNumber); in onKeyEvent()
1175 if (mServiceInterface != null) { in resetLocked()
1176 mServiceInterface.init(null, mId, null); in resetLocked()
1186 mServiceInterface = null; in resetLocked()
1277 listener = mServiceInterface; in notifyAccessibilityEventInternal()
1465 return mServiceInterface; in getServiceInterfaceSafely()
DAccessibilityManagerService.java822 IAccessibilityServiceClient a11yServiceInterface = service.mServiceInterface; in interrupt()
/frameworks/base/core/tests/coretests/src/android/accessibilityservice/
DAccessibilityServiceTest.java79 private IAccessibilityServiceClient mServiceInterface; field in AccessibilityServiceTest
87 mServiceInterface = (IAccessibilityServiceClient) mService.onBind(new Intent()); in setUp()
88 mServiceInterface.init(mMockConnection, CONNECTION_ID, mMockIBinder); in setUp()
93 mServiceInterface.onSystemActionsChanged(); in testOnSystemActionsChanged()
/frameworks/av/media/libaaudio/src/client/
DAudioStreamInternal.cpp71 , mServiceInterface(serviceInterface) in AudioStreamInternal()
131 mServiceStreamHandle = mServiceInterface.openStream(request, configurationOutput); in open()
142 mServiceStreamHandle = mServiceInterface.openStream(request, configurationOutput); in open()
175 result = mServiceInterface.getStreamDescription(mServiceStreamHandle, mEndPointParcelable); in open()
297 mServiceInterface.closeStream(serviceStreamHandle); in release_l()
356 aaudio_result_t result = mServiceInterface.startStream(mServiceStreamHandle); in requestStart()
441 result = mServiceInterface.stopStream(mServiceStreamHandle); in requestStop()
454 return mServiceInterface.registerAudioThread(mServiceStreamHandle, in registerThread()
464 return mServiceInterface.unregisterAudioThread(mServiceStreamHandle, gettid()); in unregisterThread()
474 aaudio_result_t result = mServiceInterface.startClient(mServiceStreamHandle, in startClient()
[all …]
DAudioStreamInternalPlay.cpp76 return mServiceInterface.pauseStream(mServiceStreamHandle); in requestPause()
86 return mServiceInterface.flushStream(mServiceStreamHandle); in requestFlush()
DAudioStreamInternal.h174 AAudioServiceInterface &mServiceInterface; // abstract interface to the service variable