Home
last modified time | relevance | path

Searched refs:get_phandle (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Virtualization/libs/libfdt/tests/
Dapi_test.rs221 assert_eq!(node.get_phandle(), Ok(Phandle::new(0xFF))); in node_get_phandle()
225 assert_eq!(node.get_phandle(), Ok(Phandle::new(0x22))); in node_get_phandle()
229 assert_eq!(node.get_phandle(), Ok(None)); in node_get_phandle()
/packages/modules/Virtualization/pvmfw/src/
Ddevice_assignment.rs344 let Some(phandle) = node.get_phandle()? else { in parse_physical_iommus()
431 if let Some(phandle) = node.get_phandle()? { in collect_overlayable_nodes_with_phandle()
868 let phandle = dtbo_node.get_phandle()?.ok_or(DeviceAssignmentError::InvalidDtbo)?; in parse()
917 let Some(phandle) = compatible.get_phandle()? else { in parse_pviommus()
1044 let phandle = node.as_node().get_phandle()?.ok_or(DeviceAssignmentError::Internal)?; in patch_pviommus()
Dfdt.rs286 let phandle = cpu.get_phandle()?.ok_or(FdtError::NotFound)?;
393 let phandle = cur.as_node().get_phandle()?.unwrap(); in patch_cpus()
/packages/modules/Virtualization/libs/libfdt/src/
Dlib.rs321 pub fn get_phandle(&self) -> Result<Option<Phandle>> { in get_phandle() method