Home
last modified time | relevance | path

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

/aosp_15_r20/external/zucchini/
H A 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()
H A Dzucchini_integration.h42 const base::FilePath& patch_path,
62 const base::FilePath& patch_path,
74 status::Code VerifyPatch(const base::FilePath& patch_path);
/aosp_15_r20/external/toolchain-utils/llvm_tools/
H A 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()
H A 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))
H A Dget_patch.py219 _write_patch(pe.title(), contents, pe.patch_path())
253 _write_patch(pe.title(), contents, pe.patch_path())
H A Dpatch_manager.py225 return (str(pe.patch_path()) for pe in patches)
H A Dpatch_utils_unittest.py75 entry.patch_path(), Path("/home/dir") / d["rel_patch_path"]
/aosp_15_r20/external/puffin/src/
H A 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()
/aosp_15_r20/external/zucchini/aosp/include/components/zucchini/
H A Dzucchini_integration.h42 const base::FilePath& patch_path,
62 const base::FilePath& patch_path,
74 status::Code VerifyPatch(const base::FilePath& patch_path);
/aosp_15_r20/cts/apps/CameraITS/tests/scene7/
H A Dtest_multi_camera_switch.py221 patch_path = img_path.with_name(
223 image_processing_utils.write_image(rectangle_patch/_CH_FULL_SCALE, patch_path)
311 patch_path = img_path.with_name(
314 image_processing_utils.write_image(patch/_CH_FULL_SCALE, patch_path)
/aosp_15_r20/development/tools/cargo_embargo/src/
H A Dmain.rs947 fn apply_patch_file(output_path: &Path, patch_path: &Path) -> Result<()> { in apply_patch_file()
952 .arg(patch_path) in apply_patch_file()
969 patch_path: Option<&Path>, in write_format_android_bp()
983 if let Some(patch_path) = patch_path { in write_format_android_bp()
984 apply_patch_file(bp_path, patch_path)?; in write_format_android_bp()
/aosp_15_r20/tools/test/connectivity/acts/framework/tests/
Dacts_relay_controller_test.py312 patch_path = 'acts.controllers.relay_lib.sain_smart_board.urlopen'
313 with patch(patch_path) as urlopen:
321 patch_path = 'acts.controllers.relay_lib.sain_smart_board.urlopen'
322 with patch(patch_path) as urlopen:
/aosp_15_r20/external/python/pyfakefs/
DCHANGES.md725 * parameter `patch_path` has been removed from `UnitTest` and `Patcher`,