HomeSort by relevance Sort by last modified time
    Searched refs:dst_file (Results 1 - 12 of 12) sorted by null

  /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_org/remoting/host/installer/
build-installer-archive.py 115 dst_file = os.path.join(dst_root, src_file)
117 dst_dir = os.path.dirname(dst_file)
120 return dst_file
123 def copyFileWithDefs(src_file, dst_file, defs):
124 """Copies from src_file to dst_file, performing variable substitution.
131 dst_file: Relative path (and filename) where src_file should be copied.
140 open(dst_file, 'w').write(data)
141 shutil.copystat(src_file, dst_file)
190 dst_file = remapSrcFile(temp_dir, source_file_roots, f)
196 copyFileWithDefs(f, dst_file, defs
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
generate_make.py 175 dst_file = os.path.join(dst_dir, src_name)
176 if os.path.exists(dst_file):
177 if os.stat(src_file).st_mtime <= os.stat(dst_file).st_mtime:
179 src_file, dst_file))
181 dst_path = os.path.dirname(dst_file)
184 buildbot_common.CopyFile(src_file, dst_file)
  /external/chromium_org/third_party/mesa/src/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/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_org/tools/protoc_wrapper/
protoc_wrapper.py 73 with open(os.path.join(wrapper_dir, filename), 'w') as dst_file:
82 dst_file.write(line)
  /external/chromium_org/third_party/android_crazy_linker/src/tests/
test_util.h 233 ScopedFILE dst_file; local
234 dst_file.Open(dst_path.c_str(), "wb");
240 size_t written = fwrite(buffer, 1, read, dst_file.file());
  /external/chromium_org/base/files/
file_util_unittest.cc 1429 FilePath dst_file = dst.Append(FILE_PATH_LITERAL("src.txt")); local
    [all...]

Completed in 452 milliseconds