Lines Matching refs:dst
254 for src, dst, tag in source_list:
258 logging.debug('Pushing from %s to %s.', src, dst)
259 self._dut.adb.push('{src} {dst}'.format(src=src, dst=dst))
260 self.shell.Execute('ls %s' % dst)
266 for src, dst, tag in source_list:
270 logging.debug('Creating test case from %s with tag %s', dst,
272 testcase = self.CreateTestCase(dst, tag)
339 paths = [dst for src, dst, tag in sources if src and dst]
340 cmd = ['rm -rf %s' % dst for dst in paths]
346 dir_set = set(path_utils.TargetDirName(dst) for dst in paths)
379 dst = None
381 src, dst = path.split(self.PUSH_DELIMITER)
390 push_only = dst is not None and dst == ''
392 if not dst:
396 dst = path_utils.JoinTargetPath(parent, os.path.basename(src))
401 return str(src), str(dst), tag