Home
last modified time | relevance | path

Searched refs:OMAConstructed (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
DOMANode.java14 private final OMAConstructed mParent;
19 … protected OMANode(OMAConstructed parent, String name, String context, Map<String, String> avps) { in OMANode()
41 public OMAConstructed getParent() { in getParent()
69 public abstract OMANode reparent(OMAConstructed parent); in reparent()
117 public static OMAConstructed unmarshal(InputStream in) throws IOException { in unmarshal()
122 unmarshal(in, (OMAConstructed) node); in unmarshal()
123 return (OMAConstructed) node; in unmarshal()
126 private static void unmarshal(InputStream in, OMAConstructed parent) throws IOException { in unmarshal()
132 unmarshal(in, (OMAConstructed) node); in unmarshal()
137 private static OMANode buildNode(InputStream in, OMAConstructed parent) throws IOException { in buildNode()
[all …]
DOMAConstructed.java11 public class OMAConstructed extends OMANode { class
14 public OMAConstructed(OMAConstructed parent, String name, String context, String... avps) { in OMAConstructed() method in OMAConstructed
18 protected OMAConstructed(OMAConstructed parent, String name, String context, in OMAConstructed() method in OMAConstructed
30 new OMAConstructed(this, name, context); in addChild()
50 public OMAConstructed reparent(OMAConstructed parent) { in reparent()
51 return new OMAConstructed(parent, getName(), getContext(), mChildren, getAttributes()); in reparent()
DMOManager.java245 OMAConstructed dummyRoot = new OMAConstructed(null, TAG_PerProviderSubscription, null); in addSP()
271 OMAConstructed pps = (OMAConstructed) instanceTree.getRoot(). in addSP()
321 private static OMAConstructed findTargetTree(MOTree moTree, String fqdn) throws OMAException { in findTargetTree()
326 instance = getInstanceNode((OMAConstructed) node); in findTargetTree()
333 return (OMAConstructed) node; in findTargetTree()
341 private static OMAConstructed getInstanceNode(OMAConstructed root) throws OMAException { in getInstanceNode()
344 return (OMAConstructed) child; in getInstanceNode()
353 OMAConstructed ppsTree = in modifySP()
354 (OMAConstructed) moTree.getRoot().getChildren().iterator().next(); in modifySP()
355 OMAConstructed instance = getInstanceNode(ppsTree); in modifySP()
[all …]
DMOTree.java28 private final OMAConstructed mRoot;
54 public MOTree(String urn, String rev, OMAConstructed root) throws IOException { in MOTree()
60 public static MOTree buildMgmtTree(String urn, String rev, OMAConstructed root) in buildMgmtTree()
62 OMAConstructed realRoot; in buildMgmtTree()
214 public OMAConstructed getRoot() { in getRoot()
259 OMAConstructed root = OMANode.unmarshal(in); in unmarshal()
DOMAScalar.java12 public OMAScalar(OMAConstructed parent, String name, String context, String value, in OMAScalar()
17 public OMAScalar(OMAConstructed parent, String name, String context, String value, in OMAScalar()
24 public OMAScalar reparent(OMAConstructed parent) { in reparent()
DMgmtTreeRoot.java5 public class MgmtTreeRoot extends OMAConstructed {
/frameworks/base/packages/Osu/src/com/android/hotspot2/
DOMADMAdapter.java14 import com.android.hotspot2.omadm.OMAConstructed;
223 private static void buildNode(PathAccessor pathAccessor, int depth, OMAConstructed parent) in buildNode()
228 OMAConstructed node = (OMAConstructed) parent.getChild(name); in buildNode()
230 node = (OMAConstructed) parent.addChild(name, RTProps.get(name), in buildNode()
264 OMAConstructed root = new OMAConstructed(null, "DevInfo", urn); in getMO()
274 OMAConstructed root = new OMAConstructed(null, "DevDetail", urn); in getMO()