Home
last modified time | relevance | path

Searched refs:untrusted_props (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Virtualization/android/virtmgr/src/
Ddt_overlay.rs54 untrusted_props: &[(&'a CStr, &'a [u8])], in create_device_tree_overlay()
57 if dt_path.is_none() && untrusted_props.is_empty() && trusted_props.is_empty() { in create_device_tree_overlay()
76 if !untrusted_props.is_empty() { in create_device_tree_overlay()
80 for (name, value) in untrusted_props { in create_device_tree_overlay()
Daidl.rs1145 let mut untrusted_props = Vec::with_capacity(2); localVariable
1147 untrusted_props.push((c"instance-id", &instance_id[..]));
1152 untrusted_props.push((c"defer-rollback-protection", &[]));
1164 || !untrusted_props.is_empty()
1170 create_device_tree_overlay(&mut data, host_ref_dt, &untrusted_props, &trusted_props)
/packages/modules/Virtualization/guest/pvmfw/src/
Dfdt.rs1099 untrusted_props: BTreeMap<CString, Vec<u8>>, field
1274 let untrusted_props = parse_untrusted_props(fdt).map_err(|e| { in parse_device_tree() localVariable
1278 validate_untrusted_props(&untrusted_props).map_err(|e| { in parse_device_tree()
1298 untrusted_props, in parse_device_tree()
1367 patch_untrusted_props(fdt, &info.untrusted_props).map_err(|e| { in patch_device_tree()