Home
last modified time | relevance | path

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

/packages/modules/Uwb/service/java/com/android/server/uwb/params/
DTlvBuffer.java84 public TlvBuffer.Builder putShortArray(int tagType, short[] sArray) { in putShortArray() argument
85 if (sArray == null) return this; in putShortArray()
86 return putShortArray(tagType, sArray.length, sArray); in putShortArray()
89 public TlvBuffer.Builder putShortArray(int tagType, int length, short[] sArray) { in putShortArray() argument
92 this.mBuffer.put(TlvUtil.getLeBytes(sArray[i])); in putShortArray()