Home
last modified time | relevance | path

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

/packages/modules/Virtualization/pvmfw/src/
Dfdt.rs88 if let (Some(addr), Some(size)) = (config.getprop_u32(addr)?, config.getprop_u32(size)?) { in read_kernel_range_from()
106 if let (Some(start), Some(end)) = (chosen.getprop_u32(start)?, chosen.getprop_u32(end)?) { in read_initrd_range_from()
252 let cpu = core.getprop_u32(cstr!("cpu"))?.ok_or(FdtError::NotFound)?; in read_cpu_map_from()
273 let cpu_capacity = cpu.getprop_u32(cstr!("capacity-dmips-mhz"))?;
274 let opp_phandle = cpu.getprop_u32(cstr!("operating-points-v2"))?;
1282 if let Some(value) = node.getprop_u32(debug_feature_name)? { in has_common_debug_policy()
Ddevice_assignment.rs603 .getprop_u32(cstr!("#iommu-cells"))? in parse()
610 let id = node.getprop_u32(cstr!("id"))?.ok_or(DeviceAssignmentError::InvalidPvIommu)?; in parse()
673 let Some(iommu_cells) = node.getprop_u32(cstr!("#iommu-cells"))? else { in parse()
718 let Some(phandle) = node.getprop_u32(cstr!("android,pvmfw,target"))? else { in parse()
1211 .getprop_u32(cstr!("id"))? in parse()
1229 if let Ok(Some(id)) = pviommu.getprop_u32(cstr!("id")) { in collect_pviommus()
1382 let phandle = rng_node.getprop_u32(cstr!("phandle")).unwrap(); in device_info_patch()
/packages/modules/Virtualization/libs/libfdt/src/
Dlib.rs230 pub fn getprop_u32(&self, name: &CStr) -> Result<Option<u32>> { in getprop_u32() method
323 if let Some(prop) = self.getprop_u32(cstr!("phandle"))? { in get_phandle()
325 } else if let Some(prop) = self.getprop_u32(cstr!("linux,phandle"))? { in get_phandle()
/packages/modules/Virtualization/virtualizationmanager/src/
Ddebug_config.rs94 match node.getprop_u32(prop_name) { in get_fdt_prop_bool()