Home
last modified time | relevance | path

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

/packages/modules/Virtualization/virtualizationmanager/fsfdt/src/
Dlib.rs27 fn from_fs(fs_path: &Path, fdt_buffer: &'a mut [u8]) -> Result<&'a mut Self>; in from_fs() method
34 fn from_fs(fs_path: &Path, fdt_buffer: &'a mut [u8]) -> Result<&'a mut Fdt> { in from_fs() method
127 let fdt = Fdt::from_fs(fs_path, &mut data).unwrap(); in test_from_fs()
129 let expected = Dts::from_fs(fs_path).unwrap(); in test_from_fs()
Dmain.rs39 let fdt = Fdt::from_fs(&opt.fs_path, &mut data).unwrap(); in main()
/packages/modules/Virtualization/tests/libs/libdts/src/
Dlib.rs32 pub fn from_fs(path: &Path) -> Result<Self> { in from_fs() method