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

1 2 3

  /external/ltp/tools/pounder21/test_scripts/
copy_large_tree 22 TREE_DEST="$POUNDER_TMPDIR/copytree/"
32 diff -Naur /usr "$TREE_DEST/usr/" | tee "$POUNDER_TMPDIR/copytree.diff"
38 DIFF_ERRORS=`wc -l < $POUNDER_TMPDIR/copytree.diff`
  /external/skia/gn/
cp.py 21 shutil.copytree(src, dst)
  /external/skia/infra/bots/assets/android_sdk/
create.py 27 shutil.copytree(android_sdk_root, dst)
  /external/skia/infra/bots/assets/linux_vulkan_intel_driver_debug/
create.py 19 shutil.copytree(lib_path, target_dir)
  /external/skia/infra/bots/assets/linux_vulkan_intel_driver_release/
create.py 19 shutil.copytree(lib_path, target_dir)
  /external/skia/infra/bots/assets/linux_vulkan_sdk/
create.py 21 shutil.copytree(sdk_path, target_dir)
  /external/skia/infra/bots/assets/win_vulkan_sdk/
create.py 22 shutil.copytree(sdk_path, target_dir)
  /development/ndk/
unify_all.py 57 shutil.copytree requires that the destination does not exist. This function
109 shutil.copytree(path, os.path.join(preserve_root, preserve))
178 shutil.copytree(os.path.join(libc_path, 'include'), install_path)
179 shutil.copytree(os.path.join(libc_path, 'kernel/uapi/linux'),
181 shutil.copytree(os.path.join(libc_path, 'kernel/uapi/asm-generic'),
222 shutil.copytree(
224 shutil.copytree(asm_path, os.path.join(arch_install_path, 'asm'))
  /external/selinux/libselinux/src/
selinuxswig_python.i 48 def copytree(src, dest):
49 """ An SELinux-friendly shutil.copytree method """
50 shutil.copytree(src, dest)
  /external/skia/infra/bots/assets/win_toolchain/
create.py 40 """Callback for shutil.copytree. Return lists of files to skip."""
84 shutil.copytree(os.path.join(os.getcwd(), 'tools', 'gyp', 'pylib'),
94 shutil.copytree(src_dir, toolchain_dst, ignore=filter_toolchain_files)
  /art/tools/jfuzz/
run_jfuzz_test_nightly.py 81 shutil.copytree(divergence_dir,
  /external/autotest/tko/parsers/test/
new_scenario.py 81 shutil.copytree(results_dirpath, copied_dirpath)
  /external/chromium-trace/
update.py 63 shutil.copytree(os.path.join(catapult_src_dir, d),
  /external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
fake_filesystem_shutil.py 33 >>> shutil_module.copytree('/src', '/dst')
165 def copytree(self, src, dst, symlinks=False): member in class:FakeShutilModule
190 self.copytree(srcname, dstname, symlinks)
202 self.copytree(src, dst, symlinks=True)
  /external/vulkan-validation-layers/build-android/
build.py 45 shutil.copytree(src_dir, dst_dir, symlinks=True)
237 shutil.copytree(src, dst,
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
macostools.py 130 def copytree(src, dst, copydates=1): function
136 copytree(os.path.join(src, f), os.path.join(dst, f), copydates)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
macostools.py 130 def copytree(src, dst, copydates=1): function
136 copytree(os.path.join(src, f), os.path.join(dst, f), copydates)
  /external/fmtlib/support/
travis-build.py 63 shutil.copytree(html_dir, target_dir, ignore=shutil.ignore_patterns('.*'))
  /external/skia/infra/bots/assets/
asset_utils_test.py 64 shutil.copytree(target_dir, os.path.join(self.dir, name, str(version)))
67 shutil.copytree(os.path.join(self.dir, name, str(version)), target_dir)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
shutil.py 26 "copytree", "move", "rmtree", "Error", "SpecialFileError",
134 """Function that can be used as copytree() ignore parameter.
145 def copytree(src, dst, symlinks=False, ignore=None): function
158 being visited by copytree(), and `names` which is the list of
163 Since copytree() is called recursively, the callable will be
189 copytree(srcname, dstname, symlinks, ignore)
193 # catch the Error from the recursive copytree so that we can
299 copytree(src, real_dst, symlinks=True)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
shutil.py 26 "copytree", "move", "rmtree", "Error", "SpecialFileError",
131 """Function that can be used as copytree() ignore parameter.
142 def copytree(src, dst, symlinks=False, ignore=None): function
155 being visited by copytree(), and `names` which is the list of
160 Since copytree() is called recursively, the callable will be
186 copytree(srcname, dstname, symlinks, ignore)
190 # catch the Error from the recursive copytree so that we can
295 copytree(src, real_dst, symlinks=True)
  /external/skia/tools/skp/
webpages_playback.py 513 def copytree(source_dir, dest_dir): function in function:LocalFileSystemDataStore.upload_dir_contents
520 copytree(source, dest)
523 copytree(source_dir, os.path.join(self._base_dir, dest_dir))
  /prebuilts/gdb/darwin-x86/lib/python2.7/
shutil.py 26 "copytree", "move", "rmtree", "Error", "SpecialFileError",
134 """Function that can be used as copytree() ignore parameter.
145 def copytree(src, dst, symlinks=False, ignore=None): function
158 being visited by copytree(), and `names` which is the list of
163 Since copytree() is called recursively, the callable will be
189 copytree(srcname, dstname, symlinks, ignore)
193 # catch the Error from the recursive copytree so that we can
298 copytree(src, real_dst, symlinks=True)
  /prebuilts/gdb/linux-x86/lib/python2.7/
shutil.py 26 "copytree", "move", "rmtree", "Error", "SpecialFileError",
134 """Function that can be used as copytree() ignore parameter.
145 def copytree(src, dst, symlinks=False, ignore=None): function
158 being visited by copytree(), and `names` which is the list of
163 Since copytree() is called recursively, the callable will be
189 copytree(srcname, dstname, symlinks, ignore)
193 # catch the Error from the recursive copytree so that we can
298 copytree(src, real_dst, symlinks=True)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shutil.py 26 "copytree", "move", "rmtree", "Error", "SpecialFileError",
134 """Function that can be used as copytree() ignore parameter.
145 def copytree(src, dst, symlinks=False, ignore=None): function
158 being visited by copytree(), and `names` which is the list of
163 Since copytree() is called recursively, the callable will be
189 copytree(srcname, dstname, symlinks, ignore)
193 # catch the Error from the recursive copytree so that we can
298 copytree(src, real_dst, symlinks=True)

Completed in 1262 milliseconds

1 2 3