Searched refs:mMaxMacVersionSupported (Results 1 – 3 of 3) sorted by relevance
46 private final FiraProtocolVersion mMaxMacVersionSupported; field in FiraSpecificationParams213 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.Builder735 mMaxMacVersionSupported = version; in setMaxMacVersionSupported()954 mMaxMacVersionSupported = params.mMaxMacVersionSupported; in Builder()996 mMaxMacVersionSupported, in build()
115 public final FiraProtocolVersion mMaxMacVersionSupported; field in UwbCapability156 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.Builder848 mMaxMacVersionSupported = maxMacVersionSupported; in setMaxMacVersionSupported()[all …]
113 assertEquals(uwbCapability1.mMaxMacVersionSupported, maxMacVersionSupported); in testConversion()