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

  /external/toolchain-utils/crosperf/
download_images.py 75 download_path = os.path.join(chromeos_root, 'chroot/tmp', build_id)
76 image_path = os.path.join(download_path, 'chromiumos_test_image.bin')
77 if not os.path.exists(download_path):
78 os.makedirs(download_path)
84 command = '%s cp %s %s' % (gsutil_cmd, image_name, download_path)
89 downloaded_image_name = os.path.join(download_path,
104 download_path = os.path.join(chromeos_root, 'chroot/tmp', build_id)
105 command = ('cd %s ; tar -Jxf chromiumos_test_image.tar.xz ' % download_path)
107 clean_cmd = ('cd %s ; rm -f chromiumos_test_image.bin ' % download_path)
126 command = ('cd %s ; rm -f chromiumos_test_image.tar.xz; ' % download_path)
    [all...]
  /external/chromium-trace/catapult/dependency_manager/dependency_manager/
cloud_storage_info_unittest.py 27 None, None, 'download_path', None)
31 None, 'cs_hash', 'download_path', 'cs_remote_path')
33 'cs_bucket', None, 'download_path', 'cs_remote_path')
37 'cs_bucket', 'cs_hash', 'download_path', None)
45 'download_path', 'cs_remote_path', version_in_cs='version_in_cs')
48 'cs_bucket', 'cs_hash', 'download_path', 'cs_remote_path',
53 self.assertEqual('download_path', cs_info._download_path)
58 'download_path', 'unzip_location', 'path_within_archive')
76 'download_path', 'unzip_location', 'path_within_archive')
78 'cs_bucket', 'cs_hash', 'download_path', 'cs_remote_path'
    [all...]
base_config.py 31 "download_path": "download_path111",
37 "download_path": "download_path2",
58 "download_path" and all paths in "local_paths" are relative to the
63 "cloud_storage_hash", "download_path", "cs_remote_path"
147 download_path = platform_info.get('download_path')
148 if download_path:
149 download_path = self._FormatPath(download_path)
150 download_path = os.path.abspath
    [all...]
cloud_storage_info.py 14 def __init__(self, cs_bucket, cs_hash, download_path, cs_remote_path,
22 download_path: Where the file should be downloaded to.
28 self._download_path = download_path
107 'CloudStorageInfo(download_path=%s, cs_remote_path=%s, cs_bucket=%s, '
dependency_info_unittest.py 81 download_path='download_path2', cs_remote_path='cs_remote_path2')
90 download_path='download_path4', cs_remote_path='cs_remote_path4')
188 download_path='download_path2', cs_remote_path='cs_remote_path2')
199 download_path='download_path4', cs_remote_path='cs_remote_path4')
base_config_unittest.py 31 'download_path': '../../relative/dep1/path1'},
34 'download_path': '../../relative/dep1/path2'}}},
39 'download_path': '../../relative/dep2/path1'},
42 'download_path': '../../relative/dep2/path2'}}}}
50 '"download_path": "../../relative/dep1/path1"', '},',
52 '"download_path": "../../relative/dep1/path2"', '}', '}', '},',
55 '"download_path": "../../relative/dep2/path1"', '},',
57 '"download_path": "../../relative/dep2/path2"', '}', '}', '}',
72 'download_path': '../../relative/dep1/path1'},
75 'download_path': '../../relative/dep1/path2'}}}
    [all...]
  /external/autotest/client/site_tests/video_VDASanity/
video_VDASanity.py 38 def _download_video(self, download_path, local_file):
39 url = DOWNLOAD_BASE + download_path
  /external/perfetto/tools/
install-build-deps 265 download_path = local_path + '.tmp'
267 urllib.urlretrieve(url, download_path)
268 os.chmod(download_path, 0o755)
269 if (HashLocalFile(download_path) != expected_sha1):
270 os.remove(download_path)
271 logging.fatal('SHA1 mismatch for %s', download_path)
273 os.rename(download_path, local_path)
  /external/autotest/client/site_tests/video_VideoEncodeAccelerator/
video_VideoEncodeAccelerator.py 28 def _download_video(download_path, local_file):
29 url = '%s%s' % (DOWNLOAD_BASE, download_path)
36 if md5sum not in download_path:
  /external/chromium-trace/catapult/common/py_utils/py_utils/
cloud_storage.py 384 def GetIfHashChanged(cs_path, download_path, bucket, file_hash):
385 """Downloads |download_path| to |file_path| if |file_path| doesn't exist or
395 with _FileLock(download_path):
396 if (os.path.exists(download_path) and
397 CalculateHash(download_path) == file_hash):
399 _GetLocked(bucket, cs_path, download_path)
  /external/autotest/client/site_tests/video_VDAPerf/
video_VDAPerf.py 208 def _download_video(self, download_path, local_file):
209 url = '%s%s' % (DOWNLOAD_BASE, download_path)
216 if md5sum not in download_path:

Completed in 285 milliseconds