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

  /bootable/recovery/tests/component/
imgdiff_test.cpp 125 TemporaryFile tgt_file; local
126 ASSERT_TRUE(android::base::WriteStringToFile(tgt, tgt_file.path));
130 "imgdiff", src_file.path, tgt_file.path, patch_file.path,
162 TemporaryFile tgt_file; local
163 FILE* tgt_file_ptr = fdopen(tgt_file.release(), "wb");
175 "imgdiff", "-z", src_file.path, tgt_file.path, patch_file.path,
181 ASSERT_TRUE(android::base::ReadFileToString(tgt_file.path, &tgt));
211 TemporaryFile tgt_file; local
212 FILE* tgt_file_ptr = fdopen(tgt_file.release(), "wb");
224 "imgdiff", "-z", src_file.path, tgt_file.path, patch_file.path
260 TemporaryFile tgt_file; local
318 TemporaryFile tgt_file; local
361 TemporaryFile tgt_file; local
396 TemporaryFile tgt_file; local
424 TemporaryFile tgt_file; local
464 TemporaryFile tgt_file; local
500 TemporaryFile tgt_file; local
536 TemporaryFile tgt_file; local
575 TemporaryFile tgt_file; local
618 TemporaryFile tgt_file; local
769 TemporaryFile tgt_file; local
894 TemporaryFile tgt_file; local
937 TemporaryFile tgt_file; local
974 TemporaryFile tgt_file; local
1022 TemporaryFile tgt_file; local
    [all...]
applypatch_test.cpp 219 std::string tgt_file = "EMMC:" + std::string(tmp1.path); local
226 tgt_file.c_str(),
236 tgt_file = "EMMC:" + std::string(tmp2.path);
240 tgt_file.c_str(),
250 tgt_file = "EMMC:" + std::string(tmp3.path);
261 tgt_file.c_str(),
299 TemporaryFile tgt_file; local
300 std::string tgt_file_arg = "EMMC:"s + tgt_file.path;
314 sha1sum(tgt_file.path, &tgt_file_sha1, &tgt_file_size);
  /external/puffin/scripts/
test_corpus.py 74 with tempfile.NamedTemporaryFile() as tgt_file:
81 '--dst_file={}'.format(tgt_file.name)]
86 if not filecmp.cmp(src, tgt_file.name):
89 .format(tgt_file.name, src, operation))
  /bionic/libc/kernel/tools/
generate_uapi_headers.sh 118 tgt_file=${tgt_dir}/$(basename ${file})
119 if [[ -e ${tgt_file} ]] && ! diff "${file}" "${tgt_file}" > /dev/null; then
  /build/make/tools/releasetools/
blockimgdiff.py 899 tgt_file = common.MakeTempFile(prefix="tgt-")
900 with open(tgt_file, "wb") as fd:
905 patch = compute_patch(src_file, tgt_file, imgdiff)
    [all...]
  /bootable/recovery/updater/
install.cpp 198 // apply_patch(src_file, tgt_file, tgt_sha1, tgt_size, patch1_sha1, patch1_blob, [...])
199 // Applies a binary patch to the src_file to produce the tgt_file. If the desired target is the
200 // same as the source, pass "-" for tgt_file. tgt_sha1 and tgt_size are the expected final SHA1
    [all...]

Completed in 241 milliseconds