Home
last modified time | relevance | path

Searched defs:FdtNode (Results 1 – 3 of 3) sorted by relevance

/external/crosvm/cros_fdt/src/
Dfdt.rs323 pub struct FdtNode { struct
327 pub(crate) subnodes: IndexMap<String, FdtNode>, argument
330 impl FdtNode { implementation
336 subnodes: IndexMap<String, FdtNode>, in new() argument
537 pub fn subnode(&self, name: &str) -> Option<&FdtNode> { in subnode()
547 pub fn subnode_mut(&mut self, name: &str) -> Result<&mut FdtNode> { in subnode_mut()
753 pub fn root_mut(&mut self) -> &mut FdtNode { in root_mut()
762 pub fn get_node<T: TryInto<Path>>(&self, path: T) -> Option<&FdtNode> { in get_node()
777 pub fn get_node_mut<T: TryInto<Path>>(&mut self, path: T) -> Option<&mut FdtNode> { in get_node_mut()
Doverlay.rs49 fn collect_phandle_refs_from_props(fixup_node: &FdtNode, tree_node: &FdtNode) -> Result<Vec<u32>> { in collect_phandle_refs_from_props()
66 root: &FdtNode, in collect_all_references_by_path()
67 local_fixups_node: &FdtNode, in collect_all_references_by_path()
189 fn offset_phandle_prop(node: &mut FdtNode, propname: &str, delta: u32) -> Result<()> { in offset_phandle_prop()
336 fn overlay_node_pair(base_node: &mut FdtNode, overlay_node: &FdtNode) -> Result<()> { in overlay_node_pair()
348 fn overlay_fragment(fragment_node: &FdtNode, base: &mut Fdt) -> Result<()> { in overlay_fragment()
/external/crosvm/hypervisor/src/gunyah/
Daarch64.rs35 parent: &mut FdtNode, in fdt_create_shm_device()