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

/frameworks/base/wifi/java/android/net/wifi/
H A DRttManager.java402 * Request LCI information, only available when choose double side RTT measurement
679 /** LCI information Element, only available for double side RTT. */
680 public WifiInformationElement LCI; field in class:RttManager.RttResult
726 dest.writeByte(result.LCI.id);
727 if (result.LCI.id != (byte) 0xFF) {
728 dest.writeByte((byte)result.LCI.data.length);
729 dest.writeByteArray(result.LCI.data);
776 results[i].LCI = new WifiInformationElement();
777 results[i].LCI.id = in.readByte();
778 if (results[i].LCI
[all...]
/frameworks/opt/net/wifi/service/jni/
H A Dcom_android_server_wifi_WifiNative.cpp1144 JNIObject<jobject> LCI = helper.createObject( local
1146 if (result->LCI != NULL && result->LCI->len > 0) {
1147 ALOGD("Add LCI in result");
1148 helper.setByteField(LCI, "id", result->LCI->id);
1149 JNIObject<jbyteArray> elements = helper.newByteArray(result->LCI->len);
1150 jbyte *bytes = (jbyte *)&(result->LCI->data[0]);
1151 helper.setByteArrayRegion(elements, 0, result->LCI->len, bytes);
1152 helper.setObjectField(LCI, "dat
[all...]

Completed in 64 milliseconds