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

  /external/skia/bin/
droid 11 dst_dir=/data/local/tmp
27 adb shell "cd \"$dst_dir\"; mkdir -p $dirs"
28 adb push --sync resources "${dst_dir}/"
29 adb push --sync "$path" "${dst_dir}/${name}"
30 adb shell "cd \"$dst_dir\"; chmod +x \"$name\"; \"./$name\" $*"
  /external/skqp/bin/
droid 11 dst_dir=/data/local/tmp
27 adb shell "cd \"$dst_dir\"; mkdir -p $dirs"
28 adb push --sync resources "${dst_dir}/"
29 adb push --sync "$path" "${dst_dir}/${name}"
30 adb shell "cd \"$dst_dir\"; chmod +x \"$name\"; \"./$name\" $*"
  /external/snakeyaml/
patch-android-src 33 dst_dir="$(dirname "$dst_file")"
83 mkdir -p "$dst_dir"
89 cd "$dst_dir"
  /build/soong/scripts/
setup_go_workspace_for_soong.sh 138 local dst_dir
143 dst_dir=$(bind_path_dst_dir "${path}")
144 mkdir -p "${dst_dir}"
146 "${bind_dir}" ${src_dir} "${dst_dir}"
158 local dst_dir
164 dst_dir=$(bind_path_dst_dir "${BIND_PATHS[$i]}")
167 if ! "${unbind_dir}" "${dst_dir}"; then
168 log_WARN "Failed to umount ${dst_dir}."
  /external/python/cpython2/Lib/test/
test_shutil.py 157 dst_dir = os.path.join(tempfile.mkdtemp(), 'destination')
165 shutil.copytree(src_dir, dst_dir)
166 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test.txt')))
167 self.assertTrue(os.path.isdir(os.path.join(dst_dir, 'test_dir')))
168 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test_dir',
170 actual = read_data(os.path.join(dst_dir, 'test.txt'))
172 actual = read_data(os.path.join(dst_dir, 'test_dir', 'test.txt'))
177 os.path.join(dst_dir, 'test.txt'),
179 os.path.join(dst_dir, 'test_dir', 'test.txt'),
184 os.path.dirname(dst_dir)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_shutil.py 154 dst_dir = os.path.join(tempfile.mkdtemp(), 'destination')
162 shutil.copytree(src_dir, dst_dir)
163 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test.txt')))
164 self.assertTrue(os.path.isdir(os.path.join(dst_dir, 'test_dir')))
165 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test_dir',
167 actual = read_data(os.path.join(dst_dir, 'test.txt'))
169 actual = read_data(os.path.join(dst_dir, 'test_dir', 'test.txt'))
174 os.path.join(dst_dir, 'test.txt'),
176 os.path.join(dst_dir, 'test_dir', 'test.txt'),
181 os.path.dirname(dst_dir)
    [all...]
  /bionic/libc/kernel/tools/
clean_header.py 155 dst_dir = None variable
165 dst_dir = arg
170 # directory, if they specify src_dir and dst_dir on the command line.
171 if dst_dir is None:
172 dst_dir = get_kernel_dir()
181 dst_file = os.path.join(dst_dir, path)
198 dst_file = os.path.join(dst_dir, path)
  /external/libffi/
generate-darwin-source-and-headers.py 100 def move_file(src_dir, dst_dir, filename, file_suffix=None, prefix='', suffix=''):
101 mkdir_p(dst_dir)
109 with open(os.path.join(dst_dir, out_filename), 'w') as out_file:
125 def copy_files(src_dir, dst_dir, pattern=None, filelist=None, file_suffix=None, prefix=None, suffix=None):
127 move_file(src_dir, dst_dir, filename, file_suffix=file_suffix, prefix=prefix, suffix=suffix)
132 dst_dir = os.path.join(platform.directory, 'src', platform.src_dir)
133 copy_files(src_dir, dst_dir, filelist=platform.src_files, file_suffix=platform.arch, prefix=platform.prefix, suffix=platform.suffix)
  /external/python/cpython2/Modules/_ctypes/libffi/
generate-darwin-source-and-headers.py 100 def move_file(src_dir, dst_dir, filename, file_suffix=None, prefix='', suffix=''):
101 mkdir_p(dst_dir)
109 with open(os.path.join(dst_dir, out_filename), 'w') as out_file:
125 def copy_files(src_dir, dst_dir, pattern=None, filelist=None, file_suffix=None, prefix=None, suffix=None):
127 move_file(src_dir, dst_dir, filename, file_suffix=file_suffix, prefix=prefix, suffix=suffix)
132 dst_dir = os.path.join(platform.directory, 'src', platform.src_dir)
133 copy_files(src_dir, dst_dir, filelist=platform.src_files, file_suffix=platform.arch, prefix=platform.prefix, suffix=platform.suffix)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_file_util.py 73 dst_dir = self.mkdtemp()
74 copy_file(foo, dst_dir)
75 self.assertTrue(os.path.exists(os.path.join(dst_dir, 'foo')))
  /external/python/cpython3/Lib/test/
test_shutil.py 620 dst_dir = os.path.join(tempfile.mkdtemp(), 'destination')
622 self.addCleanup(shutil.rmtree, os.path.dirname(dst_dir))
627 shutil.copytree(src_dir, dst_dir)
628 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test.txt')))
629 self.assertTrue(os.path.isdir(os.path.join(dst_dir, 'test_dir')))
630 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test_dir',
632 actual = read_file((dst_dir, 'test.txt'))
634 actual = read_file((dst_dir, 'test_dir', 'test.txt'))
641 dst_dir = os.path.join(tmp_dir, 'dst')
647 dst_link = os.path.join(dst_dir, 'sub/link'
    [all...]
  /external/vulkan-validation-layers/build-android/
build.py 28 def install_file(file_name, src_dir, dst_dir):
30 dst_file = os.path.join(dst_dir, file_name)
41 def _install_dir(src_dir, dst_dir):
42 parent_dir = os.path.normpath(os.path.join(dst_dir, '..'))
45 shutil.copytree(src_dir, dst_dir, symlinks=True)
  /external/clang/tools/scan-build-py/libear/
__init__.py 20 def build_libear(compiler, dst_dir):
46 os.path.join(dst_dir, 'config.h'))
49 target.add_include(dst_dir)
53 target.build_release(dst_dir)
55 return os.path.join(dst_dir, target.name)
  /external/python/cpython2/Lib/distutils/tests/
test_file_util.py 78 dst_dir = self.mkdtemp()
79 copy_file(foo, dst_dir)
80 self.assertTrue(os.path.exists(os.path.join(dst_dir, 'foo')))
  /external/python/setuptools/setuptools/
wheel.py 31 def unpack(src_dir, dst_dir):
32 '''Move everything under `src_dir` to `dst_dir`, and delete the former.'''
37 dst = os.path.join(dst_dir, subdir, f)
41 dst = os.path.join(dst_dir, subdir, d)
  /external/autotest/server/cros/faft/
fingerprint_test.py 411 def copy_files_to_dut(self, src_dir, dst_dir):
413 logging.info('Copying files from (%s) to (%s).', src_dir, dst_dir)
414 self.host.send_file(src_dir, dst_dir, delete_dest=True)
  /bionic/tools/versioner/src/
Preprocessor.cpp 410 bool preprocessHeaders(const std::string& dst_dir, const std::string& src_dir,
453 std::string dst_path = dst_dir + "/" + rel_path;
491 std::string output_path = (llvm::Twine(dst_dir) + rel_path).str();
  /external/autotest/site_utils/lxc/
container.py 603 # Create the dst dir. mkdir -p will not fail if dst_dir exists.
604 dst_dir = os.path.dirname(dst)
610 (dst_dir, src, dst))

Completed in 1975 milliseconds