- 19 Jun, 2016 1 commit
-
-
The Android Automerger authored
-
- 16 Jun, 2016 1 commit
-
-
Bartosz Fabianowski authored
System UI acts on behalf of the current foreground user and should thus be allowed to connect to WiFi networks, even if it actually runs as user 0. BUG=28799309 Change-Id: I50c3bdf30c9a1fd7780b47cac3f8ff3d0fb34f36
-
- 15 Jun, 2016 2 commits
-
-
The Android Automerger authored
-
Paul Stewart authored
-
- 14 Jun, 2016 3 commits
-
-
Wei Wang authored
-
Wei Wang authored
Bug:29360310 Change-Id: I00f83d9413d4673c3419b8dd6444db1efbf8ff1b
-
The Android Automerger authored
-
- 13 Jun, 2016 1 commit
-
-
Glen Kuhne authored
-
- 10 Jun, 2016 3 commits
-
-
Mitchell Wills authored
Change-Id: Ia212840fcf781740d5e185d3e3c2e30a477e25f0 Fixes: 29250616
-
Mitchell Wills authored
The SignificantChange state machine doesn't actually have a concept of if Wifi is on or not. This will simply ensure that it is not possible to cause a crash. Change-Id: I8ff87364bf7d5c87f0519b6cdc32d164facf30eb Fixes: 29237535
-
Mitchell Wills authored
Change-Id: Ia212840fcf781740d5e185d3e3c2e30a477e25f0 Fixes: 29250616
-
- 09 Jun, 2016 3 commits
-
-
Glen Kuhne authored
Adds a wifi metric that records the capture duration period represented by the WifiLog proto. This is to improve the way wifiLogs are weighted when aggregated. Modified WifiMetrics to use the Clock wrapper of SystemClock to facilitate unit tests. BUG=29185886 Change-Id: I61dd2b481c26f0ea21bcb280ce1d40f3d73b7625
-
Mitchell Wills authored
The SignificantChange state machine doesn't actually have a concept of if Wifi is on or not. This will simply ensure that it is not possible to cause a crash. Change-Id: I8ff87364bf7d5c87f0519b6cdc32d164facf30eb Fixes: 29237535
-
The Android Automerger authored
-
- 08 Jun, 2016 7 commits
-
-
mukesh agrawal authored
When the WiFi code is sufficiently mature, we'll use this patch to return to using small ring buffers on all builds. Note that this patch is not a literal/full revert of CL:1048267. The reason for the more focused change is to minimize merge conflicts, in case other code changes by the time this CL lands. BUG=28822174 TEST=unit tests Change-Id: I9facadf8aaf779e0627b15815a426b86bde692a1
-
Paul Stewart authored
Change-Id: Ifb500e3f745b5e2493ffa016a06f23120e80910a
-
Paul Stewart authored
am: 96cc4860 Change-Id: Iae9d523d364079407f500d00f96db951c3d7f994
-
Paul Stewart authored
am: e1809380 Change-Id: I15921c5f5903d66052cb48d851913672077a190c
-
Paul Stewart authored
am: e3c37daf Change-Id: Ic33a155d3f19e39279a7d8b47ee63da217539c47
-
Paul Stewart authored
-
The Android Automerger authored
-
- 07 Jun, 2016 12 commits
-
-
Paul Stewart authored
am: 04fdb2ce Change-Id: I4232ea7bec8566cd35aee630863c432373fbcb1f
-
Paul Stewart authored
am: 0f37e416 Change-Id: I4794005c53ae7d99627de25722c846c2a45b856c
-
Paul Stewart authored
am: 444e06c4 Change-Id: Ied4ebd36b8e373b830d61869723caa3e8eeb32c3
-
Paul Stewart authored
am: 49fefde1 Change-Id: I595d98088be7d1bced40d34160bd114c9617d97d
-
Paul Stewart authored
am: 1921acbf Change-Id: I5ffb8a5518678e3dfdd930acdd57c1aa5ab21650
-
TreeHugger Robot authored
-
Randy Pan authored
Today the association to an AP can be rejected because of either the rejection from the AP or the STA host driver time-out. The WiFi framework receives the same ASSOC_REJECT messages for both scenarios. Cut down the blacklist time value to 5 mins for now. When we can differentiate these two types of rejections, the blacklist time for the real AP rejection can go back to 30 minutes. Bug: 28899826 Change-Id: I785e13140bfdfbefbae17320c247ae1c8134fa92
-
Ningyuan Wang authored
-
The Android Automerger authored
- 06 Jun, 2016 3 commits
-
-
Roshan Pius authored
Modify |CMD_GET_LINK_LAYER_STATS| handling to return a null object when the stats cannot be retrieved from wifi HAL. We've added a feature check in |WifiServiceImpl.reportActivityInfo| method to check if the device supports link layer stats reporting or not. So, there is no need to fake an empty object if the retrieval fails. BUG:29117407 Change-Id: Iaf8e060912611773398210785ebfaae7371db77c
-
Paul Stewart authored
-
Ningyuan Wang authored
Some devices rely on Setup Wizard to set a persistent country code. This CL honors the persistent option, fixing corresponding 5GHz AP problem. This also includes addtional unit tests for this change. BUG=28127280 TEST=compile TEST=runtest frameworks-wifi Change-Id: I2f36216e143d0ac4959f26a9965def061a06aabf
-
- 05 Jun, 2016 1 commit
-
-
The Android Automerger authored
-
- 04 Jun, 2016 1 commit
-
-
Lorenzo Colitti authored
-
- 03 Jun, 2016 2 commits
-
-
Randy Pan authored
Allow immediate single scan for scenarios such as user allows untrusted networks, user forces a connectivity scan, and etc. The minimum scan interval is enforced only for the screen state change and connection state change cases. Also removed the scan started by WCM for user selected network. We connect to the user selected network by directly invoking the wpa_supplicant select_network. Now WCM always sets the 'forceSelectNetwork' parameter to false when calling into WifiQualifiedNetworkSelector.selectQualifiedNetwork(). So deleted the unused variable mForceSelectNetwork. Bug: 29103349 Change-Id: I1dd77af0cf7de85a96afac63de1344daab192968
-
John Eckerdal authored
This will fix an NPE whenever no scansettings are available. The stop of the recurring alarm should not introduce a permanent stop though since the whole processPendingScans function is dependant on mPendingBackgroundScanSettings != null. Anyway, as soon as mPendingBackgroundScanSettings is changed, the processPendingScans function will be called, either directly or indirectly through handleScanPeriod(). Crash call stack: java.lang.NullPointerException: Attempt to read from field 'int com.android.server.wifi.WifiNative$ScanSettings.base_period_ms' on a null object reference at com.android.server.wifi.scanner.SupplicantWifiScannerImpl.processPendingScans (SupplicantWifiScannerImpl.java:395) Bug: 29113658 Author: Ola Olsson <ola.olsson@sonymobile.com> Change-Id: Ibf08c9d6c5e476052449ef11d82ce005e50bd4fd
-