Searched refs:overlay_modify2 (Results 1 – 1 of 1) sorted by relevance
588 let overlay_modify2 = include_bytes!("../test/data/overlay_2_by_path.dtbo").to_vec(); in test_fdt_multioverlay_apply_by_path() localVariable590 let mut fdt_buf = vec![0u8; base.len() + overlay_modify.len() + overlay_modify2.len()]; in test_fdt_multioverlay_apply_by_path()593 fdt.multioverlay_apply(&[&overlay_modify[..] as _, &overlay_modify2[..] as _]).unwrap(); in test_fdt_multioverlay_apply_by_path()603 let overlay_modify2 = include_bytes!("../test/data/overlay_2_by_path.dtbo").to_vec(); in test_fdt_multioverlay_apply_by_path_separately() localVariable605 let mut fdt_buf = vec![0u8; base.len() + overlay_modify.len() + overlay_modify2.len()]; in test_fdt_multioverlay_apply_by_path_separately()609 fdt.multioverlay_apply(&[&overlay_modify2[..] as _]).unwrap(); in test_fdt_multioverlay_apply_by_path_separately()622 let overlay_modify2 = include_bytes!("../test/data/overlay_2_by_reference.dtbo").to_vec(); in test_fdt_multioverlay_apply_by_reference() localVariable624 let mut fdt_buf = vec![0u8; base.len() + overlay_modify.len() + overlay_modify2.len()]; in test_fdt_multioverlay_apply_by_reference()627 fdt.multioverlay_apply(&[&overlay_modify[..] as _, &overlay_modify2[..] as _]).unwrap(); in test_fdt_multioverlay_apply_by_reference()640 let overlay_modify2 = include_bytes!("../test/data/overlay_2_by_reference.dtbo").to_vec(); in test_fdt_multioverlay_apply_by_reference_separately() localVariable[all …]