Home
last modified time | relevance | path

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

/frameworks/base/telephony/java/android/telephony/ims/
DImsUtListener.java68 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/
DMotionEventInjectorTest.java124 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 …]
DAbstractAccessibilityServiceConnectionTest.java236 mServiceConnection.mServiceInterface = mMockServiceInterface; in setup()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DUiAutomationManager.java103 "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()
DAccessibilityServiceConnection.java176 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()
DAbstractAccessibilityServiceConnection.java141 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()
DAccessibilityManagerService.java961 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.cpp70 , 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 …]
DAudioStreamInternalPlay.cpp84 return mServiceInterface.pauseStream(mServiceStreamHandle); in requestPause_l()
94 return mServiceInterface.flushStream(mServiceStreamHandle); in requestFlush_l()
DAudioStreamInternal.h166 AAudioServiceInterface &mServiceInterface; // abstract interface to the service variable
/frameworks/base/media/java/android/media/musicrecognition/
DMusicRecognitionService.java76 private final IMusicRecognitionService mServiceInterface = field in MusicRecognitionService
141 return mServiceInterface.asBinder(); in onBind()
/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-o.txt57439 Landroid/telephony/ims/ImsUtListener;->mServiceInterface:Lcom/android/ims/internal/IImsUtListener;