Lines Matching refs:src
254 for src, dst, tag in source_list:
255 if src:
256 if os.path.isdir(src):
257 src = os.path.join(src, '.')
258 logging.debug('Pushing from %s to %s.', src, dst)
259 self._dut.adb.push('{src} {dst}'.format(src=src, dst=dst))
266 for src, dst, tag in source_list:
336 self.ParseTestSource(src) for src in self.binary_test_source
339 paths = [dst for src, dst, tag in sources if src and dst]
378 src = path
381 src, dst = path.split(self.PUSH_DELIMITER)
383 if src:
384 src = os.path.join(self.data_file_path, src)
385 if not os.path.exists(src):
387 'but does not exist on host: %s', src)
395 src, tag)
396 dst = path_utils.JoinTargetPath(parent, os.path.basename(src))
401 return str(src), str(dst), tag
403 def _GetDefaultBinaryPushDstPath(self, src, tag): argument
419 src_lower = src.lower()