OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NonEAPType
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/packages/Osu/src/com/android/anqp/eap/
NonEAPInnerAuth.java
16
public enum
NonEAPType
{Reserved, PAP, CHAP, MSCHAP, MSCHAPv2}
17
private static final Map<
NonEAPType
, String> sOmaMap = new EnumMap<>(
NonEAPType
.class);
18
private static final Map<String,
NonEAPType
> sRevOmaMap = new HashMap<>();
20
private final
NonEAPType
mType;
23
sOmaMap.put(
NonEAPType
.PAP, "PAP");
24
sOmaMap.put(
NonEAPType
.CHAP, "CHAP");
25
sOmaMap.put(
NonEAPType
.MSCHAP, "MS-CHAP");
26
sOmaMap.put(
NonEAPType
.MSCHAPv2, "MS-CHAP-V2");
28
for (Map.Entry<
NonEAPType
, String> entry : sOmaMap.entrySet())
[
all
...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/eap/
NonEAPInnerAuth.java
16
public enum
NonEAPType
{Reserved, PAP, CHAP, MSCHAP, MSCHAPv2}
17
private static final Map<
NonEAPType
, String> sOmaMap = new EnumMap<>(
NonEAPType
.class);
18
private static final Map<String,
NonEAPType
> sRevOmaMap = new HashMap<>();
20
private final
NonEAPType
mType;
23
sOmaMap.put(
NonEAPType
.PAP, "PAP");
24
sOmaMap.put(
NonEAPType
.CHAP, "CHAP");
25
sOmaMap.put(
NonEAPType
.MSCHAP, "MS-CHAP");
26
sOmaMap.put(
NonEAPType
.MSCHAPv2, "MS-CHAP-V2");
28
for (Map.Entry<
NonEAPType
, String> entry : sOmaMap.entrySet())
[
all
...]
Completed in 63 milliseconds