Home
last modified time | relevance | path

Searched refs:RFRAME_CONFIG (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Uwb/service/java/com/android/server/uwb/secure/csml/
DConfigurationParams.java56 public static final int RFRAME_CONFIG = 0x8C; field in ConfigurationParams
214 mRframeConfig.ifPresent(integer -> configParamsBuilder.putByte(RFRAME_CONFIG, in toBytes()
380 if (isPresent(configParamsTlv, RFRAME_CONFIG)) { in fromBytes()
381 configParamsBuilder.setRframeConfig(configParamsTlv.getByte(RFRAME_CONFIG).intValue()); in fromBytes()
DUwbCapability.java102 public static final int RFRAME_CONFIG = 0x8C; field in UwbCapability
299 uwbCapabilityBuilder.putByte(RFRAME_CONFIG, rFrameConfig); in toBytes()
739 if (isPresent(uwbCapabilityTlv, RFRAME_CONFIG)) { in fromBytes()
742 byte rFrameConfigRaw = uwbCapabilityTlv.getByte(RFRAME_CONFIG); in fromBytes()
/packages/modules/Uwb/service/java/com/android/server/uwb/config/
DConfigParam.java71 public static final int RFRAME_CONFIG = 0x12; field in ConfigParam
/packages/modules/Uwb/service/java/com/android/server/uwb/params/
DFiraEncoder.java98 .putByte(ConfigParam.RFRAME_CONFIG, (byte) params.getRframeConfig()) in getTlvBufferFromFiraOpenSessionParams()