Home
last modified time | relevance | path

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

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/asn1/
DAsn1DecoderTest.java28 import com.android.internal.telephony.uicc.asn1.Asn1Decoder;
41 Asn1Decoder decoder = new Asn1Decoder(hex); in testNormalOperation()
72 Asn1Decoder decoder = new Asn1Decoder(hex); in testHighTagNumberForm()
90 Asn1Decoder decoder = new Asn1Decoder(hex); in testNodeList()
127 Asn1Decoder decoder = new Asn1Decoder(hex); in testMissingData()
156 Asn1Decoder decoder = new Asn1Decoder(hex); in testEmptyData()
191 Asn1Decoder decoder = new Asn1Decoder(hex); in testLongFormLength()
208 new Asn1Decoder("").nextNode(); in testDecodeEmptyByteArray()
214 new Asn1Decoder(new byte[] {1, 2}, 0, 3); in testDecodeIndexOutOfBounds()
221 new Asn1Decoder("BF37").nextNode(); in testIncompleteLength()
[all …]
DAsn1NodeTest.java28 import com.android.internal.telephony.uicc.asn1.Asn1Decoder;
186 Asn1Node node = new Asn1Decoder(nodeHex).nextNode(); in testWriteToBytes()
/frameworks/base/telephony/java/com/android/internal/telephony/uicc/asn1/
DAsn1Decoder.java26 public final class Asn1Decoder { class
35 public Asn1Decoder(String hex) { in Asn1Decoder() method in Asn1Decoder
40 public Asn1Decoder(byte[] src) { in Asn1Decoder() method in Asn1Decoder
50 public Asn1Decoder(byte[] bytes, int offset, int length) { in Asn1Decoder() method in Asn1Decoder
DAsn1Node.java89 Asn1Decoder subDecoder = new Asn1Decoder(encodedBytes, 0, encodedBytes.length); in addChildren()
374 Asn1Decoder subDecoder = new Asn1Decoder(mDataBytes, mDataOffset, mDataLength); in getChildren()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/
DEuiccSpecVersion.java21 import com.android.internal.telephony.uicc.asn1.Asn1Decoder;
49 Asn1Decoder decoder = new Asn1Decoder(response); in fromOpenChannelResponse()
DEuiccCard.java44 import com.android.internal.telephony.uicc.asn1.Asn1Decoder;
240 List<Asn1Node> profileNodes = new Asn1Decoder(response).nextNode() in getAllProfiles()
284 List<Asn1Node> profileNodes = new Asn1Decoder(response).nextNode() in getProfile()
684 .addChild(new Asn1Decoder(serverSigned1).nextNode()) in authenticateServer()
685 .addChild(new Asn1Decoder(serverSignature1).nextNode()) in authenticateServer()
686 .addChild(new Asn1Decoder(euiccCiPkIdToBeUsed).nextNode()) in authenticateServer()
687 .addChild(new Asn1Decoder(serverCertificate).nextNode()) in authenticateServer()
720 .addChild(new Asn1Decoder(smdpSigned2).nextNode()) in prepareDownload()
721 .addChild(new Asn1Decoder(smdpSignature2).nextNode()); in prepareDownload()
726 builder.addChild(new Asn1Decoder(smdpCertificate).nextNode()) in prepareDownload()
[all …]