HomeSort by relevance Sort by last modified time
    Searched refs:fs_interface (Results 1 - 6 of 6) sorted by null

  /system/update_engine/payload_generator/
payload_generation_config.cc 48 fs_interface.reset();
50 fs_interface = Ext2Filesystem::CreateFromFile(path);
53 if (fs_interface) {
54 TEST_AND_RETURN_FALSE(fs_interface->GetBlockSize() == kBlockSize);
60 fs_interface = MapfileFilesystem::CreateFromFile(path, mapfile_path);
61 if (fs_interface) {
62 TEST_AND_RETURN_FALSE(fs_interface->GetBlockSize() == kBlockSize);
69 fs_interface = RawFilesystem::Create(
payload_generation_config.h 62 // |fs_interface|. Returns whether opening the filesystem worked.
84 std::unique_ptr<FilesystemInterface> fs_interface; member in struct:chromeos_update_engine::PartitionConfig
generate_delta_main.cc 568 if (part.fs_interface && part.fs_interface->LoadSettings(&store) &&
deflate_utils.cc 255 part.fs_interface->GetFiles(&tmp_files);
delta_diff_utils.cc 288 if (old_part.fs_interface) {
296 TEST_AND_RETURN_FALSE(new_part.fs_interface);
369 if (old_part.fs_interface) {
    [all...]
delta_diff_utils_unittest.cc 77 part->fs_interface.reset(new FakeFilesystem(block_size, size / block_size));

Completed in 65 milliseconds