/frameworks/base/telephony/java/android/telephony/ims/ |
D | ImsUtListener.java | 35 private IImsUtListener mServiceInterface; field in ImsUtListener 40 mServiceInterface.utConfigurationUpdated(null, id); in onUtConfigurationUpdated() 48 mServiceInterface.utConfigurationUpdateFailed(null, id, error); in onUtConfigurationUpdateFailed() 56 mServiceInterface.utConfigurationQueried(null, id, ssInfo); in onUtConfigurationQueried() 64 mServiceInterface.utConfigurationQueryFailed(null, id, error); in onUtConfigurationQueryFailed() 72 mServiceInterface.utConfigurationCallBarringQueried(null, id, cbInfo); in onUtConfigurationCallBarringQueried() 80 mServiceInterface.utConfigurationCallForwardQueried(null, id, cfInfo); in onUtConfigurationCallForwardQueried() 88 mServiceInterface.utConfigurationCallWaitingQueried(null, id, cwInfo); in onUtConfigurationCallWaitingQueried() 96 mServiceInterface.onSupplementaryServiceIndication(ssData); in onSupplementaryServiceIndication() 106 mServiceInterface = serviceInterface; in ImsUtListener()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/ |
D | MotionEventInjectorTest.java | 111 IAccessibilityServiceClient mServiceInterface; field in MotionEventInjectorTest 145 mServiceInterface = mock(IAccessibilityServiceClient.class); in setUp() 177 injectEventsSync(mLineList, mServiceInterface, LINE_SEQUENCE); in testInjectEvents_shouldEmergeInOrderWithCorrectTiming() 195 verifyZeroInteractions(mServiceInterface); in testInjectEvents_shouldEmergeInOrderWithCorrectTiming() 202 verify(mServiceInterface).onPerformGestureResult(LINE_SEQUENCE, true); in testInjectEvents_shouldEmergeInOrderWithCorrectTiming() 203 verifyNoMoreInteractions(mServiceInterface); in testInjectEvents_shouldEmergeInOrderWithCorrectTiming() 225 injectEventsSync(events, mServiceInterface, CLICK_SEQUENCE); in testInjectEvents_gestureWithTooManyPoints_shouldNotCrash() 227 verify(mServiceInterface).onPerformGestureResult(eq(CLICK_SEQUENCE), anyBoolean()); in testInjectEvents_gestureWithTooManyPoints_shouldNotCrash() 233 injectEventsSync(mLineList, mServiceInterface, LINE_SEQUENCE); in testRegularEvent_afterGestureComplete_shouldPassToNext() 244 injectEventsSync(mLineList, mServiceInterface, LINE_SEQUENCE); in testInjectEvents_withRealGestureUnderway_shouldCancelRealAndPassInjected() [all …]
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
D | AccessibilityServiceConnection.java | 156 mServiceInterface = IAccessibilityServiceClient.Stub.asInterface(service); in onServiceConnected() 184 serviceInterface = mServiceInterface; in initializeService() 313 return (mServiceInterface != null) in isCapturingFingerprintGestures() 325 serviceInterface = mServiceInterface; in onFingerprintGestureDetectionActiveChanged() 329 mServiceInterface.onFingerprintCapturingGesturesChanged(active); in onFingerprintGestureDetectionActiveChanged() 342 serviceInterface = mServiceInterface; in onFingerprintGesture() 346 mServiceInterface.onFingerprintGesture(gesture); in onFingerprintGesture() 360 gestureSteps.getList(), mServiceInterface, sequence); in sendGesture() local 363 mServiceInterface.onPerformGestureResult(sequence, false); in sendGesture() 366 + mServiceInterface, re); in sendGesture()
|
D | UiAutomationManager.java | 106 mUiAutomationService.mServiceInterface = serviceClient; in registerUiTestAutomationServiceLocked() 109 mUiAutomationService.mServiceInterface.asBinder().linkToDeath(mUiAutomationService, 0); in registerUiTestAutomationServiceLocked() 122 || (mUiAutomationService.mServiceInterface == null) in unregisterUiTestAutomationServiceLocked() 124 != mUiAutomationService.mServiceInterface.asBinder())) { in unregisterUiTestAutomationServiceLocked() 179 mUiAutomationService.mServiceInterface.asBinder().unlinkToDeath(mUiAutomationService, 0); in destroyUiAutomationService() 211 serviceInterface = mServiceInterface; in connectServiceUnknownThread() 212 mService = (serviceInterface == null) ? null : mServiceInterface.asBinder(); in connectServiceUnknownThread()
|
D | AbstractAccessibilityServiceConnection.java | 101 IAccessibilityServiceClient mServiceInterface; field in AbstractAccessibilityServiceConnection 270 if (!mRequestFilterKeyEvents || (mServiceInterface == null)) { in onKeyEvent() 278 mServiceInterface.onKeyEvent(keyEvent, sequenceNumber); in onKeyEvent() 948 if (mServiceInterface != null) { in resetLocked() 949 mServiceInterface.init(null, mId, null); in resetLocked() 959 mServiceInterface = null; in resetLocked() 1047 listener = mServiceInterface; in notifyAccessibilityEventInternal() 1218 return mServiceInterface; in getServiceInterfaceSafely()
|
D | AccessibilityManagerService.java | 651 IAccessibilityServiceClient a11yServiceInterface = service.mServiceInterface; in interrupt()
|
/frameworks/av/media/libaaudio/src/client/ |
D | AudioStreamInternal.cpp | 65 , mServiceInterface(serviceInterface) in AudioStreamInternal() 121 mServiceStreamHandle = mServiceInterface.openStream(request, configurationOutput); in open() 132 mServiceStreamHandle = mServiceInterface.openStream(request, configurationOutput); in open() 161 result = mServiceInterface.getStreamDescription(mServiceStreamHandle, mEndPointParcelable); in open() 251 mServiceInterface.closeStream(serviceStreamHandle); in close() 308 aaudio_result_t result = mServiceInterface.startStream(mServiceStreamHandle); in requestStart() 373 return mServiceInterface.stopStream(mServiceStreamHandle); in requestStop() 381 return mServiceInterface.registerAudioThread(mServiceStreamHandle, in registerThread() 391 return mServiceInterface.unregisterAudioThread(mServiceStreamHandle, gettid()); in unregisterThread() 400 aaudio_result_t result = mServiceInterface.startClient(mServiceStreamHandle, in startClient() [all …]
|
D | AudioStreamInternalPlay.cpp | 67 return mServiceInterface.pauseStream(mServiceStreamHandle); in requestPause() 77 return mServiceInterface.flushStream(mServiceStreamHandle); in requestFlush()
|
D | AudioStreamInternal.h | 165 AAudioServiceInterface &mServiceInterface; // abstract interface to the service variable
|