/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
D | cloud_storage_info_unittest.py | 119 self.download_path = '/foo/download_path' 121 self.download_path, contents='1010110', st_mode=stat.S_IWOTH) 123 'cs_bucket', 'cs_hash', self.download_path, 'cs_remote_path', 132 def _GetIfHashChangedMock(cs_path, download_path, bucket, file_hash): argument 134 if not os.path.exists(download_path): 135 self.fs.CreateFile(download_path, contents='1010001010101010110101') 140 os.path.abspath(self.download_path), 142 self.assertTrue(os.stat(self.download_path).st_mode & stat.S_IXUSR) 146 self.fs.RemoveObject(self.download_path) 156 def _GetIfHashChangedMock(cs_path, download_path, bucket, file_hash): argument [all …]
|
D | base_config.py | 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( 151 os.path.join(base_path, download_path)) 166 os.path.join(os.path.dirname(download_path), 169 download_path, unzip_path, path_within_archive) 172 cs_bucket, cs_hash, download_path, cs_remote_path,
|
D | cloud_storage_info.py | 14 def __init__(self, cs_bucket, cs_hash, download_path, cs_remote_path, argument 28 self._download_path = download_path
|
D | 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')
|
D | base_config_unittest.py | 1061 self.download_path = '../../relative/dep1/path2' 1065 'download_path': self.download_path, 1325 self.assertEqual(self.download_path, config._GetPlatformData( 1471 cs_hash='hash111', download_path='download_path111', 1475 cs_hash='hash112', download_path='download_path112', 1480 download_path=os.path.join('download', 'path', '1w1'),
|
/external/autotest/client/site_tests/video_VideoEncodeAccelerator/ |
D | video_VideoEncodeAccelerator.py | 28 def _download_video(download_path, local_file): argument 29 url = '%s%s' % (DOWNLOAD_BASE, download_path) 36 if md5sum not in download_path:
|
/external/chromium-trace/catapult/catapult_base/catapult_base/ |
D | cloud_storage.py | 292 def GetIfHashChanged(cs_path, download_path, bucket, file_hash): argument 303 with _PseudoFileLock(download_path): 304 if (os.path.exists(download_path) and 305 CalculateHash(download_path) == file_hash): 307 _GetLocked(bucket, cs_path, download_path)
|
/external/autotest/client/site_tests/video_VDAPerf/ |
D | video_VDAPerf.py | 208 def _download_video(self, download_path, local_file): argument 209 url = '%s%s' % (DOWNLOAD_BASE, download_path) 216 if md5sum not in download_path:
|
D | control.h264.4k | 26 # [download_path, width, height, frame_num, fragment_num, profile, fps]
|
D | control.vp8.4k | 26 # [download_path, width, height, frame_num, fragment_num, profile, fps]
|
D | control.h264 | 30 # [download_path, width, height, frame_num, fragment_num, profile, fps]
|
D | control.vp8 | 30 # [download_path, width, height, frame_num, fragment_num, profile, fps]
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/ |
D | test_cp.py | 965 download_path = os.path.join(src_dir, 'zero_byte_download') 966 self.RunGsUtil(['cp', suri(dst_bucket_uri, 'zero_byte'), download_path]) 967 self.assertTrue(os.stat(download_path))
|