Home
last modified time | relevance | path

Searched refs:getDestAddressList (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Uwb/service/support_lib/test/
DFiraTests.java231 assertEquals(params.getDestAddressList().size(), destAddressList.size()); in testOpenSessionParams()
233 assertEquals(params.getDestAddressList().get(i), destAddressList.get(i)); in testOpenSessionParams()
302 assertEquals(fromBundle.getDestAddressList().size(), destAddressList.size()); in testOpenSessionParams()
304 assertEquals(fromBundle.getDestAddressList().get(i), destAddressList.get(i)); in testOpenSessionParams()
379 assertEquals(fromCopy.getDestAddressList().size(), destAddressList.size()); in testOpenSessionParams()
381 assertEquals(fromCopy.getDestAddressList().get(i), destAddressList.get(i)); in testOpenSessionParams()
/packages/modules/Uwb/service/java/com/android/server/uwb/params/
DFiraEncoder.java137 if (params.getDestAddressList().size() > 0) { in getTlvBufferFromFiraOpenSessionParams()
139 for (UwbAddress address : params.getDestAddressList()) { in getTlvBufferFromFiraOpenSessionParams()
144 (byte) params.getDestAddressList().size()) in getTlvBufferFromFiraOpenSessionParams()
/packages/modules/Uwb/service/java/com/android/server/uwb/
DUwbSessionManager.java2719 if (firaParams.getDestAddressList() != null) { in UwbSession()
2721 for (UwbAddress address : firaParams.getDestAddressList()) { in UwbSession()
/packages/modules/Uwb/service/support_lib/src/com/google/uwb/support/fira/
DFiraOpenSessionParams.java485 public List<UwbAddress> getDestAddressList() { in getDestAddressList() method in FiraOpenSessionParams
/packages/modules/Uwb/service/tests/src/com/android/server/uwb/
DUwbSessionManagerTest.java1273 when(mockParams.getDestAddressList()) in initSession_controleeList()