/frameworks/base/telephony/java/android/telephony/ims/ |
D | ImsUtListener.java | 68 private IImsUtListener mServiceInterface; field in ImsUtListener 73 mServiceInterface.utConfigurationUpdated(null, id); in onUtConfigurationUpdated() 81 mServiceInterface.utConfigurationUpdateFailed(null, id, error); in onUtConfigurationUpdateFailed() 105 mServiceInterface.utConfigurationQueried(null, id, configuration); in onUtConfigurationQueried() 124 mServiceInterface.lineIdentificationSupplementaryServiceResponse(id, configuration); in onLineIdentificationSupplementaryServiceResponse() 137 mServiceInterface.utConfigurationQueryFailed(null, id, error); in onUtConfigurationQueryFailed() 145 mServiceInterface.utConfigurationCallBarringQueried(null, id, cbInfo); in onUtConfigurationCallBarringQueried() 153 mServiceInterface.utConfigurationCallForwardQueried(null, id, cfInfo); in onUtConfigurationCallForwardQueried() 161 mServiceInterface.utConfigurationCallWaitingQueried(null, id, cwInfo); in onUtConfigurationCallWaitingQueried() 169 mServiceInterface.onSupplementaryServiceIndication(ssData); in onSupplementaryServiceIndication() [all …]
|
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/ |
D | MotionEventInjectorTest.java | 124 IAccessibilityServiceClient mServiceInterface; field in MotionEventInjectorTest 152 mServiceInterface = mock(IAccessibilityServiceClient.class); in setUp() 198 injectEventsSync(mLineList, mServiceInterface, LINE_SEQUENCE); in testInjectEvents_shouldEmergeInOrderWithCorrectTiming() 216 verifyZeroInteractions(mServiceInterface); in testInjectEvents_shouldEmergeInOrderWithCorrectTiming() 223 verify(mServiceInterface).onPerformGestureResult(LINE_SEQUENCE, true); in testInjectEvents_shouldEmergeInOrderWithCorrectTiming() 224 verifyNoMoreInteractions(mServiceInterface); in testInjectEvents_shouldEmergeInOrderWithCorrectTiming() 246 injectEventsSync(events, mServiceInterface, CLICK_SEQUENCE); in testInjectEvents_gestureWithTooManyPoints_shouldNotCrash() 248 verify(mServiceInterface).onPerformGestureResult(eq(CLICK_SEQUENCE), anyBoolean()); in testInjectEvents_gestureWithTooManyPoints_shouldNotCrash() 254 injectEventsSync(mLineList, mServiceInterface, LINE_SEQUENCE); in testRegularEvent_afterGestureComplete_shouldPassToNext() 266 injectEventsSync(mLineList, mServiceInterface, LINE_SEQUENCE); in testInjectEvents_withRealGestureUnderway_shouldCancelRealAndPassInjected() [all …]
|
D | AbstractAccessibilityServiceConnectionTest.java | 236 mServiceConnection.mServiceInterface = mMockServiceInterface; in setup()
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
D | UiAutomationManager.java | 103 "UiAutomationService " + mUiAutomationService.mServiceInterface in registerUiTestAutomationServiceLocked() 128 mUiAutomationService.mServiceInterface = serviceClient; in registerUiTestAutomationServiceLocked() 131 mUiAutomationService.mServiceInterface.asBinder().linkToDeath(mUiAutomationService, in registerUiTestAutomationServiceLocked() 148 || (mUiAutomationService.mServiceInterface == null) in unregisterUiTestAutomationServiceLocked() 150 != mUiAutomationService.mServiceInterface.asBinder()))) { in unregisterUiTestAutomationServiceLocked() 224 mUiAutomationService.mServiceInterface.asBinder().unlinkToDeath( in destroyUiAutomationService() 261 serviceInterface = mServiceInterface; in connectServiceUnknownThread() 265 mService = mServiceInterface.asBinder(); in connectServiceUnknownThread()
|
D | AccessibilityServiceConnection.java | 176 mServiceInterface = IAccessibilityServiceClient.Stub.asInterface(service); in onServiceConnected() 205 serviceInterface = mServiceInterface; in initializeService() 360 return (mServiceInterface != null) in isCapturingFingerprintGestures() 372 serviceInterface = mServiceInterface; in onFingerprintGestureDetectionActiveChanged() 380 mServiceInterface.onFingerprintCapturingGesturesChanged(active); in onFingerprintGestureDetectionActiveChanged() 393 serviceInterface = mServiceInterface; in onFingerprintGesture() 401 mServiceInterface.onFingerprintGesture(gesture); in onFingerprintGesture() 416 gestureSteps.getList(), mServiceInterface, sequence, displayId); in dispatchGesture() local 423 mServiceInterface.onPerformGestureResult(sequence, false); in dispatchGesture() 426 + mServiceInterface, re); in dispatchGesture()
|
D | AbstractAccessibilityServiceConnection.java | 141 IAccessibilityServiceClient mServiceInterface; field in AbstractAccessibilityServiceConnection 290 if (!mRequestFilterKeyEvents || (mServiceInterface == null)) { in onKeyEvent() 305 mServiceInterface.onKeyEvent(keyEvent, sequenceNumber); in onKeyEvent() 1316 if (mServiceInterface != null) { in resetLocked() 1320 mServiceInterface.init(null, mId, null); in resetLocked() 1334 mServiceInterface = null; in resetLocked() 1425 listener = mServiceInterface; in notifyAccessibilityEventInternal() 1644 return mServiceInterface; in getServiceInterfaceSafely()
|
D | AccessibilityManagerService.java | 961 IAccessibilityServiceClient a11yServiceInterface = service.mServiceInterface; in interrupt()
|
/frameworks/base/core/tests/coretests/src/android/accessibilityservice/ |
D | AccessibilityServiceTest.java | 79 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/ |
D | AudioStreamInternal.cpp | 70 , mServiceInterface(serviceInterface) in AudioStreamInternal() 139 mServiceStreamHandle = mServiceInterface.openStream(request, configurationOutput); in open() 150 mServiceStreamHandle = mServiceInterface.openStream(request, configurationOutput); in open() 194 result = mServiceInterface.getStreamDescription(mServiceStreamHandle, mEndPointParcelable); in open() 316 mServiceInterface.closeStream(serviceStreamHandle); in release_l() 377 aaudio_result_t result = mServiceInterface.startStream(mServiceStreamHandle); in requestStart_l() 465 result = mServiceInterface.stopStream(mServiceStreamHandle); in requestStop_l() 478 return mServiceInterface.registerAudioThread(mServiceStreamHandle, in registerThread() 488 return mServiceInterface.unregisterAudioThread(mServiceStreamHandle, gettid()); in unregisterThread() 498 aaudio_result_t result = mServiceInterface.startClient(mServiceStreamHandle, in startClient() [all …]
|
D | AudioStreamInternalPlay.cpp | 84 return mServiceInterface.pauseStream(mServiceStreamHandle); in requestPause_l() 94 return mServiceInterface.flushStream(mServiceStreamHandle); in requestFlush_l()
|
D | AudioStreamInternal.h | 166 AAudioServiceInterface &mServiceInterface; // abstract interface to the service variable
|
/frameworks/base/media/java/android/media/musicrecognition/ |
D | MusicRecognitionService.java | 76 private final IMusicRecognitionService mServiceInterface = field in MusicRecognitionService 141 return mServiceInterface.asBinder(); in onBind()
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 57439 Landroid/telephony/ims/ImsUtListener;->mServiceInterface:Lcom/android/ims/internal/IImsUtListener;
|