Home
last modified time | relevance | path

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

/cts/tests/tests/identity/src/android/security/identity/cts/
DUtil.java136 for(DataItem dataItem : dataItems) { in canonicalizeCbor()
138 encoder.encode(dataItem); in canonicalizeCbor()
150 for (DataItem dataItem : dataItems) { in cborPrettyPrint()
154 cborPrettyPrintDataItem(sb, 0, dataItem); in cborPrettyPrint()
175 static void cborPrettyPrintDataItem(StringBuilder sb, int indent, DataItem dataItem) { in cborPrettyPrintDataItem() argument
182 if (dataItem.hasTag()) { in cborPrettyPrintDataItem()
183 sb.append(String.format("tag %d ", dataItem.getTag().getValue())); in cborPrettyPrintDataItem()
186 switch (dataItem.getMajorType()) { in cborPrettyPrintDataItem()
193 BigInteger value = ((UnsignedInteger) dataItem).getValue(); in cborPrettyPrintDataItem()
199 BigInteger value = ((NegativeInteger) dataItem).getValue(); in cborPrettyPrintDataItem()
[all …]