HomeSort by relevance Sort by last modified time
    Searched full:rssi (Results 1 - 25 of 303) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
NeighboringCellInfoTest.java 31 int rssi = 31; local
34 nc = new NeighboringCellInfo(rssi, "FFFFFFF", NETWORK_TYPE_EDGE);
36 assertEquals(rssi, nc.getRssi());
41 nc = new NeighboringCellInfo(rssi, "1FF", NETWORK_TYPE_UMTS);
43 assertEquals(rssi, nc.getRssi());
48 nc = new NeighboringCellInfo(rssi, "1FF", NETWORK_TYPE_UNKNOWN);
50 assertEquals(rssi, nc.getRssi());
58 int rssi = 20; local
60 NeighboringCellInfo nc = new NeighboringCellInfo(rssi, "12345678", NETWORK_TYPE_GPRS);
62 assertEquals(rssi, nc.getRssi())
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
RssiPacketCountInfo.java 23 * Bundle of RSSI and packet count information, for WiFi watchdog
31 public int rssi; field in class:RssiPacketCountInfo
40 rssi = txgood = txbad = rxgood = 0;
44 rssi = in.readInt();
52 out.writeInt(rssi);
WifiInfo.java 330 * @return the RSSI.
337 public void setRssi(int rssi) {
338 if (rssi < INVALID_RSSI)
339 rssi = INVALID_RSSI;
340 if (rssi > MAX_RSSI)
341 rssi = MAX_RSSI;
342 mRssi = rssi;
514 append(", RSSI: ").append(mRssi).
  /frameworks/base/core/java/android/net/
RssiCurve.java 27 * A curve defining the network score over a range of RSSI values.
29 * <p>For each RSSI bucket, the score may be any byte. Scores have no absolute meaning and are only
38 * <p>A network can be assigned a fixed score independent of RSSI by setting
40 * should be set to the lowest RSSI value at which this fixed score should apply, and
42 * highest RSSI value at which this fixed score should apply.
44 * <p>Note that RSSI values below -110 dBm or above 30 dBm are unlikely to cause any difference
59 /** The width of each RSSI bucket, in dBm. */
62 /** The score for each RSSI bucket. */
69 * @param bucketWidth the width of each RSSI bucket, in dBm.
70 * @param rssiBuckets the score for each RSSI bucket
    [all...]
WifiLinkQualityInfo.java 33 /* Rssi found by scans */
106 * returns RSSI of the network in raw form
107 * @return un-normalized RSSI or {@link android.net.LinkQualityInfo#UNKNOWN_INT}
116 public void setRssi(int rssi) {
117 mRssi = rssi;
ScoredNetwork.java 37 * The {@link RssiCurve} representing the scores for this network based on the RSSI.
50 * RSSI. This field is optional, and may be skipped to represent a network which the scorer
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiWatchdogStateMachine.java 57 * When WiFi is connected, the WiFi watchdog keeps sampling the RSSI and the
58 * instant packet loss, and record it as per-AP loss-to-rssi statistics. When
62 * While WiFi is being avoided, the WiFi watchdog keep watching the RSSI to
63 * bring the WiFi connection back. Once the RSSI is high enough to achieve a
73 * done when screen is turned on and the RSSI is in a certain range.
102 * RSSI levels as used by notification icon
103 * Level 4 -55 <= RSSI
104 * Level 3 -66 <= RSSI < -55
105 * Level 2 -77 <= RSSI < -67
106 * Level 1 -88 <= RSSI < -7
653 int rssi = info.rssi; local
800 int rssi = info.rssi; local
    [all...]
WifiAutoJoinController.java 174 // If there was a previous cache result for this BSSID, average the RSSI values
200 logDbg(result.SSID + " " + result.BSSID + " rssi="
209 logDbg(result.SSID + " " + result.BSSID + " rssi="
358 // above RSSI/scorer based selection of linked configuration (+/- 50)
371 // above RSSI/scorer based selection of linked configuration (+/- 50)
458 // Compare RSSI values so as to evaluate the strength of the user preference
472 // Selected configuration is about same or has a slightly better RSSI
474 // RSSI comparison triggered by autoJoin will override the choice
579 * Boost RSSI value of 5GHz bands iff the base value is better than threshold
582 * Note that 2.4GHz doesn't need a boost since at equal power the RSSI is typicall
    [all...]
  /hardware/libhardware_legacy/include/hardware_legacy/
gscan.h 31 int max_rssi_sample_size; // number of RSSI samples used for averaging RSSI
37 int max_bssid_history_entries; // number of BSSID/RSSI entries that device can hold
62 wifi_rssi rssi; // in db member in struct:__anon40546
116 // BSSID/RSSI history buffer (keep the highest RSSI APs)
165 int num_rssi; // number of rssi samples
166 wifi_rssi rssi[]; // RSSI history in db member in struct:__anon40554
175 int rssi_sample_size; // number of samples for averaging RSSI
    [all...]
rtt.h 52 wifi_rssi rssi; // rssi in 0.5 dB steps e.g. 143 implies -71.5 dB member in struct:__anon40578
53 wifi_rssi rssi_spread; // rssi spread in 0.5 dB steps e.g. 5 implies 2.5 dB spread (optional)
  /frameworks/base/telephony/java/android/telephony/
NeighboringCellInfo.java 47 * In GSM, mRssi is the Received RSSI;
71 * Empty constructor. Initializes the RSSI and CID.
89 * Initialize the object from rssi and cid.
98 public NeighboringCellInfo(int rssi, int cid) {
99 mRssi = rssi;
104 * Initialize the object from rssi, location string, and radioType
113 public NeighboringCellInfo(int rssi, String location, int radioType) {
115 mRssi = rssi;
251 * @deprecated initial rssi value passed as parameter to constructor
255 public void setRssi(int rssi) {
    [all...]
  /frameworks/base/packages/SystemUI/res/values-mcc262-mnc07/
config.xml 23 <!-- Whether or not the RSSI tile is capitalized or not. -->
  /frameworks/base/packages/SystemUI/res/values-mcc262-mnc08/
config.xml 23 <!-- Whether or not the RSSI tile is capitalized or not. -->
  /frameworks/base/packages/SystemUI/res/values-mcc262-mnc11/
config.xml 23 <!-- Whether or not the RSSI tile is capitalized or not. -->
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/le/
ScanResultTest.java 43 int rssi = -10; local
46 ScanResult result = new ScanResult(device, ScanRecord.parseFromBytes(scanRecord), rssi,
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattCallback.java 130 * Callback reporting the RSSI for a remote device connection.
136 * @param rssi The RSSI value for the remote device
137 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the RSSI was read successfully
139 public void onReadRemoteRssi(BluetoothGatt gatt, int rssi, int status) {
  /frameworks/base/core/java/android/bluetooth/le/
ScanResult.java 48 * @param rssi Received signal strength.
51 public ScanResult(BluetoothDevice device, ScanRecord scanRecord, int rssi,
55 mRssi = rssi;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleReadRssiActivity.java 72 int rssi = intent.getIntExtra(BleClientService.EXTRA_RSSI_VALUE, 128);
73 ((TextView) findViewById(R.id.ble_rssi_text)).setText(Integer.toString(rssi));
  /device/lge/mako/
WCNSS_qcom_cfg.ini 47 # Enable Firmware RSSI monitoring for roaming
128 #Check if the AP to which we are roaming is better than current AP in terms of RSSI.
130 #the RSSI of the new/roamable AP should be for roaming
133 #Configure the RSSI gap that will be used to partition/categorize width of
  /external/chromium_org/chrome/browser/extensions/api/bluetooth/
bluetooth_api_utils.cc 115 int rssi = device.GetRSSI(); local
116 if (rssi != BluetoothDevice::kUnknownPower)
117 out->rssi.reset(new int(rssi));
  /external/chromium_org/chrome/common/extensions/api/
bluetooth.idl 68 // Indicates the RSSI ("received signal strength indication") of the
70 // If the device is currently connected, then measures the RSSI of the
71 // connection signal. Otherwise, measures the RSSI of the last inquiry sent
73 [nodoc] long? rssi;
  /external/chromium_org/device/bluetooth/
bluetooth_device_mac.mm 112 int rssi = [device_ rawRSSI];
114 // The API guarantees that +127 is returned in case the RSSI is not readable:
116 if (rssi == 127)
119 return rssi;
  /device/asus/flo/
WCNSS_qcom_cfg.ini 47 # Enable Firmware RSSI monitoring for roaming
128 #Check if the AP to which we are roaming is better than current AP in terms of RSSI.
130 #the RSSI of the new/roamable AP should be for roaming
133 #Configure the RSSI gap that will be used to partition/categorize width of
  /external/chromium_org/content/browser/geolocation/
wifi_data_provider_common_win.cc 20 access_point_data->radio_signal_strength = data.Rssi;

Completed in 886 milliseconds

1 2 3 4 5 6 7 8 91011>>