Home
last modified time | relevance | path

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

/packages/modules/Virtualization/libs/libfdt/src/
Dlib.rs229 pub fn getprop_u32(&self, name: &CStr) -> Result<Option<u32>> { in getprop_u32() method
322 if let Some(prop) = self.getprop_u32(c"phandle")? { in get_phandle()
324 } else if let Some(prop) = self.getprop_u32(c"linux,phandle")? { in get_phandle()
/packages/modules/Virtualization/guest/pvmfw/src/
Ddevice_assignment.rs608 node.getprop_u32(c"#iommu-cells")?.ok_or(DeviceAssignmentError::InvalidPvIommu)?; in parse()
614 let id = node.getprop_u32(c"id")?.ok_or(DeviceAssignmentError::InvalidPvIommu)?; in parse()
681 let Some(iommu_cells) = node.getprop_u32(c"#iommu-cells")? else { in parse()
726 let Some(phandle) = node.getprop_u32(c"android,pvmfw,target")? else { in parse()
1262 .getprop_u32(c"id")? in parse()
1280 if let Ok(Some(id)) = pviommu.getprop_u32(c"id") { in collect_pviommus()
1449 let phandle = rng_node.getprop_u32(c"phandle").unwrap(); in device_info_patch()
Dfdt.rs341 let cpu = core.getprop_u32(c"cpu")?.ok_or(FdtError::NotFound)?; in read_cpu_map_from()
362 let cpu_capacity = cpu.getprop_u32(c"capacity-dmips-mhz")?;
363 let opp_phandle = cpu.getprop_u32(c"operating-points-v2")?;
1478 if let Some(value) = node.getprop_u32(debug_feature_name)? { in has_common_debug_policy()
/packages/modules/Virtualization/android/virtmgr/src/
Ddebug_config.rs96 match node.getprop_u32(prop_name) { in get_fdt_prop_bool()