Home
last modified time | relevance | path

Searched refs:patch_path (Results 1 – 10 of 10) sorted by relevance

/external/zucchini/
Dzucchini_integration.cc181 const base::FilePath& patch_path, in Generate() argument
190 File patch_file(patch_path, File::FLAG_CREATE_ALWAYS | File::FLAG_READ | in Generate()
194 const FileNames file_names(old_path, new_path, patch_path); in Generate()
210 const base::FilePath& patch_path, in Apply() argument
216 File patch_file(patch_path, File::FLAG_OPEN | File::FLAG_READ | in Apply()
221 const FileNames file_names(old_path, new_path, patch_path); in Apply()
230 status::Code VerifyPatch(const base::FilePath& patch_path) { in VerifyPatch() argument
232 File patch_file(patch_path, File::FLAG_OPEN | File::FLAG_READ | in VerifyPatch()
234 return VerifyPatchCommon(std::move(patch_file), patch_path); in VerifyPatch()
Dzucchini_integration.h42 const base::FilePath& patch_path,
62 const base::FilePath& patch_path,
74 status::Code VerifyPatch(const base::FilePath& patch_path);
/external/puffin/src/
Dpatching_unittest.cc137 string patch_path; in TestPatching() local
138 ASSERT_TRUE(MakeTempFile(&patch_path, nullptr)); in TestPatching()
139 ScopedPathUnlinker scoped_unlinker(patch_path); in TestPatching()
141 {bsdiff::CompressorType::kBZ2}, patch_path, &patch_out)); in TestPatching()
/external/zucchini/aosp/include/components/zucchini/
Dzucchini_integration.h42 const base::FilePath& patch_path,
62 const base::FilePath& patch_path,
74 status::Code VerifyPatch(const base::FilePath& patch_path);
/external/toolchain-utils/llvm_tools/
Dpatch_utils.py161 def git_apply(patch_path: Path) -> List[Union[str, Path]]:
163 return ["git", "apply", patch_path]
166 def git_am(patch_path: Path) -> List[Union[str, Path]]:
168 return ["git", "am", "--3way", patch_path]
171 def gnu_patch(root_dir: Path, patch_path: Path) -> List[Union[str, Path]]:
182 patch_path,
251 with self.patch_path().open(encoding="utf-8") as f:
255 def patch_path(self) -> Path: member in PatchEntry
277 abs_patch_path = self.patch_path().absolute()
Dupdate_chromeos_llvm_hash.py517 for patch_path in patch_info.disabled_patches:
518 commit_messages.append(os.path.basename(patch_path))
524 for patch_path in patch_info.removed_patches:
525 commit_messages.append(os.path.basename(patch_path))
Dpatch_manager.py225 return (str(pe.patch_path()) for pe in patches)
Dget_patch.py219 _write_patch(pe.title(), contents, pe.patch_path())
253 _write_patch(pe.title(), contents, pe.patch_path())
Dpatch_utils_unittest.py75 entry.patch_path(), Path("/home/dir") / d["rel_patch_path"]
/external/python/pyfakefs/
DCHANGES.md936 * parameter `patch_path` has been removed from `UnitTest` and `Patcher`,