/external/snakeyaml/ |
patch-android-src | 32 dst_file="$3" 33 dst_dir="$(dirname "$dst_file")" 84 cp "$src_file_with_prefix" "$dst_file" 85 if ! [[ -f "$dst_file" ]]; then 86 echo "File "$dst_file" does not exist; patching will fail" >&2 90 patch "$(basename "$dst_file")" "$patch_file_src" 91 echo "Successfully applied patch $patch_file_src into copy of file $dst_file"
|
/bionic/tests/ |
sys_sendfile_test.cpp | 30 TemporaryFile dst_file; local 34 ssize_t rc = sendfile(dst_file.fd, src_file.fd, &offset, count); 38 ASSERT_EQ(0, lseek(dst_file.fd, 0, SEEK_SET)); 41 ASSERT_EQ(2, TEMP_FAILURE_RETRY(read(dst_file.fd, &buf, 2))); 49 TemporaryFile dst_file; local 53 ssize_t rc = sendfile64(dst_file.fd, src_file.fd, &offset, count); 57 ASSERT_EQ(0, lseek(dst_file.fd, 0, SEEK_SET)); 60 ASSERT_EQ(2, TEMP_FAILURE_RETRY(read(dst_file.fd, &buf, 2)));
|
/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/ |
fake_filesystem_shutil_test.py | 48 dst_file = 'xyzzy_copy' 52 self.assertFalse(self.filesystem.Exists(dst_file)) 53 self.shutil.copy(src_file, dst_file) 54 self.assertTrue(self.filesystem.Exists(dst_file)) 55 dst_obj = self.filesystem.GetObject(dst_file) 61 dst_file = '%s/%s' % (parent_directory, src_file) 67 self.assertFalse(self.filesystem.Exists(dst_file)) 69 self.assertTrue(self.filesystem.Exists(dst_file)) 70 dst_obj = self.filesystem.GetObject(dst_file) 75 dst_file = 'xyzzy_copy [all...] |
/system/media/camera/docs/ |
metadata-generate | 122 local dst_file="$2" 126 local start_line="$(grep -n -F "${start_delim}" "${dst_file}" | cut -d: -f1)" 127 local end_line="$(grep -n -F "${end_delim}" "${dst_file}" | cut -d: -f1)" 136 echo "No starting delimiter found in ${dst_file}" >& 2 137 echo "FAIL: Errors in inserting into $(relpath ${dst_file})" >& 2 142 echo "No ending delimiter found in ${dst_file}" >& 2 143 echo "FAIL: Errors in inserting into $(relpath ${dst_file})" >& 2 149 echo "FAIL: Errors in inserting into $(relpath ${dst_file})" >& 2 157 head -n "$start_line" "${dst_file}" > "${tmp_name}" 159 tail -n "+${end_line}" "${dst_file}" >> "${tmp_name} [all...] |
/external/autotest/client/tests/kvm/ |
get_started.py | 91 dst_file = config_file.rstrip(".sample") variable 92 if not os.path.isfile(dst_file): 93 logging.debug("Creating config file %s from sample", dst_file) 94 shutil.copyfile(src_file, dst_file) 96 logging.debug("Config file %s exists, not touching" % dst_file)
|
/ndk/ |
checkbuild.py | 233 dst_file = os.path.join(dst_dir, file_name) 235 print('Copying {} to {}...'.format(src_file, dst_file)) 237 _install_dir(src_file, dst_file) 239 _install_symlink(src_file, dst_file) 241 _install_file(src_file, dst_file) 251 def _install_symlink(src_file, dst_file): 252 dirname = os.path.dirname(dst_file) 256 os.symlink(link_target, dst_file) 259 def _install_file(src_file, dst_file): 260 dirname = os.path.dirname(dst_file) [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_compiler_util.h | 54 rc_register_file dst_file,
|
radeon_compiler_util.c | 316 rc_register_file dst_file, 320 if (src_file != dst_file || src_idx != dst_idx) {
|
radeon_dataflow.c | 683 rc_register_file dst_file, 698 d->DstFile = dst_file;
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/gs/ |
test_resumable_downloads.py | 60 dst_file = os.path.join(tmpdir, 'dstfile') 61 return open(dst_file, 'w')
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_shutil.py | 606 self.dst_file = os.path.join(self.dst_dir, filename) 643 self._check_move_file(self.src_file, self.dst_file, self.dst_file) 647 self._check_move_file(self.src_file, self.dst_dir, self.dst_file) 705 with open(self.dst_file, "wb"):
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_shutil.py | 606 self.dst_file = os.path.join(self.dst_dir, filename) 643 self._check_move_file(self.src_file, self.dst_file, self.dst_file) 647 self._check_move_file(self.src_file, self.dst_dir, self.dst_file) 705 with open(self.dst_file, "wb"):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_shutil.py | 606 self.dst_file = os.path.join(self.dst_dir, filename) 643 self._check_move_file(self.src_file, self.dst_file, self.dst_file) 647 self._check_move_file(self.src_file, self.dst_dir, self.dst_file) 705 with open(self.dst_file, "wb"):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_shutil.py | 606 self.dst_file = os.path.join(self.dst_dir, filename) 643 self._check_move_file(self.src_file, self.dst_file, self.dst_file) 647 self._check_move_file(self.src_file, self.dst_dir, self.dst_file) 705 with open(self.dst_file, "wb"):
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/ |
test_naming.py | 478 dst_file = self.CreateTempFile() 480 self.RunCommand('cp', ['-R', suri(src_bucket_uri, '*'), dst_file]) [all...] |