/frameworks/native/libs/gralloc/types/fuzzer/ |
D | util.cpp | 24 std::string hexString(const void* bytes, size_t len) { in hexString() function 39 std::string hexString(const std::vector<uint8_t>& bytes) { in hexString() function 40 return hexString(bytes.data(), bytes.size()); in hexString()
|
D | util.h | 52 std::string hexString(const void* bytes, size_t len); 53 std::string hexString(const std::vector<uint8_t>& bytes);
|
D | main.cpp | 118 FUZZ_LOG() << "input: " << hexString(input); in LLVMFuzzerTestOneInput()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/ |
D | UiccCarrierPrivilegeRulesTest.java | 74 private void testHelper(String hexString) { in testHelper() argument 90 IccIoResult iir = new IccIoResult(0x90, 0x00, IccUtils.hexStringToBytes(hexString)); in testHelper() 124 final String hexString = in testParseRule_Normal() local 128 testHelper(hexString); in testParseRule_Normal() 153 final String hexString = "FF4034E232E11E4F06FFFFFFFFFFFFC114B61BE34AD2C20D7AFED84" in testParseRule_With4FD0D1() local 156 testHelper(hexString); in testParseRule_With4FD0D1() 175 final String hexString = "FF4031E22FE11E4F06FFFFFFFFFFFFC114B61BE34AD2C20D7AFED8493C313A" in testParseRule_With4FD0() local 178 testHelper(hexString); in testParseRule_With4FD0() 205 final String hexString = in testParseRule_TwoMessages() local 210 testHelper(hexString); in testParseRule_TwoMessages() [all …]
|
D | IccFileHandlerTest.java | 302 String hexString = null; in loadEFLinearFixedAll_ExceptionAtReadRecord() 305 hexString = "000000454F30040000FFFF01020145"; in loadEFLinearFixedAll_ExceptionAtReadRecord() 306 iir = new IccIoResult(0x90, 0x00, IccUtils.hexStringToBytes(hexString)); in loadEFLinearFixedAll_ExceptionAtReadRecord() 339 String hexString = null; in loadEFLinearFixedAll_FullLoop() 341 hexString = "000000454F30040000FFFF01020145"; in loadEFLinearFixedAll_FullLoop() 348 hexString = in loadEFLinearFixedAll_FullLoop() 362 IccUtils.hexStringToBytes(hexString)); in loadEFLinearFixedAll_FullLoop()
|
/frameworks/libs/service_entitlement/tests/src/com/android/libraries/entitlement/utils/ |
D | BytesConverterTest.java | 37 String hexString = BytesConverter.convertBytesToHexString(integerBytes); in convertBytesToHexString_integerBytes_returnsHexString() local 39 assertThat(hexString).isEqualTo("0000007B"); in convertBytesToHexString_integerBytes_returnsHexString()
|
/frameworks/base/core/java/com/android/internal/util/ |
D | HexDump.java | 175 public static byte[] hexStringToByteArray(String hexString) in hexStringToByteArray() argument 177 int length = hexString.length(); in hexStringToByteArray() 182 … buffer[i / 2] = (byte)((toByte(hexString.charAt(i)) << 4) | toByte(hexString.charAt(i+1))); in hexStringToByteArray()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
D | IccIoResult.java | 194 public IccIoResult(int sw1, int sw2, String hexString) { in IccIoResult() argument 195 this(sw1, sw2, IccUtils.hexStringToBytes(hexString)); in IccIoResult()
|
/frameworks/base/core/tests/coretests/src/com/android/internal/util/ |
D | HexDumpTest.java | 84 String hexString = "0123456789ABCDEF72f9a3438934c378d34f32a8b932"; in testRoundTrip_fromString() local 85 for (int length = 0; length < hexString.length(); length += 2) { in testRoundTrip_fromString() 86 String original = hexString.substring(0, length); in testRoundTrip_fromString()
|
/frameworks/base/errorprone/tests/res/com/android/internal/util/ |
D | HexDump.java | 24 public static byte[] hexStringToByteArray(String hexString) { in hexStringToByteArray() argument
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
D | CatService.java | 795 String hexString = IccUtils.bytesToHexString(rawData); in sendTerminalResponse() local 797 CatLog.d(this, "TERMINAL RESPONSE: " + hexString); in sendTerminalResponse() 800 mCmdIf.sendTerminalResponse(hexString, null); in sendTerminalResponse() 893 String hexString = IccUtils.bytesToHexString(rawData); in sendMenuSelection() local 895 mCmdIf.sendEnvelope(hexString, null); in sendMenuSelection() 965 String hexString = IccUtils.bytesToHexString(rawData); in eventDownload() local 967 CatLog.d(this, "ENVELOPE COMMAND: " + hexString); in eventDownload() 969 mCmdIf.sendEnvelope(hexString, null); in eventDownload()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | InboundSmsHandler.java | 2111 protected byte[] decodeHexString(String hexString) { in decodeHexString() argument 2112 if (hexString == null || hexString.length() % 2 == 1) { in decodeHexString() 2115 byte[] bytes = new byte[hexString.length() / 2]; in decodeHexString() 2116 for (int i = 0; i < hexString.length(); i += 2) { in decodeHexString() 2117 bytes[i / 2] = hexToByte(hexString.substring(i, i + 2)); in decodeHexString() 2122 private byte hexToByte(String hexString) { in hexToByte() argument 2123 int firstDigit = toDigit(hexString.charAt(0)); in hexToByte() 2124 int secondDigit = toDigit(hexString.charAt(1)); in hexToByte()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | CarrierPrivilegesTrackerTest.java | 1135 private static String getHash(String hexString) throws Exception { in getHash() argument 1137 byte[] result = sha1.digest(IccUtils.hexStringToBytes(hexString)); in getHash()
|
/frameworks/base/core/java/android/content/res/ |
D | Resources.java | 1846 private String getResourceNameFromHexString(String hexString) { in getResourceNameFromHexString() argument 1847 return getResourceName(Integer.parseInt(hexString, 16)); in getResourceNameFromHexString()
|
/frameworks/multidex/gradle/wrapper/ |
D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/frameworks/av/media/tests/SampleVideoEncoder/gradle/wrapper/ |
D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/frameworks/base/startop/apps/ColorChanging/gradle/wrapper/ |
D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/frameworks/base/tests/TouchLatency/gradle/wrapper/ |
D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |