| /openbmc/libbej/test/ |
| H A D | bej_tree_test.cpp | 83 EXPECT_THAT(child1.leaf.nodeAttr.sibling, &child2); in TEST() 95 EXPECT_THAT(child.leaf.nodeAttr.name, name); in TEST() 96 EXPECT_THAT(child.leaf.nodeAttr.format.principalDataType, bejInteger); in TEST() 97 EXPECT_THAT(child.leaf.nodeAttr.format.deferredBinding, 0); in TEST() 98 EXPECT_THAT(child.leaf.nodeAttr.format.readOnlyProperty, 0); in TEST() 99 EXPECT_THAT(child.leaf.nodeAttr.format.nullableProperty, 0); in TEST() 100 EXPECT_THAT(child.leaf.nodeAttr.sibling, nullptr); in TEST() 128 EXPECT_THAT(child.leaf.nodeAttr.name, name); in TEST() 129 EXPECT_THAT(child.leaf.nodeAttr.format.principalDataType, bejEnum); in TEST() 130 EXPECT_THAT(child.leaf.nodeAttr.format.deferredBinding, 0); in TEST() [all …]
|
| /openbmc/libbej/src/ |
| H A D | bej_encoder_metadata.c | 192 dictionaries, parentDictionary, &node->leaf.nodeAttr, nodeIndex, in bejUpdateIntMetaData() 194 node->leaf.metaData.sequenceNumber = sequenceNumber; in bejUpdateIntMetaData() 198 node->leaf.metaData.sflSize = bejNnintEncodingSizeOfUInt(sequenceNumber); in bejUpdateIntMetaData() 200 node->leaf.metaData.sflSize += BEJ_TUPLE_F_SIZE; in bejUpdateIntMetaData() 202 node->leaf.metaData.sflSize += BEJ_TUPLE_L_SIZE_FOR_BEJ_INTEGER; in bejUpdateIntMetaData() 204 node->leaf.metaData.vSize = bejIntLengthOfValue(node->value); in bejUpdateIntMetaData() 215 dictionaries, parentDictionary, &(node->leaf.nodeAttr), nodeIndex, in bejUpdateStringMetaData() 217 node->leaf.metaData.sequenceNumber = sequenceNumber; in bejUpdateStringMetaData() 221 node->leaf.metaData.sflSize = bejNnintEncodingSizeOfUInt(sequenceNumber); in bejUpdateStringMetaData() 223 node->leaf.metaData.sflSize += BEJ_TUPLE_F_SIZE; in bejUpdateStringMetaData() [all …]
|
| H A D | bej_encoder_core.c | 67 bejEncodeNnint(node->leaf.metaData.sequenceNumber, output)); in bejEncodeBejInteger() 69 RETURN_IF_IERROR(bejEncodeFormat(&node->leaf.nodeAttr.format, output)); in bejEncodeBejInteger() 71 RETURN_IF_IERROR(bejEncodeNnint(node->leaf.metaData.vSize, output)); in bejEncodeBejInteger() 84 bejEncodeNnint(node->leaf.metaData.sequenceNumber, output)); in bejEncodeBejEnum() 86 RETURN_IF_IERROR(bejEncodeFormat(&node->leaf.nodeAttr.format, output)); in bejEncodeBejEnum() 88 RETURN_IF_IERROR(bejEncodeNnint(node->leaf.metaData.vSize, output)); in bejEncodeBejEnum() 98 bejEncodeNnint(node->leaf.metaData.sequenceNumber, output)); in bejEncodeBejString() 100 RETURN_IF_IERROR(bejEncodeFormat(&node->leaf.nodeAttr.format, output)); in bejEncodeBejString() 102 RETURN_IF_IERROR(bejEncodeNnint(node->leaf.metaData.vSize, output)); in bejEncodeBejString() 104 return output->recvOutput((void*)node->value, node->leaf.metaData.vSize, in bejEncodeBejString() [all …]
|
| /openbmc/libbej/include/libbej/ |
| H A D | bej_tree.h | 105 struct RedfishPropertyLeaf leaf; member 113 struct RedfishPropertyLeaf leaf; member 122 struct RedfishPropertyLeaf leaf; member 134 struct RedfishPropertyLeaf leaf; member 143 struct RedfishPropertyLeaf leaf; member 154 struct RedfishPropertyLeaf leaf; member
|
| /openbmc/phosphor-user-manager/test/ |
| H A D | json_serializer_test.cpp | 93 auto leaf = s.getLeafNode("foo/bar/baz"); in TEST_F() local 94 EXPECT_TRUE(leaf.has_value()); in TEST_F() 95 if (leaf.has_value()) in TEST_F() 97 EXPECT_EQ(*leaf, "value"); in TEST_F() 100 leaf = s.getLeafNode("foo/bar/nonexistent"); in TEST_F() 101 EXPECT_FALSE(leaf.has_value()); in TEST_F()
|
| /openbmc/u-boot/test/py/tests/ |
| H A D | test_bind.py | 10 leaf = ' ' * 4 * depth; 12 leaf = leaf + '\|' 14 leaf = leaf + '`' 15 leaf = leaf + '-- ' + name 17 .format(uclass, drv, leaf))
|
| H A D | test_fit.py | 117 def make_fname(leaf): argument 126 return os.path.join(cons.config.build_dir, leaf)
|
| /openbmc/bmcweb/redfish-core/include/utils/ |
| H A D | collection.hpp | 67 std::string leaf = path.filename(); in handleCollectionMembers() local 68 if (leaf.empty()) in handleCollectionMembers() 72 pathNames.push_back(leaf); in handleCollectionMembers() 78 for (const std::string& leaf : pathNames) in handleCollectionMembers() local 81 crow::utility::appendUrlPieces(url, leaf); in handleCollectionMembers()
|
| H A D | systems_utils.hpp | 81 std::string leaf = path.filename(); in handleSystemCollectionMembers() local 82 if (leaf.empty()) in handleSystemCollectionMembers() 86 pathNames.emplace_back(leaf); in handleSystemCollectionMembers()
|
| H A D | sw_utils.hpp | 264 std::string leaf = path.filename(); in afterAssociatedEndpoints() local 265 if (leaf.empty()) in afterAssociatedEndpoints() 270 functionalSwIds.push_back(leaf); in afterAssociatedEndpoints()
|
| /openbmc/u-boot/fs/btrfs/ |
| H A D | ctree.h | 256 struct btrfs_leaf leaf; member 286 return &p->nodes[0]->leaf.items[p->slots[0]].key; in btrfs_path_leaf_key() 313 return p->nodes[0]->leaf.items[p->slots[0]].size; in btrfs_path_item_size() 316 static inline void *btrfs_leaf_data(struct btrfs_leaf *leaf, u32 slot) in btrfs_leaf_data() argument 318 return ((u8 *) leaf) + sizeof(struct btrfs_header) in btrfs_leaf_data() 319 + leaf->items[slot].offset; in btrfs_leaf_data() 324 return btrfs_leaf_data(&p->nodes[0]->leaf, p->slots[0]); in btrfs_path_leaf_data()
|
| H A D | ctree.c | 78 addr = p->leaf.items; in btrfs_bin_search() 144 btrfs_item_to_cpu(&res->leaf.items[i]); in read_tree_node() 273 struct btrfs_leaf *leaf = &p->nodes[0]->leaf; in btrfs_next_slot() local 275 if (p->slots[0] + 1 >= leaf->header.nritems) in btrfs_next_slot()
|
| /openbmc/bmcweb/features/openbmc_rest/ |
| H A D | image_upload.hpp | 90 std::string leaf = path.filename(); in uploadImageHandler() local 91 if (leaf.empty()) in uploadImageHandler() 93 leaf = path.str; in uploadImageHandler() 96 asyncResp->res.jsonValue["data"] = leaf; in uploadImageHandler()
|
| /openbmc/phosphor-user-manager/ |
| H A D | json_serializer.hpp | 65 auto leaf = getLeafNode(key); in deserialize() local 66 if (leaf) in deserialize() 68 value = *leaf; in deserialize()
|
| /openbmc/rest-dbus/resources/ |
| H A D | jstree.style.css | 1 …leaf>.jstree-ocl{cursor:default}.jstree .jstree-open>.jstree-children{display:block}.jstree .jstre…
|
| /openbmc/u-boot/scripts/dtc/libfdt/ |
| H A D | fdt_ro.c | 252 const char *leaf; in fdt_get_name() local 253 leaf = strrchr(nameptr, '/'); in fdt_get_name() 254 if (leaf == NULL) { in fdt_get_name() 258 nameptr = leaf+1; in fdt_get_name()
|
| /openbmc/u-boot/fs/ubifs/ |
| H A D | tnc.c | 314 ubifs_assert(!zbr->leaf); in lnc_add() 330 zbr->leaf = lnc_node; in lnc_add() 348 ubifs_assert(!zbr->leaf); in lnc_add_directly() 358 zbr->leaf = node; in lnc_add_directly() 369 if (!zbr->leaf) in lnc_free() 371 kfree(zbr->leaf); in lnc_free() 372 zbr->leaf = NULL; in lnc_free() 393 if (zbr->leaf) { in tnc_read_node_nm() 396 memcpy(node, zbr->leaf, zbr->len); in tnc_read_node_nm() 523 if (!zbr->leaf) { in matches_name() [all …]
|
| /openbmc/u-boot/tools/patman/ |
| H A D | gitutil.py | 138 leaf = merge.split('/')[-1] 139 return '%s/%s' % (remote, leaf), None
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/thrift/thrift/ |
| H A D | 0001-DefineInstallationPaths.cmake-Define-libdir-in-terms.patch | 33 # top of the build tree rather than in hard-to-find leaf
|
| /openbmc/phosphor-host-ipmid/ |
| H A D | sensordatahandler.cpp | 56 const auto leaf = sensorInfo.sensorPath.substr(pos + 1); in nameParentLeaf() local 63 parent += "_" + leaf; in nameParentLeaf()
|
| /openbmc/qemu/include/hw/xen/interface/arch-x86/ |
| H A D | xen.h | 317 uint32_t leaf, subleaf; member
|
| /openbmc/openbmc/meta-openembedded/meta-webserver/recipes-support/fcgiwrap/fcgiwrap/ |
| H A D | 0001-Fix-implicit-fallthrough-warning.patch | 117 +# leaf 229 + [leaf], [
|
| /openbmc/u-boot/tools/buildman/ |
| H A D | toolchain.py | 492 leaf = url.split('/')[-1] 495 fname = os.path.join(tmpdir, leaf)
|
| /openbmc/bmcweb/redfish-core/lib/ |
| H A D | storage_chassis.hpp | 515 std::string leaf = path.filename(); in matchAndFillDrive() local 516 if (leaf != driveName) in matchAndFillDrive()
|
| /openbmc/qemu/hw/arm/ |
| H A D | trace-events | 59 …t num_pages, uint8_t ttl, bool leaf, int stage) "vmid=%d asid=%d addr=0x%"PRIx64" tg=%d num_pages=…
|