Home
last modified time | relevance | path

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

/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
DTestSuiteContentReport.java280 StringBuffer hexString = new StringBuffer(); in getFileContentId() local
282 hexString.append(Integer.toHexString(0xFF & mdbytes[i])); in getFileContentId()
284 return hexString.toString(); in getFileContentId()
297 StringBuffer hexString = new StringBuffer(); in getFolderContentId() local
299 hexString.append(Integer.toHexString(0xFF & mdbytes[i])); in getFolderContentId()
301 return hexString.toString(); in getFolderContentId()
311 StringBuffer hexString = new StringBuffer(); in getId() local
313 hexString.append(Integer.toHexString(0xFF & mdbytes[i])); in getId()
315 return hexString.toString(); in getId()
/cts/tests/tests/telephony/current/src/android/telephony/cts/util/
DTelephonyUtils.java383 public static byte[] hexStringToByteArray(String hexString) { in hexStringToByteArray() argument
384 int length = hexString.length(); in hexStringToByteArray()
389 (byte) ((toByte(hexString.charAt(i)) << 4) | toByte(hexString.charAt(i + 1))); in hexStringToByteArray()
/cts/tests/tests/media/muxer/src/android/media/muxer/cts/
DNativeMuxerTest.java218 private String hexString(ByteBuffer buf) { in hexString() method in NativeMuxerTest
244 Log.i("@@@", "org " + key + ": " + hexString(bufF1)); in compareByteBufferInFormats()
245 Log.i("@@@", "rmx " + key + ": " + hexString(bufF2)); in compareByteBufferInFormats()
/cts/hostsidetests/appcompat/strictjavapackages/src/android/compat/sjp/cts/
DStrictJavaPackagesTest.java1176 StringBuilder hexString = new StringBuilder(); in calculateSHA1() local
1180 hexString.append('0'); in calculateSHA1()
1182 hexString.append(hex); in calculateSHA1()
1185 return hexString.toString(); in calculateSHA1()
/cts/tests/tests/content/src/android/content/pm/cts/
DChecksumsTest.java1543 private static byte[] hexStringToBytes(String hexString) { in hexStringToBytes() argument
1544 return HexDump.hexStringToByteArray(hexString); in hexStringToBytes()
/cts/tests/tests/util/src/android/util/cts/
DHalfTest.java133 public void hexString() { in hexString() method in HalfTest
/cts/tests/tests/telephony/current/src/android/telephony/ims/cts/
DImsServiceTest.java6687 private static byte[] hexStringToByteArray(String hexString) {
6688 int length = hexString.length();
6693 (byte) ((toByte(hexString.charAt(i)) << 4) | toByte(hexString.charAt(i + 1)));