Home
last modified time | relevance | path

Searched refs:VerifiedFileEditor (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/modules/Virtualization/authfs/src/fsverity/
H A Deditor.rs80 pub struct VerifiedFileEditor<F: ReadByChunk + RandomWrite> { struct
85 impl<F: ReadByChunk + RandomWrite> VerifiedFileEditor<F> { implementation
345 let file = VerifiedFileEditor::new(InMemoryEditor::new()); in test_verified_writer_no_write()
357 let file = VerifiedFileEditor::new(InMemoryEditor::new()); in test_verified_writer_from_zero()
366 let file = VerifiedFileEditor::new(InMemoryEditor::new()); in test_verified_writer_from_zero()
375 let file = VerifiedFileEditor::new(InMemoryEditor::new()); in test_verified_writer_from_zero()
388 let file = VerifiedFileEditor::new(InMemoryEditor::new()); in test_verified_writer_unaligned()
397 let file = VerifiedFileEditor::new(InMemoryEditor::new()); in test_verified_writer_unaligned()
512 let file = VerifiedFileEditor::new(writer); in test_verified_writer_failed_read_back()
574 let file = VerifiedFileEditor::new(writer); in test_resize_to_shrink_with_read_failure()
[all …]
/aosp12/packages/modules/Virtualization/authfs/src/
H A Dfsverity.rs23 pub use editor::VerifiedFileEditor;
H A Dmain.rs47 use fsverity::{VerifiedFileEditor, VerifiedFileReader};
257 Ok(FileConfig::RemoteVerifiedNewFile { editor: VerifiedFileEditor::new(remote_file) }) in new_config_remote_new_verified_file()
H A Dfusefs.rs41 use crate::fsverity::{VerifiedFileEditor, VerifiedFileReader};
68 RemoteVerifiedNewFile { editor: VerifiedFileEditor<RemoteFileEditor> },