Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapAppParams.java217 int tagId, tagLength; in parseParams() local
222 tagLength = appParams[i++] & 0xff; // Convert to unsigned to support values above 127 in parseParams()
225 if (tagLength != MAX_LIST_COUNT_LEN) { in parseParams()
229 + tagLength in parseParams()
243 if (tagLength != START_OFFSET_LEN) { in parseParams()
247 + tagLength in parseParams()
261 if (tagLength != FILTER_MESSAGE_TYPE_LEN) { in parseParams()
265 + tagLength in parseParams()
279 if (tagLength != 0) { in parseParams()
280 setFilterPeriodBegin(new String(appParams, i, tagLength)); in parseParams()
[all …]
/packages/modules/Bluetooth/system/blueberry/tests/gd/cert/
Dlogging_client_interceptor.py67 tagLength = len(re.sub('[^\w\s]', '', self.inLogTag)) + 11
68 if tagLength < self.TAG_MIN_WIDTH:
69 self.inLogTag += " " * (self.TAG_MIN_WIDTH - tagLength)
70 self.outLogTag += " " * (self.TAG_MIN_WIDTH - tagLength)
Dasync_subprocess_logger.py81 tagLength = len(re.sub('[^\w\s]', '', loggableTag))
82 if tagLength < self.PROCESS_TAG_MIN_WIDTH:
83 loggableTag += " " * (self.PROCESS_TAG_MIN_WIDTH - tagLength)
/packages/modules/Uwb/service/java/com/android/server/uwb/config/
DConfigParam.java162 int tagLength = 1; in getTagBytes() local
164 return Arrays.copyOfRange(buffer.array(), Integer.BYTES - tagLength, Integer.BYTES); in getTagBytes()
/packages/modules/AdServices/adservices/service-core/jni/java/com/android/adservices/ohttp/algorithms/
DAeadAlgorithmSpec.java48 public abstract int tagLength(); in tagLength() method in AeadAlgorithmSpec
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/jni/java/com/android/adservices/ohttp/algorithms/
DAeadAlgorithmSpecTest.java36 Assert.assertEquals(aeadAlgorithmSpec.tagLength(), 16); in get_supportedId_returnsCorrectSpec()