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

1 2 3

  /build/make/tools/atree/
fs.h 10 int copy_file(const string& src, const string& dst);
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.copy_file/
copy_file.pass.cpp 14 // bool copy_file(const path& from, const path& to);
15 // bool copy_file(const path& from, const path& to, error_code& ec) noexcept;
16 // bool copy_file(const path& from, const path& to, copy_options options);
17 // bool copy_file(const path& from, const path& to, copy_options options,
41 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p)), bool);
42 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p, opts)), bool);
43 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p, ec)), bool);
44 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p, opts, ec)), bool);
45 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p));
46 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p, opts))
    [all...]
  /bootable/recovery/
recovery-persist.cpp 61 static void copy_file(const char* source, const char* destination) { function
163 copy_file(LAST_CONSOLE_FILE, LAST_KMSG_FILE);
165 copy_file(ALT_LAST_CONSOLE_FILE, LAST_KMSG_FILE);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
install_headers.py 42 (out, _) = self.copy_file(header, self.install_dir)
install_data.py 54 (out, _) = self.copy_file(f, self.install_dir)
74 (out, _) = self.copy_file(data, dir)
build_scripts.py 115 self.copy_file(script, outfile)
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
install_headers.py 42 (out, _) = self.copy_file(header, self.install_dir)
install_data.py 54 (out, _) = self.copy_file(f, self.install_dir)
74 (out, _) = self.copy_file(data, dir)
build_scripts.py 115 self.copy_file(script, outfile)
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/
install_headers.py 42 (out, _) = self.copy_file(header, self.install_dir)
install_data.py 54 (out, _) = self.copy_file(f, self.install_dir)
74 (out, _) = self.copy_file(data, dir)
build_scripts.py 115 self.copy_file(script, outfile)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
install_headers.py 42 (out, _) = self.copy_file(header, self.install_dir)
install_data.py 54 (out, _) = self.copy_file(f, self.install_dir)
74 (out, _) = self.copy_file(data, dir)
build_scripts.py 115 self.copy_file(script, outfile)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
install_headers.py 42 (out, _) = self.copy_file(header, self.install_dir)
install_data.py 54 (out, _) = self.copy_file(f, self.install_dir)
74 (out, _) = self.copy_file(data, dir)
build_scripts.py 115 self.copy_file(script, outfile)
  /external/autotest/client/cros/faft/utils/
firmware_updater.py 48 self.os_if.copy_file(original_shellball, working_shellball)
93 self.os_if.copy_file('%s' % os.path.join(self._temp_path, 'output.bin'),
127 self.os_if.copy_file(working_shellball,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_file_util.py 6 from distutils.file_util import move_file, write_file, copy_file
74 copy_file(foo, dst_dir)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_file_util.py 6 from distutils.file_util import move_file, write_file, copy_file
74 copy_file(foo, dst_dir)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_file_util.py 6 from distutils.file_util import move_file, write_file, copy_file
74 copy_file(foo, dst_dir)
  /external/selinux/libsemanage/utils/
semanage_migrate_store 23 def copy_file(src, dst): function
74 copy_file(os.path.join(root, name), "%s/%s/hll" % (bottomdir, file))
123 copy_file(os.path.join(root, name), os.path.join(newstore, newname))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
dir_util.py 118 'copy_file'; note that they only apply to regular files, not to
122 'update' and 'verbose' are the same as for 'copy_file'.
124 from distutils.file_util import copy_file
161 copy_file(src_name, dst_name, preserve_mode,
file_util.py 12 # for generating verbose output in 'copy_file()'
71 def copy_file(src, dst, preserve_mode=1, preserve_times=1, update=0, function
87 don't support it: 'copy_file()' doesn't check if hard or symbolic
169 Handles cross-device moves on Unix using 'copy_file()'. What about
207 copy_file(src, dst, verbose=verbose)

Completed in 563 milliseconds

1 2 3