Home
last modified time | relevance | path

Searched refs:dst_path (Results 1 – 8 of 8) sorted by relevance

/external/autotest/client/virt/
Drss_client.py291 def upload(self, src_pattern, dst_path, timeout=600): argument
321 self._send_packet(dst_path)
377 def download(self, src_pattern, dst_path, timeout=600): argument
404 dst_path = os.path.abspath(dst_path)
419 if os.path.isdir(dst_path):
420 dst_path = os.path.join(dst_path, filename)
421 self._receive_file_chunks(dst_path, end_time - time.time())
422 dst_path = os.path.dirname(dst_path)
427 if os.path.isdir(dst_path):
428 dst_path = os.path.join(dst_path, dirname)
[all …]
/external/chromium-trace/catapult/hooks/
Dinstall.py15 def __init__(self, dst_path, src_path): argument
16 self.dst_path = dst_path
21 full_dst_path = os.path.join(_TOP_PATH, self.dst_path)
/external/compiler-rt/test/asan/android_commands/
Dandroid_common.py26 dst_path = os.path.join(ANDROID_TMPDIR, os.path.basename(path))
27 tmp_path = dst_path + '.push'
29 adb(['shell', 'cp "%s" "%s" 2>&1' % (tmp_path, dst_path)])
/external/autotest/client/cros/
Dnetwork_chroot.py224 dst_path = self.chroot_path(rootdir)
229 os.symlink(link_path, dst_path)
231 os.makedirs(dst_path) # Recursively create directories.
239 dst_path = self.chroot_path(config_file)
241 shutil.copyfile(src_path, dst_path)
/external/autotest/client/virt/tests/
Dimage_copy.py33 dst_path = '%s.%s' % (params['image_name'], params['image_format'])
34 cmd = 'cp %s %s' % (src_path, dst_path)
/external/compiler-rt/lib/sanitizer_common/scripts/
Dsancov.py167 dst_path = module_path + '.' + os.path.basename(path)[:-4]
168 print >> sys.stderr, "%s: writing %d PCs to %s" % (prog_name, len(pc_list), dst_path)
171 with open(dst_path, 'ab') as f2:
/external/pdfium/core/src/fxge/skia/
Dfx_skia_device.cpp387 SkPath dst_path; in SetClip_PathStroke() local
388 SkRasterizeStroke(spaint, &dst_path, path_data.m_PathData, pObject2Device, in SetClip_PathStroke()
391 SetClipMask(dst_path, &spaint); in SetClip_PathStroke()
497 SkPath dst_path; in DrawPath() local
498 SkRasterizeStroke(spaint, &dst_path, path_data.m_PathData, &matrix2, in DrawPath()
504 if (!RenderRasterizerSkia(dst_path, spaint, rect, stroke_color, in DrawPath()
/external/chromium-trace/catapult/third_party/gsutil/gslib/
Dcopy_helper.py850 dst_path = dst_url.object_name
851 final_dir = os.path.dirname(dst_path)
856 if os.path.isdir(dst_path):
859 (exp_src_url.url_string, dst_path))