HomeSort by relevance Sort by last modified time
    Searched refs:RSSI (Results 1 - 14 of 14) sorted by null

  /cts/tests/tests/bluetooth/src/android/bluetooth/cts/
ScanResultTest.java 37 private static final int RSSI = -10;
50 ScanResult result = new ScanResult(device, TestUtils.parseScanRecord(SCAN_RECORD), RSSI,
58 assertEquals(RSSI, resultFromParcel.getRssi());
71 ScanResult result = new ScanResult(device, TestUtils.parseScanRecord(SCAN_RECORD), RSSI,
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
ConnectivityConstants.java 75 public static final String RSSI = "rssi";
ConnectivityEvents.java 126 long createTimestamp, int rssi) {
128 mRssi = rssi;
136 json.put(ConnectivityConstants.NetworkCallbackContainer.RSSI, mRssi);
  /cts/tests/tests/telephony/src/android/telephony/cts/
NeighboringCellInfoTest.java 30 private static final int RSSI = 20;
34 int rssi = 31; local
39 nc = new NeighboringCellInfo(rssi, "FFFFFFF", NETWORK_TYPE_EDGE);
41 assertEquals(rssi, nc.getRssi());
46 nc = new NeighboringCellInfo(rssi, "1FF", NETWORK_TYPE_UMTS);
48 assertEquals(rssi, nc.getRssi());
53 nc = new NeighboringCellInfo(rssi, "1FF", NETWORK_TYPE_UNKNOWN);
55 assertEquals(rssi, nc.getRssi());
61 nc = new NeighboringCellInfo(rssi, "12345678", NETWORK_TYPE_GPRS);
63 assertEquals(rssi, nc.getRssi())
    [all...]
  /tools/test/connectivity/acts/tests/google/power/
PowertrafficTest.py 74 """Test function for iperf power measurement at different RSSI level.
98 self.log.info('Set attenuation to desired RSSI level')
108 RSSI = wputils.get_wifi_rssi(self.dut)
123 RSSI, (iperf_result.avg_receive_rate * 8))
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
BluetoothIo.h 63 /// Bluetooth RSSI. See Bluetooth specification for detail.
65 UINT8 RSSI;
WiFi.h 470 /// Specifies the RSSI of the received frame.
472 UINT8 RSSI;
    [all...]
  /external/libchrome/base/mac/
sdk_forward_declarations.h 193 RSSI:(NSNumber*)RSSI;
  /tools/test/connectivity/acts/framework/acts/test_utils/tel/
tel_defines.py 145 # Time to wait for rssi calibration.
146 # This is the delay between <WiFi Connected> and <Turn on Screen to get RSSI>.
148 # This is the delay between <Turn on Screen> and <Call API to get WiFi RSSI>.
193 # WiFI RSSI is -127 if WiFi is not connected
203 # cellular weak RSSI value
205 # cellular strong RSSI value
207 # WiFi weak RSSI value
674 RSSI = "rssi"
  /tools/test/connectivity/acts/framework/acts/test_utils/wifi/
wifi_power_test_utils.py 432 """Get the RSSI of the device.
437 RSSI: the rssi level of the device
439 RSSI = ad.droid.wifiGetConnectionInfo()['rssi']
440 return RSSI
  /packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/details/
WifiDetailPreferenceControllerTest.java 99 private static final int RSSI = -55;
221 when(mockWifiInfo.getRssi()).thenReturn(RSSI);
  /external/wpa_supplicant_8/src/utils/
common.c 1206 * rssi_to_rcpi - Convert RSSI to RCPI
1207 * @rssi: RSSI to convert
1208 * Returns: RCPI corresponding to the given RSSI value, or 255 if not available.
1210 * It's possible to estimate RCPI based on RSSI in dBm. This calculation will
1214 u8 rssi_to_rcpi(int rssi)
1216 if (!rssi)
1218 if (rssi < -110)
1220 if (rssi > 0)
1222 return (rssi + 110) * 2
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
wlioctl.h 131 int16 RSSI; /* receive signal strength (in dBm) */
164 int16 RSSI; /* receive signal strength (in dBm) */
206 int16 RSSI; /* receive signal strength (in dBm) */
230 #define WL_BSS_FLAGS_RSSI_ONCHANNEL 0x04 /* rssi info was received on channel (vs offchannel) */
1194 int rssi[LQ_IDX_LAST]; \/* Array to keep min, max, avg rssi *\/ member in struct:__anon41916
3676 uint32 rssi; \/* RSSI of the link *\/ member in struct:dpt_status
4241 int32 rssi; \/* RSSI *\/ member in struct:wl_pkteng_stats
5432 int rssi; member in struct:txdelay_event
5454 int16 rssi; member in struct:wl_relmcast_client
    [all...]
  /tools/test/connectivity/acts/tests/google/tel/lab/
TelLabNeighborCellTest.py 120 # TARGET_RSSI: This is expected RSSI.
122 # MAX_ERROR_RSSI: This is max error between 'each sample of reported RSSI'
123 # and 'expected RSSI'
126 # 'average value of reported RSSI' and 'expected RSSI'
143 # Keys for calculate average RSSI. Only used in _verify_cell_info
144 RSSI = 'rssi'
360 """Return the RSSI value reported in cell_info.
363 cell_info: cell info to get RSSI
    [all...]

Completed in 503 milliseconds