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

1 2

  /art/libartbase/base/unix_file/
random_access_file_utils.h 26 bool CopyFile(const RandomAccessFile& src, RandomAccessFile* dst);
random_access_file_utils.cc 25 bool CopyFile(const RandomAccessFile& src, RandomAccessFile* dst) {
  /external/google-breakpad/src/common/tests/
file_utils.h 39 bool CopyFile(const char* from_path, const char* to_path);
file_utils.cc 44 bool CopyFile(const char* from_path, const char* to_path) {
  /prebuilts/go/darwin-x86/doc/progs/
defer.go 40 func CopyFile(dstName, srcName string) (written int64, err error) {
defer2.go 42 func CopyFile(dstName, srcName string) (written int64, err error) {
  /prebuilts/go/linux-x86/doc/progs/
defer.go 40 func CopyFile(dstName, srcName string) (written int64, err error) {
defer2.go 42 func CopyFile(dstName, srcName string) (written int64, err error) {
  /external/skia/tools/
get_current_monitor_profile.cpp 49 CopyFile(icmPath, outputFilename.c_str(), FALSE);
  /external/skqp/tools/
get_current_monitor_profile.cpp 49 CopyFile(icmPath, outputFilename.c_str(), FALSE);
  /external/tensorflow/tensorflow/core/platform/posix/
posix_file_system.h 60 Status CopyFile(const string& src, const string& target) override;
  /external/webrtc/webrtc/base/
fileutils.h 178 virtual bool CopyFile(const Pathname &old_path, const Pathname &new_path) = 0;
185 return CopyFile(old_path, new_path);
327 static bool CopyFile(const Pathname &old_path, const Pathname &new_path) {
328 return EnsureDefaultFilesystem()->CopyFile(old_path, new_path);
win32filesystem.h 55 virtual bool CopyFile(const Pathname &old_path, const Pathname &new_path);
unixfilesystem.h 73 bool CopyFile(const Pathname& old_path, const Pathname& new_path) override;
unixfilesystem.cc 233 if (!CopyFile(old_path, new_path))
267 bool UnixFilesystem::CopyFile(const Pathname &old_path,
win32filesystem.cc 291 bool Win32Filesystem::CopyFile(const Pathname &old_path,
293 return ::CopyFile(ToUtf16(old_path.pathname()).c_str(),
  /external/boringssl/src/util/bot/
update_clang.py 128 def CopyFile(src, dst):
159 CopyFile(dia_dll, target_dir)
  /external/deqp/scripts/
make_release.py 108 class CopyFile (DstFile):
110 super(CopyFile, self).__init__(dstFile)
117 shutil.copyfile(self.srcFile, self.dstFile)
244 CopyFile(srcFile, dstFile).make(packageBuildInfo)
309 lambda s, d: CopyFile(s, d))
318 return SingleFileTarget(srcFile, dstFile, lambda s, d: CopyFile(s, d))
  /build/make/tools/acp/
acp.c 24 #include <host/CopyFile.h>
153 copyResult = copyFile(src, dst, options);
  /build/make/tools/atree/
fs.cpp 16 #include <host/CopyFile.h>
140 err = copyFile(src.c_str(), dst.c_str(),
  /external/tensorflow/tensorflow/core/platform/
file_system.h 193 virtual Status CopyFile(const string& src, const string& target);
  /external/tensorflow/tensorflow/python/lib/io/
file_io.i 113 void CopyFile(const string& src, const string& target, bool overwrite,
121 tensorflow::Env::Default()->CopyFile(src, target);
253 void CopyFile(const string& oldpath, const string& newpath, bool overwrite,
  /external/v8/tools/clang/scripts/
update.py 228 def CopyFile(src, dst):
243 CopyFile(os.path.join(root, f), dst)
376 CopyFile(dia_dll, target_dir)
534 CopyFile(libstdcpp, os.path.join(LLVM_BOOTSTRAP_INSTALL_DIR, 'lib'))
662 CopyFile(libstdcpp, os.path.join(LLVM_BUILD_DIR, 'lib'))
761 CopyFile(os.path.join(sanitizer_include_dir, f),
    [all...]
  /external/google-breakpad/src/common/linux/tests/
crash_generator.cc 269 if (!CopyFile(from_path, to_path))
  /external/libchrome/base/files/
file_util.h 103 BASE_EXPORT bool CopyFile(const FilePath& from_path, const FilePath& to_path);
111 // This function calls into CopyFile() so the same behavior w.r.t. metadata
114 // If you only need to copy a file use CopyFile, it's faster.

Completed in 1762 milliseconds

1 2