Searched refs:ssidBytes (Results 1 – 3 of 3) sorted by relevance
164 byte[] ssidBytes = octets.toByteArray(); in toString()168 if (octets.size() <= 0 || isArrayAllZeroes(ssidBytes)) return ""; in toString()176 CoderResult result = decoder.decode(ByteBuffer.wrap(ssidBytes), out, true); in toString()184 private boolean isArrayAllZeroes(byte[] ssidBytes) { in isArrayAllZeroes() argument185 for (int i = 0; i< ssidBytes.length; i++) { in isArrayAllZeroes()186 if (ssidBytes[i] != 0) return false; in isArrayAllZeroes()
106 byte[] ssidBytes = getTestSsidIEBytes(); in parseInformationElements_withSingleElement()109 InformationElementUtil.parseInformationElements(ssidBytes); in parseInformationElements_withSingleElement()
189 JNIObject<jbyteArray> ssidBytes = helper.newByteArray(len); in setSSIDField() local190 helper.setByteArrayRegion(ssidBytes, 0, len, (jbyte *) rawSsid); in setSSIDField()192 "setSsid", "([BLandroid/net/wifi/ScanResult;)Z", ssidBytes.get(), scanResult); in setSSIDField()