HomeSort by relevance Sort by last modified time
    Searched refs:patch_file (Results 1 - 25 of 36) sorted by null

1 2

  /bootable/recovery/tests/component/
imgdiff_test.cpp 128 TemporaryFile patch_file; local
130 "imgdiff", src_file.path, tgt_file.path, patch_file.path,
136 ASSERT_TRUE(android::base::ReadFileToString(patch_file.path, &patch));
173 TemporaryFile patch_file; local
175 "imgdiff", "-z", src_file.path, tgt_file.path, patch_file.path,
185 ASSERT_TRUE(android::base::ReadFileToString(patch_file.path, &patch));
222 TemporaryFile patch_file; local
224 "imgdiff", "-z", src_file.path, tgt_file.path, patch_file.path,
234 ASSERT_TRUE(android::base::ReadFileToString(patch_file.path, &patch));
274 TemporaryFile patch_file; local
321 TemporaryFile patch_file; local
364 TemporaryFile patch_file; local
399 TemporaryFile patch_file; local
430 TemporaryFile patch_file; local
467 TemporaryFile patch_file; local
503 TemporaryFile patch_file; local
539 TemporaryFile patch_file; local
578 TemporaryFile patch_file; local
621 TemporaryFile patch_file; local
787 TemporaryFile patch_file; local
853 TemporaryFile patch_file; local
913 TemporaryFile patch_file; local
955 TemporaryFile patch_file; local
1000 TemporaryFile patch_file; local
1054 TemporaryFile patch_file; local
    [all...]
applypatch_test.cpp 290 TemporaryFile patch_file; local
294 patch_file.path, nullptr));
302 std::string patch_arg = boot_img_sha1 + ":" + patch_file.path;
updater_test.cpp 456 TemporaryFile patch_file; local
459 tgt_content.size(), patch_file.path, nullptr));
461 ASSERT_TRUE(android::base::ReadFileToString(patch_file.path, &patch_content));
    [all...]
  /external/v8/tools/
find-commit-for-patch.py 16 parser.add_argument("patch_file", help="Patch file to match")
30 def FindFilesInPatch(patch_file):
33 with open(patch_file) as patch:
86 files = FindFilesInPatch(args.patch_file)
  /external/bsdiff/
bspatch.cc 153 std::unique_ptr<FileInterface> patch_file = local
155 if (!patch_file) {
160 patch_file->GetSize(&patch_size);
162 if (!ReadAll(patch_file, patch.data(), patch_size)) {
166 patch_file.reset();
  /external/toolchain-utils/fdo_scripts/
vanilla_vs_fdo.py 18 def __init__(self, dir_to_patch, patch_file):
20 self._patch_file = patch_file
21 self._base_patch_command = 'patch -p0 %%s < %s' % patch_file
  /external/v8/tools/release/
git_recipes.py 200 def GitApplyPatch(self, patch_file, reverse=False, **kwargs):
201 assert patch_file
205 args.append(Quoted(patch_file))
common_includes.py 611 def WaitForResolvingConflicts(self, patch_file):
626 def ApplyPatch(self, patch_file, revert=False):
628 self.GitApplyPatch(patch_file, revert)
630 self.WaitForResolvingConflicts(patch_file)
  /hardware/qcom/bt/msm8909/libbt-vendor/src/
hw_ar3k.c 73 char patch_file[PATH_MAX]; variable
370 #define PATCH_FILE "RamPatch.txt"
381 snprintf(path, MAXPATHLEN, "%s%x/%s", FW_PATH, rom_version, PATCH_FILE);
972 char patch_file[PATH_MAX]; local
997 get_patch_file_name(dev_type, rom_version, build_version, patch_file);
1021 if (patch_file[0] == '\0')
1024 stream = fopen(patch_file, "r");
    [all...]
  /hardware/qcom/bt/msm8909w_3100/libbt-vendor/src/
hw_ar3k.c 73 char patch_file[PATH_MAX]; variable
372 #define PATCH_FILE "RamPatch.txt"
383 snprintf(path, MAXPATHLEN, "%s%x/%s", FW_PATH, rom_version, PATCH_FILE);
976 char patch_file[PATH_MAX]; local
1001 get_patch_file_name(dev_type, rom_version, build_version, patch_file);
1025 if (patch_file[0] == '\0')
1028 stream = fopen(patch_file, "r");
    [all...]
  /hardware/qcom/bt/msm8992/libbt-vendor/src/
hw_ar3k.c 73 char patch_file[PATH_MAX]; variable
370 #define PATCH_FILE "RamPatch.txt"
381 snprintf(path, MAXPATHLEN, "%s%x/%s", FW_PATH, rom_version, PATCH_FILE);
972 char patch_file[PATH_MAX]; local
997 get_patch_file_name(dev_type, rom_version, build_version, patch_file);
1021 if (patch_file[0] == '\0')
1024 stream = fopen(patch_file, "r");
    [all...]
  /hardware/qcom/bt/msm8996/libbt-vendor/src/
hw_ar3k.c 75 char patch_file[PATH_MAX]; variable
374 #define PATCH_FILE "RamPatch.txt"
385 snprintf(path, MAXPATHLEN, "%s%x/%s", FW_PATH, rom_version, PATCH_FILE);
978 char patch_file[PATH_MAX]; local
1003 get_patch_file_name(dev_type, rom_version, build_version, patch_file);
1027 if (patch_file[0] == '\0')
1030 stream = fopen(patch_file, "r");
    [all...]
  /hardware/qcom/bt/msm8998/libbt-vendor/src/
hw_ar3k.c 77 char patch_file[PATH_MAX]; variable
376 #define PATCH_FILE "RamPatch.txt"
387 snprintf(path, MAXPATHLEN, "%s%x/%s", FW_PATH, rom_version, PATCH_FILE);
980 char patch_file[PATH_MAX]; local
1005 get_patch_file_name(dev_type, rom_version, build_version, patch_file);
1029 if (patch_file[0] == '\0')
1032 stream = fopen(patch_file, "r");
    [all...]
  /external/toolchain-utils/binary_search_tool/
binary_search_perforce.py 352 patch_file = '/home/asharif/triage_tool/%d-%d.patch' % (pr[0], pr[1])
353 f = open(patch_file)
360 command += '; patch -p2 < %s' % patch_file
  /system/update_engine/scripts/update_payload/
applier.py 391 with tempfile.NamedTemporaryFile(delete=False) as patch_file:
392 patch_file_name = patch_file.name
393 patch_file.write(patch_data)
424 "--patch_file=%s" % patch_file_name,
462 "--patch_file=%s" % patch_file_name]
  /external/clang/tools/clang-format/
git-clang-format 292 def extract_lines(patch_file):
293 """Extract the changed lines in `patch_file`.
302 for line in patch_file:
  /prebuilts/clang/host/darwin-x86/clang-3859424/bin/
git-clang-format 292 def extract_lines(patch_file):
293 """Extract the changed lines in `patch_file`.
302 for line in patch_file:
  /prebuilts/clang/host/darwin-x86/clang-4053586/bin/
git-clang-format 292 def extract_lines(patch_file):
293 """Extract the changed lines in `patch_file`.
302 for line in patch_file:
  /prebuilts/clang/host/linux-x86/clang-3859424/bin/
git-clang-format 292 def extract_lines(patch_file):
293 """Extract the changed lines in `patch_file`.
302 for line in patch_file:
  /prebuilts/clang/host/linux-x86/clang-4053586/bin/
git-clang-format 292 def extract_lines(patch_file):
293 """Extract the changed lines in `patch_file`.
302 for line in patch_file:
  /prebuilts/clang/host/darwin-x86/clang-4393122/bin/
git-clang-format 293 def extract_lines(patch_file):
294 """Extract the changed lines in `patch_file`.
303 for line in patch_file:
  /prebuilts/clang/host/darwin-x86/clang-4479392/bin/
git-clang-format 293 def extract_lines(patch_file):
294 """Extract the changed lines in `patch_file`.
303 for line in patch_file:
  /prebuilts/clang/host/darwin-x86/clang-4579689/bin/
git-clang-format 293 def extract_lines(patch_file):
294 """Extract the changed lines in `patch_file`.
303 for line in patch_file:
  /prebuilts/clang/host/darwin-x86/clang-4630689/bin/
git-clang-format 293 def extract_lines(patch_file):
294 """Extract the changed lines in `patch_file`.
303 for line in patch_file:
  /prebuilts/clang/host/darwin-x86/clang-4639204/bin/
git-clang-format 293 def extract_lines(patch_file):
294 """Extract the changed lines in `patch_file`.
303 for line in patch_file:

Completed in 1661 milliseconds

1 2