Searched defs:toHexString (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/com/android/internal/util/
H A DHexDump.java36 result.append(toHexString(offset));
57 result.append(toHexString(i));
94 public static String toHexString(byte b) method in class:HexDump
96 return toHexString(toByteArray(b));
99 public static String toHexString(byte[] array) method in class:HexDump
101 return toHexString(array, 0, array.length);
104 public static String toHexString(byte[] array, int offset, int length) method in class:HexDump
119 public static String toHexString(int i) method in class:HexDump
121 return toHexString(toByteArray(i));
/frameworks/base/keystore/java/android/security/
H A DSystemKeyStore.java48 public static String toHexString(byte[] keyData) { method in class:SystemKeyStore
67 return toHexString(generateNewKey(numBits, algName, keyName));
113 return toHexString(retrieveKey(keyName));
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DUtils.java124 public static String toHexString(byte[] data) { method in class:Utils
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiServiceImpl.java2003 "' FQDN " + toHexString(config.FQDN);
2030 public static String toHexString(String s) { method in class:WifiServiceImpl

Completed in 1773 milliseconds