Lines Matching full:child
55 struct RedfishPropertyLeafNull* child, const char* name) in bejTreeAddNull() argument
57 bejTreeInitChildNode((struct RedfishPropertyLeaf*)child, name, bejNull); in bejTreeAddNull()
58 bejTreeLinkChildToParent(parent, child); in bejTreeAddNull()
62 struct RedfishPropertyLeafInt* child, const char* name, in bejTreeAddInteger() argument
65 bejTreeInitChildNode((struct RedfishPropertyLeaf*)child, name, bejInteger); in bejTreeAddInteger()
66 child->value = value; in bejTreeAddInteger()
67 bejTreeLinkChildToParent(parent, child); in bejTreeAddInteger()
76 struct RedfishPropertyLeafEnum* child, const char* name, in bejTreeAddEnum() argument
79 bejTreeInitChildNode((struct RedfishPropertyLeaf*)child, name, bejEnum); in bejTreeAddEnum()
80 child->value = value; in bejTreeAddEnum()
81 bejTreeLinkChildToParent(parent, child); in bejTreeAddEnum()
85 struct RedfishPropertyLeafString* child, const char* name, in bejTreeAddString() argument
88 bejTreeInitChildNode((struct RedfishPropertyLeaf*)child, name, bejString); in bejTreeAddString()
89 child->value = value; in bejTreeAddString()
90 bejTreeLinkChildToParent(parent, child); in bejTreeAddString()
94 struct RedfishPropertyLeafReal* child, const char* name, in bejTreeAddReal() argument
97 bejTreeInitChildNode((struct RedfishPropertyLeaf*)child, name, bejReal); in bejTreeAddReal()
98 child->value = value; in bejTreeAddReal()
99 bejTreeLinkChildToParent(parent, child); in bejTreeAddReal()
108 struct RedfishPropertyLeafBool* child, const char* name, in bejTreeAddBool() argument
111 bejTreeInitChildNode((struct RedfishPropertyLeaf*)child, name, bejBoolean); in bejTreeAddBool()
112 child->value = value; in bejTreeAddBool()
113 bejTreeLinkChildToParent(parent, child); in bejTreeAddBool()
116 void bejTreeLinkChildToParent(struct RedfishPropertyParent* parent, void* child) in bejTreeLinkChildToParent() argument
121 parent->firstChild = child; in bejTreeLinkChildToParent()
126 lastChild->sibling = child; in bejTreeLinkChildToParent()
128 parent->lastChild = child; in bejTreeLinkChildToParent()