Searched defs:hex (Results 1 - 5 of 5) 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);
/frameworks/base/libs/common_time/
H A Dcommon_time_server.cpp629 char hex[256]; local
632 hexDumpToString(buf, static_cast<size_t>(recvBytes), hex, sizeof(hex));
636 recvBytes, srcEPStr, hex);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java855 public boolean setWfdDeviceInfo(String hex) { argument
856 return doBooleanCommand("WFD_SUBELEM_SET 0 " + hex);
1124 * P2P_SERVICE_ADD upnp <version hex> <service>
1155 * P2P_SERVICE_DEL upnp <version hex> <service>
H A DWifiStateMachine.java2235 * @return a hex string representation of the WPS-NFC configuration token
9693 throw new NumberFormatException("" + ch + " is not a valid hex digit");
9697 private byte[] parseHex(String hex) { argument
9699 if (hex == null) {
9703 if (hex.length() % 2 != 0) {
9704 throw new NumberFormatException(hex + " is not a valid hex string");
9707 byte[] result = new byte[(hex.length())/2 + 1];
9708 result[0] = (byte) ((hex.length())/2);
9709 for (int i = 0, j = 1; i < hex
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 243 milliseconds