Home
last modified time | relevance | path

Searched defs:Phandle (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Virtualization/libs/libfdt/src/
Dsafe_types.rs86 pub struct Phandle(u32); struct
88 impl Phandle { implementation
110 impl TryFrom<u32> for Phandle { implementation
118 impl TryFrom<FdtRawResult> for Phandle { implementation
Dlib.rs321 pub fn get_phandle(&self) -> Result<Option<Phandle>> { in get_phandle()
746 pub fn max_phandle(&self) -> Result<Phandle> { in max_phandle()
Dlibfdt.rs290 fn find_max_phandle(&self) -> Result<Phandle> { in find_max_phandle()
/packages/modules/Virtualization/pvmfw/src/
Ddevice_assignment.rs341 fn parse_physical_iommus(physical_node: &FdtNode) -> Result<BTreeMap<Phandle, PhysIommu>> { in parse_physical_iommus()
358 fn validate_physical_iommus(phys_iommus: &BTreeMap<Phandle, PhysIommu>) -> Result<()> { in validate_physical_iommus()
367 physical_devices: &BTreeMap<Phandle, PhysicalDeviceInfo>, in validate_physical_devices()
385 phys_iommus: &BTreeMap<Phandle, PhysIommu>, in parse_physical_devices_with_iommus()
386 ) -> Result<BTreeMap<Phandle, PhysicalDeviceInfo>> { in parse_physical_devices_with_iommus()
401 fn parse_physical_devices(&self) -> Result<BTreeMap<Phandle, PhysicalDeviceInfo>> { in parse_physical_devices()
421 fn collect_overlayable_nodes_with_phandle(&self) -> Result<BTreeMap<Phandle, DtPathTokens>> { in collect_overlayable_nodes_with_phandle()
440 ) -> Result<BTreeMap<DtPathTokens, Vec<Phandle>>> { in collect_phandle_references_from_overlayable_nodes()
695 phys_iommus: &BTreeMap<Phandle, PhysIommu>, in parse_iommus()
717 fn parse(node: &FdtNode, phys_iommus: &BTreeMap<Phandle, PhysIommu>) -> Result<Option<Self>> { in parse()
[all …]
Dfdt.rs236 fn read_cpu_map_from(fdt: &Fdt) -> libfdt::Result<Option<BTreeMap<Phandle, (usize, usize)>>> { in read_cpu_map_from()