OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:supplicantstate
(Results
1 - 17
of
17
) sorted by null
/cts/tests/tests/net/src/android/net/wifi/cts/
SupplicantStateTest.java
19
import android.net.wifi.
SupplicantState
;
29
assertTrue(
SupplicantState
.isValidState(
SupplicantState
.DISCONNECTED));
30
assertTrue(
SupplicantState
.isValidState(
SupplicantState
.INACTIVE));
31
assertTrue(
SupplicantState
.isValidState(
SupplicantState
.SCANNING));
32
assertTrue(
SupplicantState
.isValidState(
SupplicantState
.ASSOCIATING));
33
assertTrue(
SupplicantState
.isValidState(SupplicantState.ASSOCIATED))
[
all
...]
WifiInfoTest.java
25
import android.net.wifi.
SupplicantState
;
123
SupplicantState
.isValidState(wifiInfo.getSupplicantState());
124
WifiInfo.getDetailedStateOf(
SupplicantState
.DISCONNECTED);
/frameworks/base/wifi/java/android/net/wifi/
WifiInfo.java
41
private static final EnumMap<
SupplicantState
, DetailedState> stateMap =
42
new EnumMap<
SupplicantState
, DetailedState>(
SupplicantState
.class);
45
stateMap.put(
SupplicantState
.DISCONNECTED, DetailedState.DISCONNECTED);
46
stateMap.put(
SupplicantState
.INTERFACE_DISABLED, DetailedState.DISCONNECTED);
47
stateMap.put(
SupplicantState
.INACTIVE, DetailedState.IDLE);
48
stateMap.put(
SupplicantState
.SCANNING, DetailedState.SCANNING);
49
stateMap.put(
SupplicantState
.AUTHENTICATING, DetailedState.CONNECTING);
50
stateMap.put(
SupplicantState
.ASSOCIATING, DetailedState.CONNECTING);
51
stateMap.put(
SupplicantState
.ASSOCIATED, DetailedState.CONNECTING)
[
all
...]
SupplicantState.java
33
public enum
SupplicantState
implements Parcelable {
169
public static boolean isValidState(
SupplicantState
state) {
175
public static boolean isHandshakeState(
SupplicantState
state) {
197
static boolean isConnecting(
SupplicantState
state) {
219
static boolean isDriverActive(
SupplicantState
state) {
252
public static final Creator<
SupplicantState
> CREATOR =
253
new Creator<
SupplicantState
>() {
254
public
SupplicantState
createFromParcel(Parcel in) {
255
return
SupplicantState
.valueOf(in.readString());
258
public
SupplicantState
[] newArray(int size)
[
all
...]
StateChangeResult.java
27
SupplicantState
state) {
37
SupplicantState
state;
SupplicantStateTracker.java
103
SupplicantState
supState = (
SupplicantState
) stateChangeResult.state;
143
private void sendSupplicantStateChangedBroadcast(
SupplicantState
state, boolean failedAuth) {
175
SupplicantState
state = stateChangeResult.state;
263
SupplicantState
state = stateChangeResult.state;
264
if (
SupplicantState
.isHandshakeState(state)) {
305
SupplicantState
state = stateChangeResult.state;
311
if (
SupplicantState
.isConnecting(state)) {
317
sendSupplicantStateChangedBroadcast(
SupplicantState
.DISCONNECTED, false);
WifiMonitor.java
702
SupplicantState
newSupplicantState =
SupplicantState
.INVALID;
703
for (
SupplicantState
state :
SupplicantState
.values()) {
709
if (newSupplicantState ==
SupplicantState
.INVALID) {
[
all
...]
WifiWatchdogStateMachine.java
581
SupplicantState
supplicantState
= (
SupplicantState
) intent.getParcelableExtra(
583
if (
supplicantState
==
SupplicantState
.COMPLETED) {
[
all
...]
WifiStateMachine.java
[
all
...]
WifiManager.java
287
* {@link
SupplicantState
}. Note that the supplicant state is Wi-Fi specific, and
297
* The lookup key for a {@link
SupplicantState
} describing the new state
304
* The lookup key for a {@link
SupplicantState
} describing the supplicant
[
all
...]
/packages/apps/Settings/src/com/android/settings/wifi/
WifiStatusTest.java
32
import android.net.wifi.
SupplicantState
;
102
(
SupplicantState
) intent.getParcelableExtra(WifiManager.EXTRA_NEW_STATE),
196
SupplicantState
supplicantState
= wifiInfo.getSupplicantState();
197
setSupplicantStateText(
supplicantState
);
201
private void setSupplicantStateText(
SupplicantState
supplicantState
) {
202
if(
SupplicantState
.FOUR_WAY_HANDSHAKE.equals(
supplicantState
)) {
204
} else if(
SupplicantState
.ASSOCIATED.equals(supplicantState))
[
all
...]
WifiEnabler.java
25
import android.net.wifi.
SupplicantState
;
56
handleStateChanged(WifiInfo.getDetailedStateOf((
SupplicantState
)
WifiApEnabler.java
32
import android.net.wifi.
SupplicantState
;
WifiSettings.java
38
import android.net.wifi.
SupplicantState
;
[
all
...]
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/unit/
WifiClientTest.java
31
import android.net.wifi.
SupplicantState
;
57
SupplicantState
mSupplicantState;
84
mSupplicantState = (
SupplicantState
)
261
assertTrue(mSupplicantState ==
SupplicantState
.COMPLETED);
270
assertTrue(mSupplicantState !=
SupplicantState
.COMPLETED);
/system/core/logcat/
event.logtags
89
# [8 - 0] Supplicant state (as defined in
SupplicantState
.java)
/frameworks/base/docs/html/
sitemap.txt
[
all
...]
Completed in 1686 milliseconds