Home
last modified time | relevance | path

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

/packages/modules/Uwb/service/java/com/android/server/uwb/secure/csml/
DUwbCapability.java127 public final Optional<Byte> mCcConstraintLength; field in UwbCapability
168 mCcConstraintLength = ccConstraintLength; in UwbCapability()
301 if (mCcConstraintLength.isPresent()) { in toBytes()
302 uwbCapabilityBuilder.putByte(CC_CONSTRAINT_LENGTH, mCcConstraintLength.get()); in toBytes()
564 if (mCcConstraintLength.isEmpty() || remoteCcConstrainLength.isEmpty()) { in getPreferredConstrainLengthOfConvolutionalCode()
567 if ((mCcConstraintLength.get() & remoteCcConstrainLength.get() in getPreferredConstrainLengthOfConvolutionalCode()
819 private Optional<Byte> mCcConstraintLength = field in UwbCapability.Builder
919 mCcConstraintLength = Optional.of(ccConstraintLength); in setCcConstraintLength()
963 mCcConstraintLength, in build()
DConfigurationParams.java89 public final Optional<Integer> mCcConstraintLength; field in ConfigurationParams
149 mCcConstraintLength = ccConstraintLength; in ConfigurationParams()
217 mCcConstraintLength.ifPresent( in toBytes()
493 private Optional<Integer> mCcConstraintLength = field in ConfigurationParams.Builder
587 mCcConstraintLength = Optional.of(ccConstraintLength); in setCcConstraintLength()
698 mCcConstraintLength, in build()
DCsmlUtil.java260 remoteCap.mCcConstraintLength)); in generateSessionData()
/packages/modules/Uwb/service/tests/src/com/android/server/uwb/secure/csml/
DControleeInfoTest.java125 assertEquals((byte) uwbCapability1.mCcConstraintLength.get(), ccConstraintLength); in testConversion()
DSessionDataTest.java139 assertEquals((int) configParams1.mCcConstraintLength.get(), ccConstraintLength); in testConversion()
/packages/modules/Uwb/service/java/com/android/server/uwb/data/
DUwbConfig.java604 configurationParams.mCcConstraintLength.ifPresent( in fromSessionData()