Home
last modified time | relevance | path

Searched refs:mMaxMacVersionSupported (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Uwb/service/support_lib/src/com/google/uwb/support/fira/
DFiraSpecificationParams.java46 private final FiraProtocolVersion mMaxMacVersionSupported; field in FiraSpecificationParams
213 mMaxMacVersionSupported = maxMacVersionSupported; in FiraSpecificationParams()
269 return mMaxMacVersionSupported; in getMaxMacVersionSupported()
428 bundle.putString(KEY_MAX_MAC_VERSION, mMaxMacVersionSupported.toString()); in toBundle()
606 private FiraProtocolVersion mMaxMacVersionSupported = new FiraProtocolVersion(1, 1); field in FiraSpecificationParams.Builder
735 mMaxMacVersionSupported = version; in setMaxMacVersionSupported()
954 mMaxMacVersionSupported = params.mMaxMacVersionSupported; in Builder()
996 mMaxMacVersionSupported, in build()
/packages/modules/Uwb/service/java/com/android/server/uwb/secure/csml/
DUwbCapability.java115 public final FiraProtocolVersion mMaxMacVersionSupported; field in UwbCapability
156 mMaxMacVersionSupported = maxMacVersionSupported; in UwbCapability()
190 (byte) mMaxMacVersionSupported.getMajor(), in toBytes()
191 (byte) mMaxMacVersionSupported.getMinor(), in toBytes()
420 if (mMinMacVersionSupported.getMajor() > remoteCap.mMaxMacVersionSupported.getMajor() in isCompatibleTo()
421 || mMaxMacVersionSupported.getMajor() in isCompatibleTo()
424 } else if (mMinMacVersionSupported.getMinor() > remoteCap.mMaxMacVersionSupported.getMinor() in isCompatibleTo()
425 || mMaxMacVersionSupported.getMinor() in isCompatibleTo()
805 private FiraProtocolVersion mMaxMacVersionSupported = new FiraProtocolVersion(1, 1); field in UwbCapability.Builder
848 mMaxMacVersionSupported = maxMacVersionSupported; in setMaxMacVersionSupported()
[all …]
/packages/modules/Uwb/service/tests/src/com/android/server/uwb/secure/csml/
DControleeInfoTest.java113 assertEquals(uwbCapability1.mMaxMacVersionSupported, maxMacVersionSupported); in testConversion()