Searched refs:EXTRA_BSSID_LONG (Results 1 – 3 of 3) sorted by relevance
22 import static android.net.wifi.WifiManager.EXTRA_BSSID_LONG;135 intent.putExtra(EXTRA_BSSID_LONG, bssid); in onIconResponse()152 intent.putExtra(EXTRA_BSSID_LONG, event.getBssid()); in onWnmFrameReceived()159 intent.putExtra(EXTRA_BSSID_LONG, event.getBssid()); in onWnmFrameReceived()
22 import static android.net.wifi.WifiManager.EXTRA_BSSID_LONG;193 assertTrue(intent.getValue().getExtras().containsKey(EXTRA_BSSID_LONG)); in verifyIconIntent()194 assertEquals(bssid, intent.getValue().getExtras().getLong(EXTRA_BSSID_LONG)); in verifyIconIntent()396 assertTrue(intent.getValue().getExtras().containsKey(EXTRA_BSSID_LONG)); in onDeauthImminentReceived()397 assertEquals(BSSID, intent.getValue().getExtras().getLong(EXTRA_BSSID_LONG)); in onDeauthImminentReceived()423 assertTrue(intent.getValue().getExtras().containsKey(EXTRA_BSSID_LONG)); in onSubscriptionRemediationReceived()424 assertEquals(BSSID, intent.getValue().getExtras().getLong(EXTRA_BSSID_LONG)); in onSubscriptionRemediationReceived()
201 public static final String EXTRA_BSSID_LONG = "android.net.wifi.extra.BSSID_LONG"; field in WifiManager