Home
last modified time | relevance | path

Searched refs:setHybridSessionControllerConfiguration (Results 1 – 12 of 12) sorted by relevance

/packages/modules/Uwb/framework/tests/src/android/uwb/
DRangingSessionTest.java262 .setHybridSessionControllerConfiguration(any(), any()); in testCallbacks_OnlyWhenOpened()
348 session.setHybridSessionControllerConfiguration(PARAMS); in testCallbacks_OnlyWhenOpened()
354 verifyNoThrowIllegalState(() -> session.setHybridSessionControllerConfiguration(null)); in testCallbacks_OnlyWhenOpened()
593 rangingSession.setHybridSessionControllerConfiguration(PARAMS)); in testSetHybridSessionControllerConfiguration_NotOpenSession_ThrowsException()
609 rangingSession.setHybridSessionControllerConfiguration(PARAMS); in testSetHybridSessionControllerConfiguration_OpenSession_Success()
613 verify(adapter).setHybridSessionControllerConfiguration(sessionHandle, PARAMS); in testSetHybridSessionControllerConfiguration_OpenSession_Success()
621 rangingSession.setHybridSessionControllerConfiguration(PARAMS)); in testSetHybridSessionControllerConfiguration_OpenSession_Success()
/packages/modules/Uwb/framework/java/android/uwb/
DIUwbAdapter.aidl386 void setHybridSessionControllerConfiguration(in SessionHandle sessionHandle, in setHybridSessionControllerConfiguration() method
DRangingSession.java908 public void setHybridSessionControllerConfiguration(@NonNull PersistableBundle params) { in setHybridSessionControllerConfiguration() method in RangingSession
915 mAdapter.setHybridSessionControllerConfiguration(mSessionHandle, params); in setHybridSessionControllerConfiguration()
/packages/modules/Uwb/service/java/com/android/server/uwb/
DUwbServiceImpl.java408 public void setHybridSessionControllerConfiguration(SessionHandle sessionHandle, in setHybridSessionControllerConfiguration() method in UwbServiceImpl
414 mUwbServiceCore.setHybridSessionControllerConfiguration(sessionHandle, params); in setHybridSessionControllerConfiguration()
DUwbServiceCore.java930 public void setHybridSessionControllerConfiguration(SessionHandle sessionHandle, in setHybridSessionControllerConfiguration() method in UwbServiceCore
936 mSessionManager.setHybridSessionControllerConfiguration(sessionHandle, params); in setHybridSessionControllerConfiguration()
DUwbSessionManager.java1411 public void setHybridSessionControllerConfiguration(SessionHandle sessionHandle, in setHybridSessionControllerConfiguration() method in UwbSessionManager
1645 status = mNativeUwbManager.setHybridSessionControllerConfiguration( in handleSetHybridSessionControllerConfiguration()
/packages/modules/Uwb/service/java/com/android/server/uwb/jni/
DNativeUwbManager.java599 public byte setHybridSessionControllerConfiguration(int sessionId, int numberOfPhases, in setHybridSessionControllerConfiguration() method in NativeUwbManager
/packages/modules/Uwb/service/tests/src/com/android/server/uwb/
DUwbServiceImplTest.java896 mUwbServiceImpl.setHybridSessionControllerConfiguration(sessionHandle, parameters); in testSetHybridSessionControllerConfiguration()
898 verify(mUwbServiceCore).setHybridSessionControllerConfiguration(sessionHandle, parameters); in testSetHybridSessionControllerConfiguration()
DUwbSessionManagerTest.java5015 when(mNativeUwbManager.setHybridSessionControllerConfiguration( in testsetHybridSessionControllerConfiguration_shortMacAddress()
5020 mUwbSessionManager.setHybridSessionControllerConfiguration( in testsetHybridSessionControllerConfiguration_shortMacAddress()
5024 verify(mNativeUwbManager).setHybridSessionControllerConfiguration( in testsetHybridSessionControllerConfiguration_shortMacAddress()
5090 when(mNativeUwbManager.setHybridSessionControllerConfiguration( in testsetHybridSessionControllerConfiguration_extendedMacAddress()
5096 mUwbSessionManager.setHybridSessionControllerConfiguration( in testsetHybridSessionControllerConfiguration_extendedMacAddress()
5100 verify(mNativeUwbManager).setHybridSessionControllerConfiguration( in testsetHybridSessionControllerConfiguration_extendedMacAddress()
5129 mUwbSessionManager.setHybridSessionControllerConfiguration( in testsetHybridSessionControllerWithInvalidInvalidSessionType()
5161 mUwbSessionManager.setHybridSessionControllerConfiguration( in testsetHybridSessionControllerWithInvalidScheduledMode()
5193 mUwbSessionManager.setHybridSessionControllerConfiguration( in testsetHybridSessionControllerWithInvalidDeviceType()
5206 () -> mUwbSessionManager.setHybridSessionControllerConfiguration(mockSessionHandle, in testsetHybridSessionControllerConfiguration_whenUwbSessionDoesNotExist()
DUwbServiceCoreTest.java1997 mUwbServiceCore.setHybridSessionControllerConfiguration(sessionHandle, bundle); in testSetHybridSessionControllerConfiguration()
1999 verify(mUwbSessionManager).setHybridSessionControllerConfiguration(sessionHandle, bundle); in testSetHybridSessionControllerConfiguration()
/packages/modules/Uwb/framework/api/
Dsystem-current.txt119 …(android.Manifest.permission.UWB_PRIVILEGED) public void setHybridSessionControllerConfiguration(@…
/packages/modules/Uwb/tests/cts/tests/src/android/uwb/cts/
DUwbManagerTest.java1236 .setHybridSessionControllerConfiguration(new PersistableBundle()); in testsetHybridSessionControllerConfigurationWithNoPermission()