Searched defs:Label (Results 1 - 2 of 2) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DDomainMatcher.java37 * The root of the Label tree.
39 private final Label mRoot;
42 * Label tree representation for the domain name. Labels are delimited by "." in the domain
49 private static class Label { class in class:DomainMatcher
50 private final Map<String, Label> mSubDomains;
53 Label(int match) { method in class:DomainMatcher.Label
55 mSubDomains = new HashMap<String, Label>();
66 // Create the Label object if it doesn't exist yet.
67 Label subLabel = mSubDomains.get(labelName);
69 subLabel = new Label(MATCH_NON
[all...]
/frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
H A DDomainMatcher.java16 private final Label mRoot;
18 private static class Label { class in class:DomainMatcher
19 private final Map<String, Label> mSubDomains;
22 private Label(Match match) { method in class:DomainMatcher.Label
24 mSubDomains = match == Match.None ? new HashMap<String, Label>() : null;
30 Label subLabel = new Label(Match.None);
34 mSubDomains.put(labelName, new Label(match));
38 private Label getSubLabel(String labelString) {
49 for (Map.Entry<String, Label> entr
[all...]

Completed in 92 milliseconds