Searched refs:node_path (Results 1 – 3 of 3) sorted by relevance
/packages/modules/Virtualization/virtualizationmanager/src/ |
D | debug_config.rs | 36 node_path: CString, field 41 fn new(node_path: &str, prop_name: &str) -> Result<Self, NulError> { in new() 42 Ok(Self { node_path: CString::new(node_path)?, prop_name: CString::new(prop_name)? }) in new() 50 self.node_path.to_str().unwrap(), in to_path() 85 let (node_path, prop_name) = (&path.node_path, &path.prop_name); in get_fdt_prop_bool() 86 let node = match fdt.node(node_path) { in get_fdt_prop_bool()
|
/packages/modules/Virtualization/libs/libfdt/tests/ |
D | api_test.rs | 262 let node_path = cstr!("/node_z/node_zz"); in node_add_subnode_with_namelen() localVariable 267 let node = fdt.node(node_path).unwrap().unwrap(); in node_add_subnode_with_namelen() 270 let node = fdt.node_mut(node_path).unwrap().unwrap(); in node_add_subnode_with_namelen() 273 let node = fdt.node(node_path).unwrap().unwrap(); in node_add_subnode_with_namelen() 277 let node_path = node_path.to_str().unwrap(); in node_add_subnode_with_namelen() localVariable
|
/packages/modules/Virtualization/pvmfw/src/ |
D | device_assignment.rs | 733 node_path: CString, field 863 let node_path = vm_dtbo.locate_overlay_target_path(dtbo_node_path, &dtbo_node)?; in parse() localVariable 865 let Some(node) = fdt.node(&node_path)? else { return Ok(None) }; in parse() 883 Ok(Some(Self { node_path, reg, interrupts, iommus })) in parse() 887 let mut dst = fdt.node_mut(&self.node_path)?.unwrap(); in patch() 1288 node_path: CString::new("/bus0/backlight").unwrap(), in device_info_assigned_info_without_iommus() 1311 node_path: CString::new("/rng").unwrap(), in device_info_assigned_info()
|