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

/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pServiceResponse.java273 * Converts hex string to byte array.
275 * @param hex hex string. if invalid, return null.
278 private static byte[] hexStr2Bin(String hex) { argument
279 int sz = hex.length()/2;
280 byte[] b = new byte[hex.length()/2];
284 b[i] = (byte)Integer.parseInt(hex.substring(i*2, i*2+2), 16);

Completed in 148 milliseconds