Home
last modified time | relevance | path

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

/aosp14/frameworks/base/telephony/java/com/android/internal/telephony/uicc/asn1/
H A DAsn1Node.java227 byte[] tagBytes = IccUtils.unsignedIntToBytes(tag); in isConstructedTag()
561 String headHex = IccUtils.bytesToHexString(IccUtils.unsignedIntToBytes(mTag)); in getHeadAsHex()
565 byte[] lenBytes = IccUtils.unsignedIntToBytes(mDataLength); in getHeadAsHex()
575 offset += IccUtils.unsignedIntToBytes(mTag, dest, offset); in write()
581 int lenLen = IccUtils.unsignedIntToBytes(mDataLength, dest, ++offset); in write()
/aosp14/frameworks/base/telephony/java/com/android/internal/telephony/uicc/
H A DIccUtils.java783 public static byte[] unsignedIntToBytes(int value) { in unsignedIntToBytes() method in IccUtils
788 unsignedIntToBytes(value, bytes, 0); in unsignedIntToBytes()
819 public static int unsignedIntToBytes(int value, byte[] dest, int offset) { in unsignedIntToBytes() method in IccUtils