HomeSort by relevance Sort by last modified time
    Searched defs:accessPoint (Results 1 - 15 of 15) sorted by null

  /packages/apps/Car/Settings/src/com/android/car/settings/wifi/
AccessPointListAdapter.java 36 import com.android.settingslib.wifi.AccessPoint;
41 * Renders {@link AccessPoint} to a view to be displayed as a row in a list.
62 private List<AccessPoint> mAccessPoints;
67 @NonNull List<AccessPoint> accesssPoints,
97 public void updateAccessPoints(@NonNull List<AccessPoint> accesssPoints) {
122 private final AccessPoint mAccessPoint;
124 public AccessPointClickListener(AccessPoint accessPoint) {
125 mAccessPoint = accessPoint;
131 if (mAccessPoint.getSecurity() == AccessPoint.SECURITY_NONE &
    [all...]
CarWifiManager.java 24 import com.android.settingslib.wifi.AccessPoint;
105 public List<AccessPoint> getAllAccessPoints() {
112 public List<AccessPoint> getSavedAccessPoints() {
116 private List<AccessPoint> getAccessPoints(boolean saved) {
117 List<AccessPoint> accessPoints = new ArrayList<AccessPoint>();
119 for (AccessPoint accessPoint : mWifiTracker.getAccessPoints()) {
121 if (shouldIncludeAp(accessPoint, saved)) {
122 accessPoints.add(accessPoint);
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/
SavedAccessPointsWifiSettingsTest.java 31 import com.android.settingslib.wifi.AccessPoint;
52 private AccessPoint mockAccessPoint;
71 final AccessPoint accessPoint = mock(AccessPoint.class);
72 when(accessPoint.isPasspointConfig()).thenReturn(true);
73 ReflectionHelpers.setField(mSettings, "mSelectedAccessPoint", accessPoint);
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiDialogActivity.java 31 import com.android.settingslib.wifi.AccessPoint;
64 AccessPoint accessPoint = null;
66 accessPoint = new AccessPoint(this, accessPointState);
70 this, this, accessPoint, WifiConfigUiBase.MODE_CONNECT);
84 final AccessPoint accessPoint = dialog.getController().getAccessPoint();
85 if (accessPoint != null) {
86 if (!accessPoint.isSaved())
    [all...]
WifiSettings.java 68 import com.android.settingslib.wifi.AccessPoint;
69 import com.android.settingslib.wifi.AccessPoint.AccessPointListener;
138 private AccessPoint mSelectedAccessPoint;
158 private AccessPoint mDlgAccessPoint;
475 mSelectedAccessPoint.getSecurity() != AccessPoint.SECURITY_NONE) {
493 } else if (mSelectedAccessPoint.getSecurity() == AccessPoint.SECURITY_NONE) {
539 if (mSelectedAccessPoint.getSecurity() == AccessPoint.SECURITY_NONE) {
561 private void showDialog(AccessPoint accessPoint, int dialogMode) {
562 if (accessPoint != null)
    [all...]
  /packages/apps/Car/Settings/src/com/android/car/settings/quicksettings/
WifiTile.java 31 import com.android.settingslib.wifi.AccessPoint;
136 AccessPoint accessPoint = mCarWifiManager.getConnectedAccessPoint();
137 if (accessPoint != null) {
138 mText = accessPoint.getConfigName();
  /packages/apps/Settings/tests/unit/src/com/android/settings/wifi/
WifiSettingsUiTest.java 55 import com.android.settingslib.wifi.AccessPoint;
140 AccessPoint accessPoint = new AccessPoint(mContext, config);
141 accessPoint.update(config, wifiInfo, networkInfo);
143 assertThat(accessPoint.getSsidStr()).isEqualTo(TEST_UNQUOTED_SSID);
144 assertThat(accessPoint.getBssid()).isEqualTo(TEST_BSSID);
145 assertThat(accessPoint.getNetworkInfo()).isNotNull();
146 assertThat(accessPoint.isActive()).isTrue();
147 assertThat(accessPoint.getSettingsSummary()).isEqualTo
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
NetworkFragment.java 31 import com.android.settingslib.wifi.AccessPoint;
45 AccessPoint.AccessPointListener {
240 final Collection<AccessPoint> accessPoints = mConnectivityListener.getAvailableNetworks();
242 for (final AccessPoint accessPoint : accessPoints) {
243 accessPoint.setListener(this);
244 AccessPointPreference pref = (AccessPointPreference) accessPoint.getTag();
246 pref = new AccessPointPreference(accessPoint, themedContext, mUserBadgeCache,
248 accessPoint.setTag(pref);
252 if (accessPoint.isActive())
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
WifiUtils.java 32 public static String buildLoggingSummary(AccessPoint accessPoint, WifiConfiguration config) {
34 final WifiInfo info = accessPoint.getInfo();
37 if (accessPoint.isActive() && info != null) {
40 summary.append(" " + getVisibilityStatus(accessPoint));
83 static String getVisibilityStatus(AccessPoint accessPoint) {
84 final WifiInfo info = accessPoint.getInfo();
90 if (accessPoint.isActive() && info != null) {
98 if (accessPoint.getSpeed() != AccessPoint.Speed.NONE)
    [all...]
WifiTracker.java 78 * {@link AccessPoint#mScoredNetworkCache} to be used for speed label generation.
128 private final List<AccessPoint> mInternalAccessPoints = new ArrayList<>();
399 public List<AccessPoint> getAccessPoints() {
429 for (AccessPoint accessPoint : getAccessPoints()) {
430 pw.println(" " + accessPoint);
458 String apKey = AccessPoint.getKey(result);
525 configsByKey.put(AccessPoint.getKey(config), config);
540 List<AccessPoint> cachedAccessPoints;
543 ArrayList<AccessPoint> accessPoints = new ArrayList<>()
    [all...]
  /external/robolectric/v3/runtime/
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
android-all-6.0.0_r1-robolectric-0.jar 

Completed in 359 milliseconds