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.java890 public void setHybridSessionControllerConfiguration(SessionHandle sessionHandle, in setHybridSessionControllerConfiguration() method in UwbServiceCore
896 mSessionManager.setHybridSessionControllerConfiguration(sessionHandle, params); in setHybridSessionControllerConfiguration()
DUwbSessionManager.java1224 public void setHybridSessionControllerConfiguration(SessionHandle sessionHandle, in setHybridSessionControllerConfiguration() method in UwbSessionManager
1459 status = mNativeUwbManager.setHybridSessionControllerConfiguration( in handleSetHybridSessionControllerConfiguration()
/packages/modules/Uwb/service/java/com/android/server/uwb/jni/
DNativeUwbManager.java530 public byte setHybridSessionControllerConfiguration(int sessionId, byte messageControl, 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.java4915 when(mNativeUwbManager.setHybridSessionControllerConfiguration( in testsetHybridSessionControllerConfiguration_shortMacAddress()
4920 mUwbSessionManager.setHybridSessionControllerConfiguration( in testsetHybridSessionControllerConfiguration_shortMacAddress()
4924 verify(mNativeUwbManager).setHybridSessionControllerConfiguration( in testsetHybridSessionControllerConfiguration_shortMacAddress()
4994 when(mNativeUwbManager.setHybridSessionControllerConfiguration( in testsetHybridSessionControllerConfiguration_extendedMacAddress()
5000 mUwbSessionManager.setHybridSessionControllerConfiguration( in testsetHybridSessionControllerConfiguration_extendedMacAddress()
5004 verify(mNativeUwbManager).setHybridSessionControllerConfiguration( in testsetHybridSessionControllerConfiguration_extendedMacAddress()
5033 mUwbSessionManager.setHybridSessionControllerConfiguration( in testsetHybridSessionControllerWithInvalidInvalidSessionType()
5065 mUwbSessionManager.setHybridSessionControllerConfiguration( in testsetHybridSessionControllerWithInvalidScheduledMode()
5097 mUwbSessionManager.setHybridSessionControllerConfiguration( in testsetHybridSessionControllerWithInvalidDeviceType()
5110 () -> mUwbSessionManager.setHybridSessionControllerConfiguration(mockSessionHandle, in testsetHybridSessionControllerConfiguration_whenUwbSessionDoesNotExist()
DUwbServiceCoreTest.java1909 mUwbServiceCore.setHybridSessionControllerConfiguration(sessionHandle, bundle); in testSetHybridSessionControllerConfiguration()
1911 verify(mUwbSessionManager).setHybridSessionControllerConfiguration(sessionHandle, bundle); in testSetHybridSessionControllerConfiguration()
/packages/modules/Uwb/framework/api/
Dsystem-current.txt116 …(android.Manifest.permission.UWB_PRIVILEGED) public void setHybridSessionControllerConfiguration(@…
/packages/modules/Uwb/tests/cts/tests/src/android/uwb/cts/
DUwbManagerTest.java1200 .setHybridSessionControllerConfiguration(new PersistableBundle()); in testsetHybridSessionControllerConfigurationWithNoPermission()