/openbmc/qemu/include/system/ |
H A D | device_tree.h | 32 * @name: node name 36 * returns a newly allocated NULL-terminated array of node paths. 38 * array contains the path of each node and the last element equals to 39 * NULL. If there is no error but no matching node was found, the 51 * node-name, ie. node-name and node-name@unit-address 53 * @name: node name 56 * returns a newly allocated NULL-terminated array of node paths. 58 * array contains the path of each node and the last element equals to 59 * NULL. If there is no error but no matching node was found, the 78 * @name: node name [all …]
|
/openbmc/u-boot/fs/btrfs/ |
H A D | chunk-map.c | 12 struct rb_node node; member 40 this = rb_entry(*new, struct chunk_map_item, node); in add_chunk_mapping() 61 rb_link_node(&map_item->node, prnt, new); in add_chunk_mapping() 62 rb_insert_color(&map_item->node, &btrfs_info.chunks_root); in add_chunk_mapping() 72 struct rb_node *node = btrfs_info.chunks_root.rb_node; in btrfs_map_logical_to_physical() local 74 while (node) { in btrfs_map_logical_to_physical() 77 item = rb_entry(node, struct chunk_map_item, node); in btrfs_map_logical_to_physical() 80 node = node->rb_left; in btrfs_map_logical_to_physical() 82 node = node->rb_right; in btrfs_map_logical_to_physical() 100 item = rb_entry(now, struct chunk_map_item, node); in btrfs_chunk_map_exit()
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 151 | 43 'node-name': 'source-node', 49 blk_target = {'node-name': 'target-node', 84 filter_node_name='mirror-node', 85 device='source-node', 86 target='target-node', 129 filter_node_name='mirror-node', 130 device='source-node', 131 target='target-node', 153 filter_node_name='mirror-node', 154 device='source-node', [all …]
|
H A D | 267.out | 81 Testing: -blockdev driver=file,filename=TEST_DIR/t.IMGFMT,node-name=file 92 … -blockdev driver=file,filename=TEST_DIR/t.IMGFMT,node-name=file -blockdev driver=IMGFMT,file=file… 103 …,filename=TEST_DIR/t.IMGFMT,node-name=file -blockdev driver=raw,file=file,node-name=raw -blockdev … 117 …name=TEST_DIR/t.IMGFMT,node-name=file -blockdev driver=IMGFMT,file=file,node-name=fmt -blockdev dr… 132 …se,node-name=backing-file -blockdev driver=file,filename=TEST_DIR/t.IMGFMT,node-name=file -blockde… 143 …node-name=backing-file -blockdev driver=IMGFMT,file=backing-file,node-name=backing-fmt -blockdev d… 162 …node-name=backing-file -blockdev driver=IMGFMT,file=backing-file,node-name=backing-fmt -blockdev d…
|
H A D | 258 | 27 # Returns a node for blockdev-add 28 def node(node_name, path, backing=None, fmt=None, throttle=None): function 33 'node-name': node_name, 53 # Finds a node in the debug block graph 55 return next(node for node in graph['nodes'] if node['id'] == node_id) 112 **node('node4', node4_path, throttle=stream_throttle, 113 backing=node('node3', node3_path, 114 backing=node('node2', node2_path, 115 backing=node('node1', node1_path, 116 backing=node('node0', node0_path, throttle=commit_throttle, [all …]
|
H A D | 085.out | 27 {"error": {"class": "GenericError", "desc": "Cannot find device='' nor node-name=''"}} 152 { 'driver': 'IMGFMT', 'node-name': 'snap_11', 'backing': null, 155 'node-name': 'file_11' } } } 158 'arguments': { 'node': 'virtio0', 163 { 'driver': 'IMGFMT', 'node-name': 'snap_12', 'backing': null, 166 'node-name': 'file_12' } } } 169 'arguments': { 'node': 'virtio0', 176 'arguments': { 'node':'virtio0', 181 === Invalid command - snapshot node used as active layer === 184 'arguments': { 'node': 'virtio0', [all …]
|
/openbmc/u-boot/doc/device-tree-bindings/firmware/ |
H A D | ti,sci.txt | 16 TI-SCI controller Device Node: 19 The TI-SCI node describes the Texas Instrument's System Controller entity node. 20 This parent node may optionally have additional children nodes which describe 23 relationship between the TI-SCI parent node to the child node. 34 node and an args specifier that will be the phandle to the intended 35 sub-mailbox child node to be used for communication. 56 TI-SCI Client Device Node: 59 Client nodes are maintained as children of the relevant TI-SCI device node.
|
/openbmc/qemu/util/ |
H A D | fdmon-poll.c | 37 static void add_pollfd(AioHandler *node) in add_pollfd() argument 51 nodes[npfd] = node; in add_pollfd() 53 .fd = node->pfd.fd, in add_pollfd() 54 .events = node->pfd.events, in add_pollfd() 62 AioHandler *node; in fdmon_poll_wait() local 67 QLIST_FOREACH_RCU(node, &ctx->aio_handlers, node) { in fdmon_poll_wait() 68 if (!QLIST_IS_INSERTED(node, node_deleted) && node->pfd.events) { in fdmon_poll_wait() 69 add_pollfd(node); in fdmon_poll_wait()
|
/openbmc/qemu/qapi/ |
H A D | yank.json | 20 'data': [ 'block-node', 'chardev', 'migration' ] } 25 # Specifies which block graph node to yank. See `YankInstance` for 28 # @node-name: the name of the block graph node 33 'data': { 'node-name': 'str' } } 72 'block-node': 'YankInstanceBlockNode', 91 # { "type": "block-node", 92 # "node-name": "nbd0" } 113 # { "type": "block-node", 114 # "node-name": "nbd0" }
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | codeparser.py | 273 def visit_Call(self, node): argument 274 name = self.called_node_name(node.func) 277 contains, execs, warn = visitorcode(name, node.args) 282 self.warn(node.func, warn) 284 if isinstance(node.args[0], ast.Constant) and isinstance(node.args[0].value, str): 285 varname = node.args[0].value 286 if name in self.containsfuncs and isinstance(node.args[1], ast.Constant): 289 self.contains[varname].add(node.args[1].value) 290 elif name in self.containsanyfuncs and isinstance(node.args[1], ast.Constant): 293 self.contains[varname].update(node.args[1].value.split()) [all …]
|
/openbmc/u-boot/include/linux/ |
H A D | libfdt.h | 26 * Add all supernodes of a matching node/property, useful for creating a 34 /* Add all subnodes of a matching node */ 40 /* Indicates what an fdt part is (node, property, value) */ 45 #define FDT_NODE_HAS_PROP (1 << 4) /* node contains prop */ 64 int offset; /* Offset of node */ 66 int included; /* 1 if we included this node, 0 if not */ 73 char *end; /* Pointer to end of full node path */ 74 int nextoffset; /* Next node offset to check */ 79 struct fdt_subnode_stack stack[FDT_MAX_DEPTH]; /* node stack */ 107 * For eaxample "/" means to include the root node, all root properties [all …]
|
/openbmc/u-boot/fs/ubifs/ |
H A D | tnc.c | 12 * This file implements TNC (Tree Node Cache) which caches indexing nodes of 37 * @NOT_ON_MEDIA: node referred by zbranch does not exist on the media 49 * insert_old_idx - record an index node obsoleted since the last commit start. 51 * @lnum: LEB number of obsoleted index node 52 * @offs: offset of obsoleted index node 63 * committing must be able to determine if an index node is in the old index. 69 * offset because they uniquely identify the old index node. 108 * @znode: znode of obsoleted index node 130 * @znode: znode of obsoleted index node 227 * @lnum: LEB number of index node [all …]
|
/openbmc/u-boot/common/ |
H A D | image-fit.c | 114 debug("Can't get '%s' property from FIT 0x%08lx, node: offset %d, name %s (%s)\n", in fit_get_debug() 122 * @images_noffset: offset of images node 148 * fit_image_print_data() - prints out the hash node details 150 * @noffset: offset of the hash node 154 * fit_image_print_data() lists properties for the processed hash node 173 debug("%s %s node: '%s'\n", p, type, in fit_image_print_data() 221 * @noffset: offset of the hash or signature node 224 * This lists properties for the processed hash node 236 * Multiple hash/signature nodes require unique unit node in fit_image_print_verification_data() 251 * @noffset: offset of the configuration node [all …]
|
/openbmc/u-boot/board/freescale/common/ |
H A D | fman.c | 21 * 1) A pointer to an Fman Ethernet node (as identified by the 'compat' 24 * 2) The name of an alias that points to the ethernet-phy node (usually inside 25 * a virtual MDIO node) 27 * ... update that Ethernet node's phy-handle property to point to the 28 * ethernet-phy node. This is how we link an Ethernet node to its PHY, so each 29 * PHY in a virtual MDIO node must have an alias. 40 /* Get a path to the node that 'alias' points to */ in fdt_set_phy_handle() 45 /* Get the offset of that node */ in fdt_set_phy_handle()
|
/openbmc/u-boot/arch/x86/cpu/intel_common/ |
H A D | microcode.c | 40 static int microcode_decode_node(const void *blob, int node, in microcode_decode_node() argument 43 update->data = fdt_getprop(blob, node, "data", &update->size); in microcode_decode_node() 47 update->header_version = fdtdec_get_int(blob, node, in microcode_decode_node() 49 update->update_revision = fdtdec_get_int(blob, node, in microcode_decode_node() 51 update->date_code = fdtdec_get_int(blob, node, in microcode_decode_node() 53 update->processor_signature = fdtdec_get_int(blob, node, in microcode_decode_node() 55 update->checksum = fdtdec_get_int(blob, node, "intel,checksum", 0); in microcode_decode_node() 56 update->loader_revision = fdtdec_get_int(blob, node, in microcode_decode_node() 58 update->processor_flags = fdtdec_get_int(blob, node, in microcode_decode_node() 129 int node; in microcode_update_intel() local [all …]
|
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/ |
H A D | AutomationNode.v1_0_0.json | 51 …"description": "The `AutomationNode` schema describes a node that carries out instructions in indu… 52 …"longDescription": "This resource shall represent an automation node for a Redfish implementation.… 102 "description": "A link to the instrumentation for this node.", 103 …of type `AutomationInstrumentation` that represents the instrumentation for this automation node.", 120 "description": "The primary axis of motion for this motion-related node.", 121 …scription": "This property shall contain the primary axis of motion for this motion-related node.", 133 "description": "The motion profile type used for this node.", 134 …iption": "This property shall contain the type of motion profile used for this motion-based node.", 143 "description": "The current state of the node.", 144 … "longDescription": "This property shall contain the current state of the automation node.", [all …]
|
/openbmc/u-boot/include/linux/usb/ |
H A D | otg.h | 21 * @node: Node offset to the given device 26 enum usb_dr_mode usb_get_dr_mode(int node); 30 * @node: Node offset to the given device 35 enum usb_device_speed usb_get_maximum_speed(int node);
|
/openbmc/openbmc/meta-yadro/meta-nicole/recipes-kernel/linux/linux-aspeed/ |
H A D | 0001-Add-NCSI-channel-selector.patch | 7 described in the device tree (gpio/nsci_cfg node). 48 + const struct device_node *node = data; 49 + return chip->of_node == node; 57 + * described in the device tree (gpio/nsci_cfg node). 64 + struct device_node* node = NULL; 72 + /* Read NCSI configuration node from device tree */ 73 + node = of_find_node_by_name(NULL, "ncsi_cfg"); 74 + if (!node) { 75 + netdev_err(dev, "NCSI: Configuration node not found\n"); 80 + rc = of_property_read_u32_index(node, "gpios", 0, &pin); [all …]
|
/openbmc/qemu/docs/tools/ |
H A D | qemu-storage-daemon.rst | 66 is a block node definition. See the :manpage:`qemu(1)` manual page for a 67 description of block node properties and the :manpage:`qemu-block-drivers(7)` 78 .. option:: --export [type=]nbd,id=<id>,node-name=<node-name>[,name=<export-name>][,writable=on|off… 79 …--export [type=]vhost-user-blk,id=<id>,node-name=<node-name>,addr.type=unix,addr.path=<socket-path… 80 …--export [type=]vhost-user-blk,id=<id>,node-name=<node-name>,addr.type=fd,addr.str=<fd>[,writable=… 81 …--export [type=]fuse,id=<id>,node-name=<node-name>,mountpoint=<file>[,growable=on|off][,writable=o… 82 …--export [type=]vduse-blk,id=<id>,node-name=<node-name>,name=<vduse-name>[,writable=on|off][,num-q… 84 is a block export definition. ``node-name`` is the block node that should be 90 ``node-name``). ``bitmap`` is the name of a dirty bitmap reachable from the 91 block node, so the NBD client can use NBD_OPT_SET_META_CONTEXT with the [all …]
|
/openbmc/u-boot/include/dm/ |
H A D | of_extra.h | 38 * @param node Reference to node to read 39 * @param entry Place to put offset and size of this node 42 int ofnode_read_fmap_entry(ofnode node, struct fmap_entry *entry); 45 * ofnode_decode_region() - Decode a memory region from a node 47 * Look up a property in a node which contains a memory region address and 53 * @param node ofnode to examine 59 int ofnode_decode_region(ofnode node, const char *prop_name, fdt_addr_t *basep, 76 * @param node ofnode containing the properties (-1 for /config)
|
/openbmc/u-boot/board/samsung/common/ |
H A D | board.c | 179 int node; in decode_sromc() local 181 node = fdtdec_next_compatible(blob, 0, COMPAT_SAMSUNG_EXYNOS5_SROMC); in decode_sromc() 182 if (node < 0) { in decode_sromc() 183 debug("Could not find SROMC node\n"); in decode_sromc() 184 return node; in decode_sromc() 187 config->bank = fdtdec_get_int(blob, node, "bank", 0); in decode_sromc() 188 config->width = fdtdec_get_int(blob, node, "width", 2); in decode_sromc() 190 err = fdtdec_get_int_array(blob, node, "srom-timing", config->timing, in decode_sromc() 207 int node; in board_eth_init() local 209 node = decode_sromc(gd->fdt_blob, &config); in board_eth_init() [all …]
|
/openbmc/qemu/docs/devel/ |
H A D | luks-detached-header.rst | 67 There are two children of the root node: a file and a header. 68 Data from the disk payload is stored in the file node. The 69 LUKS header and key material are located in the header node, 75 Root node | foo[luks] | 81 Child node |payload-format[qcow2]| |header-format[raw]| 87 Child node |payload-protocol[file]| |header-protocol[file]| 118 "node-name":"libvirt-1-storage"}' \ 119 -blockdev '{"node-name":"libvirt-1-format","read-only":false, \ 122 "node-name":"libvirt-2-storage"}' \ 123 -blockdev '{"node-name":"libvirt-2-format","read-only":false, \ [all …]
|
/openbmc/u-boot/drivers/core/ |
H A D | util.c | 25 struct list_head *node; in list_count_items() local 28 list_for_each(node, head) in list_count_items() 58 bool dm_ofnode_pre_reloc(ofnode node) in dm_ofnode_pre_reloc() argument 60 if (ofnode_read_bool(node, "u-boot,dm-pre-reloc")) in dm_ofnode_pre_reloc() 64 if (ofnode_read_bool(node, "u-boot,dm-tpl")) in dm_ofnode_pre_reloc() 67 if (ofnode_read_bool(node, "u-boot,dm-spl")) in dm_ofnode_pre_reloc() 74 if (ofnode_read_bool(node, "u-boot,dm-spl") || in dm_ofnode_pre_reloc() 75 ofnode_read_bool(node, "u-boot,dm-tpl")) in dm_ofnode_pre_reloc()
|
/openbmc/qemu/include/hw/xen/ |
H A D | xen-legacy-backend.h | 23 int xenstore_write_be_str(struct XenLegacyDevice *xendev, const char *node, 25 int xenstore_write_be_int(struct XenLegacyDevice *xendev, const char *node, 27 int xenstore_write_be_int64(struct XenLegacyDevice *xendev, const char *node, 29 char *xenstore_read_be_str(struct XenLegacyDevice *xendev, const char *node); 30 int xenstore_read_be_int(struct XenLegacyDevice *xendev, const char *node, 32 char *xenstore_read_fe_str(struct XenLegacyDevice *xendev, const char *node); 33 int xenstore_read_fe_int(struct XenLegacyDevice *xendev, const char *node, 35 int xenstore_read_fe_uint64(struct XenLegacyDevice *xendev, const char *node,
|
/openbmc/pyphosphor/obmc/dbuslib/ |
H A D | introspection.py | 32 return [x.attrib['name'] for x in self.data.findall('node')] 43 for node in self.data: 44 if node.tag not in ['method', 'signal']: 46 if not self.tag_match(node.tag): 49 node, self.tag_match, self.intf_match) 51 iface[node.tag][n] = element 62 for node in self.data: 63 if node.tag == 'interface': 65 node, self.tag_match, self.intf_match) 70 elif node.tag == 'node':
|