Home
last modified time | relevance | path

Searched refs:hexString (Results 1 – 6 of 6) 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.java381 public static byte[] hexStringToByteArray(String hexString) { in hexStringToByteArray() argument
382 int length = hexString.length(); in hexStringToByteArray()
387 (byte) ((toByte(hexString.charAt(i)) << 4) | toByte(hexString.charAt(i + 1))); in hexStringToByteArray()
/cts/tests/tests/media/muxer/src/android/media/muxer/cts/
DNativeMuxerTest.java219 private String hexString(ByteBuffer buf) { in hexString() method in NativeMuxerTest
245 Log.i("@@@", "org " + key + ": " + hexString(bufF1)); in compareByteBufferInFormats()
246 Log.i("@@@", "rmx " + key + ": " + hexString(bufF2)); in compareByteBufferInFormats()
/cts/tests/tests/content/src/android/content/pm/cts/
DChecksumsTest.java1654 private static byte[] hexStringToBytes(String hexString) { in hexStringToBytes() argument
1655 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.java6685 private static byte[] hexStringToByteArray(String hexString) {
6686 int length = hexString.length();
6691 (byte) ((toByte(hexString.charAt(i)) << 4) | toByte(hexString.charAt(i + 1)));