Home
last modified time | relevance | path

Searched refs:patch_source (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/chrome/installer/setup/
Darchive_patch_helper.h36 const base::FilePath& patch_source,
47 const base::FilePath& patch_source,
66 void set_patch_source(const base::FilePath& patch_source) { in set_patch_source() argument
67 patch_source_ = patch_source; in set_patch_source()
69 const base::FilePath& patch_source() const { in patch_source() function
Darchive_patch_helper.cc17 const base::FilePath& patch_source, in ArchivePatchHelper() argument
21 patch_source_(patch_source), in ArchivePatchHelper()
30 const base::FilePath& patch_source, in UncompressAndPatch() argument
33 patch_source, target); in UncompressAndPatch()
Dsetup_util_unittest.cc375 base::FilePath patch_source(installer::FindArchiveToPatch( in TEST_F() local
377 EXPECT_EQ(GetProductVersionArchivePath().value(), patch_source.value()); in TEST_F()
385 base::FilePath patch_source(installer::FindArchiveToPatch( in TEST_F() local
387 EXPECT_EQ(GetMaxVersionArchivePath().value(), patch_source.value()); in TEST_F()
391 patch_source = installer::FindArchiveToPatch( in TEST_F()
393 EXPECT_EQ(GetMaxVersionArchivePath().value(), patch_source.value()); in TEST_F()
403 base::FilePath patch_source(installer::FindArchiveToPatch( in TEST_F() local
405 EXPECT_EQ(base::FilePath::StringType(), patch_source.value()); in TEST_F()
Dsetup_util.cc175 base::FilePath patch_source; in FindArchiveToPatch() local
180 patch_source = installer_state.GetInstallerDirectory(product->version()) in FindArchiveToPatch()
182 if (base::PathExists(patch_source)) in FindArchiveToPatch()
183 return patch_source; in FindArchiveToPatch()
188 patch_source = installer_state.GetInstallerDirectory(*version) in FindArchiveToPatch()
190 if (base::PathExists(patch_source)) in FindArchiveToPatch()
191 return patch_source; in FindArchiveToPatch()
Dsetup_main.cc161 base::FilePath patch_source(installer::FindArchiveToPatch(original_state, in UncompressAndPatchChromeArchive() local
163 if (patch_source.empty()) { in UncompressAndPatchChromeArchive()
171 archive_helper->set_patch_source(patch_source); in UncompressAndPatchChromeArchive()
/external/chromium_org/courgette/
Densemble_unittest.cc35 courgette::SourceStream patch_source; in TestEnsemble() local
36 patch_source.Init(patch_sink.Buffer(), patch_sink.Length()); in TestEnsemble()
40 status = courgette::ApplyEnsemblePatch(&source, &patch_source, &patch_result); in TestEnsemble()