HomeSort by relevance Sort by last modified time
    Searched refs:ppsNode (Results 1 - 2 of 2) sorted by null

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
LegacyPasspointConfigParser.java 214 for (Node ppsNode : ppsNodes) {
215 LegacyPasspointConfig config = processPpsNode(ppsNode);
272 * @param ppsNode The PPS node to process
276 private static LegacyPasspointConfig processPpsNode(Node ppsNode) throws IOException {
277 if (ppsNode.getChildren() == null || ppsNode.getChildren().size() != 1) {
282 if (!TextUtils.equals(TAG_PER_PROVIDER_SUBSCRIPTION, ppsNode.getName())) {
283 throw new IOException("Unexpected name for PPS node: " + ppsNode.getName());
287 Node instanceNode = ppsNode.getChildren().get(0);
  /frameworks/base/wifi/java/android/net/wifi/hotspot2/omadm/
PpsMoParser.java 240 * A PPSNode can be an internal or a leaf node, but not both.
243 private static abstract class PPSNode {
245 public PPSNode(String name) {
261 public abstract List<PPSNode> getChildren();
279 private static class LeafNode extends PPSNode {
292 public List<PPSNode> getChildren() {
305 private static class InternalNode extends PPSNode {
306 private final List<PPSNode> mChildren;
307 public InternalNode(String nodeName, List<PPSNode> children) {
318 public List<PPSNode> getChildren()
    [all...]

Completed in 57 milliseconds