Searched defs:hex (Results 1 - 7 of 7) 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/native/cmds/dumpstate/
H A Dutils.cpp1253 struct hex { struct
1283 if (bytes_read < (ssize_t)(EXT_CSD_REV * sizeof(struct hex))) {
1305 if (bytes_read < (ssize_t)(EXT_PRE_EOL_INFO * sizeof(struct hex))) {
1341 if (bytes_read < (ssize_t)(lifetime * sizeof(struct hex))) {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java1138 public boolean setWfdDeviceInfo(String hex) { argument
1139 return doBooleanCommand("WFD_SUBELEM_SET 0 " + hex);
1408 * P2P_SERVICE_ADD upnp <version hex> <service>
1441 * P2P_SERVICE_DEL upnp <version hex> <service>
H A DWifiStateMachine.java2086 * @return a hex string representation of the WPS-NFC configuration token
7759 throw new NumberFormatException("" + ch + " is not a valid hex digit");
7763 private byte[] parseHex(String hex) { argument
7765 if (hex == null) {
7769 if (hex.length() % 2 != 0) {
7770 throw new NumberFormatException(hex + " is not a valid hex string");
7773 byte[] result = new byte[(hex.length())/2 + 1];
7774 result[0] = (byte) ((hex.length())/2);
7775 for (int i = 0, j = 1; i < hex
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/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 3012 milliseconds