Searched refs:untrusted_props (Results 1 – 3 of 3) sorted by relevance
/packages/modules/Virtualization/virtualizationmanager/src/ |
D | dt_overlay.rs | 55 untrusted_props: &[(&'a CStr, &'a [u8])], in create_device_tree_overlay() 58 if dt_path.is_none() && untrusted_props.is_empty() && trusted_props.is_empty() { in create_device_tree_overlay() 77 if !untrusted_props.is_empty() { in create_device_tree_overlay() 81 for (name, value) in untrusted_props { in create_device_tree_overlay()
|
D | aidl.rs | 719 let mut untrusted_props = Vec::with_capacity(2); in maybe_create_device_tree_overlay() localVariable 722 untrusted_props.push((cstr!("instance-id"), &instance_id[..])); in maybe_create_device_tree_overlay() 727 untrusted_props.push((cstr!("defer-rollback-protection"), &[])) in maybe_create_device_tree_overlay() 732 || !untrusted_props.is_empty() in maybe_create_device_tree_overlay() 738 create_device_tree_overlay(&mut data, host_ref_dt, &untrusted_props, &trusted_props) in maybe_create_device_tree_overlay()
|
/packages/modules/Virtualization/pvmfw/src/ |
D | fdt.rs | 924 untrusted_props: BTreeMap<CString, Vec<u8>>, field 1084 let untrusted_props = parse_untrusted_props(fdt).map_err(|e| { in parse_device_tree() localVariable 1088 validate_untrusted_props(&untrusted_props).map_err(|e| { in parse_device_tree() 1109 untrusted_props, in parse_device_tree() 1173 patch_untrusted_props(fdt, &info.untrusted_props).map_err(|e| { in patch_device_tree()
|