Home
last modified time | relevance | path

Searched refs:UwbDeviceInfoResponse (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Uwb/service/java/com/android/server/uwb/data/
DUwbDeviceInfoResponse.java24 public class UwbDeviceInfoResponse { class
32 public UwbDeviceInfoResponse( in UwbDeviceInfoResponse() method in UwbDeviceInfoResponse
50 if (!(o instanceof UwbDeviceInfoResponse)) return false; in equals()
51 UwbDeviceInfoResponse that = (UwbDeviceInfoResponse) o; in equals()
/packages/modules/Uwb/service/java/com/android/server/uwb/jni/
DNativeUwbManager.java27 import com.android.server.uwb.data.UwbDeviceInfoResponse;
138 public Map<String, UwbDeviceInfoResponse> doInitialize() { in doInitialize()
139 UwbDeviceInfoResponse deviceInfoResponse = null; in doInitialize()
140 Map<String, UwbDeviceInfoResponse> chipIdToDeviceInfoResponseMap = new HashMap<>(); in doInitialize()
568 private native UwbDeviceInfoResponse nativeDoInitialize(String chipIds); in nativeDoInitialize()
/packages/modules/Uwb/service/java/com/android/server/uwb/
DUwbServiceCore.java56 import com.android.server.uwb.data.UwbDeviceInfoResponse;
140 private Map<String, UwbDeviceInfoResponse> mChipIdToDeviceInfoResponseMap = new HashMap<>();
578 public UwbDeviceInfoResponse getCachedDeviceInfoResponse(String chipId) { in getCachedDeviceInfoResponse()
658 UwbDeviceInfoResponse deviceInfo = getCachedDeviceInfoResponse(chipId); in openRanging()
1145 Map<String, UwbDeviceInfoResponse> result = mNativeUwbManager.doInitialize(); in initializeHw()
DUwbSessionManager.java69 import com.android.server.uwb.data.UwbDeviceInfoResponse;
2577 UwbDeviceInfoResponse deviceInfo = in getUwbsFiraProtocolVersion()
/packages/modules/Uwb/service/tests/src/com/android/server/uwb/
DUwbServiceCoreTest.java88 import com.android.server.uwb.data.UwbDeviceInfoResponse;
230 private static final UwbDeviceInfoResponse UWB_DEVICE_INFO_RESPONSE =
231 new UwbDeviceInfoResponse(
238 private static final Map<String, UwbDeviceInfoResponse> UWB_DEVICE_INFO_RESPONSE_MAP =
716 .thenAnswer(new Answer<Map<String, UwbDeviceInfoResponse>>() { in testEnableWhenInitializeDelayed()
717 public Map<String, UwbDeviceInfoResponse> answer(InvocationOnMock invocation) in testEnableWhenInitializeDelayed()
DUwbSessionManagerTest.java116 import com.android.server.uwb.data.UwbDeviceInfoResponse;
220 private static final UwbDeviceInfoResponse UWB_DEVICE_INFO_RESPONSE_1_1 =
221 new UwbDeviceInfoResponse(
228 private static final UwbDeviceInfoResponse UWB_DEVICE_INFO_RESPONSE_2_0 =
229 new UwbDeviceInfoResponse(
1899 String protocolName, UwbSession uwbSession, UwbDeviceInfoResponse uwbDeviceInfoResponse, in do_openRanging_success_absoluteInitiationTimeIsNotComputed()