Home
last modified time | relevance | path

Searched refs:RedfishPropertyParent (Results 1 – 10 of 10) sorted by relevance

/openbmc/libbej/test/
H A Dbej_encoder_test.cpp23 struct RedfishPropertyParent* (*createResource)();
57 struct RedfishPropertyParent* createDummyResource() in createDummyResource()
59 static struct RedfishPropertyParent root; in createDummyResource()
74 static struct RedfishPropertyParent chArraySet1; in createDummyResource()
83 static struct RedfishPropertyParent chArraySet2; in createDummyResource()
89 static struct RedfishPropertyParent chArray; in createDummyResource()
129 struct RedfishPropertyParent* createDriveOem() in createDriveOem()
131 static struct RedfishPropertyParent root; in createDriveOem()
143 static struct RedfishPropertyParent actions; in createDriveOem()
146 static struct RedfishPropertyParent drRst; in createDriveOem()
[all …]
H A Dbej_tree_test.cpp13 struct RedfishPropertyParent node; in TEST()
30 struct RedfishPropertyParent node; in TEST()
47 struct RedfishPropertyParent node; in TEST()
63 struct RedfishPropertyParent parent; in TEST()
89 struct RedfishPropertyParent parent; in TEST()
107 struct RedfishPropertyParent parent; in TEST()
122 struct RedfishPropertyParent parent; in TEST()
141 struct RedfishPropertyParent parent; in TEST()
160 struct RedfishPropertyParent parent; in TEST()
179 struct RedfishPropertyParent parent; in TEST()
[all …]
/openbmc/libbej/include/libbej/
H A Dbej_tree.h68 struct RedfishPropertyParent struct
164 void bejTreeInitSet(struct RedfishPropertyParent* node, const char* name);
172 void bejTreeInitArray(struct RedfishPropertyParent* node, const char* name);
180 void bejTreeInitPropertyAnnotated(struct RedfishPropertyParent* node,
198 void bejTreeAddNull(struct RedfishPropertyParent* parent,
209 void bejTreeAddInteger(struct RedfishPropertyParent* parent,
229 void bejTreeAddEnum(struct RedfishPropertyParent* parent,
241 void bejTreeAddString(struct RedfishPropertyParent* parent,
253 void bejTreeAddReal(struct RedfishPropertyParent* parent,
273 void bejTreeAddBool(struct RedfishPropertyParent* parent,
[all …]
H A Dbej_encoder_metadata.h29 struct RedfishPropertyParent* root,
H A Dbej_encoder_core.h44 struct RedfishPropertyParent* root,
H A Dbej_encoder_json.hpp76 struct RedfishPropertyParent* root);
/openbmc/libbej/src/
H A Dbej_tree.c3 static void bejTreeInitParent(struct RedfishPropertyParent* node, in bejTreeInitParent()
18 void bejTreeInitSet(struct RedfishPropertyParent* node, const char* name) in bejTreeInitSet()
23 void bejTreeInitArray(struct RedfishPropertyParent* node, const char* name) in bejTreeInitArray()
28 void bejTreeInitPropertyAnnotated(struct RedfishPropertyParent* node, in bejTreeInitPropertyAnnotated()
54 void bejTreeAddNull(struct RedfishPropertyParent* parent, in bejTreeAddNull()
61 void bejTreeAddInteger(struct RedfishPropertyParent* parent, in bejTreeAddInteger()
75 void bejTreeAddEnum(struct RedfishPropertyParent* parent, in bejTreeAddEnum()
84 void bejTreeAddString(struct RedfishPropertyParent* parent, in bejTreeAddString()
93 void bejTreeAddReal(struct RedfishPropertyParent* parent, in bejTreeAddReal()
107 void bejTreeAddBool(struct RedfishPropertyParent* parent, in bejTreeAddBool()
[all …]
H A Dbej_encoder_core.c36 static int bejEncodeBejSetOrArray(struct RedfishPropertyParent* node, in bejEncodeBejSetOrArray()
155 int bejEncodeBejProAnno(struct RedfishPropertyParent* node, in bejEncodeBejProAnno()
227 static int bejPushParentToStack(struct RedfishPropertyParent* parent, in bejPushParentToStack()
239 static int bejProcessChildNodes(struct RedfishPropertyParent* parent, in bejProcessChildNodes()
272 static int bejEncodeTree(struct RedfishPropertyParent* root, in bejEncodeTree()
287 struct RedfishPropertyParent* parent = in bejEncodeTree()
314 struct RedfishPropertyParent* root, in bejEncode()
H A Dbej_encoder_metadata.c482 uint16_t dictStartingOffset, struct RedfishPropertyParent* node, in bejUpdateParentMetaData()
529 struct RedfishPropertyParent* parent, in bejProcessChildNodes()
570 struct RedfishPropertyParent* root, in bejUpdateNodeMetadata()
595 struct RedfishPropertyParent* parent = in bejUpdateNodeMetadata()
627 struct RedfishPropertyParent* parentsParent = in bejUpdateNodeMetadata()
H A Dbej_encoder_json.cpp60 struct RedfishPropertyParent* root) in encode()