Searched refs:localSrc (Results 1 – 2 of 2) sorted by relevance
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/target/ |
| H A D | ssh.py | 114 def copyTo(self, localSrc, remoteDst): argument 120 if os.path.islink(localSrc): 121 link = os.readlink(localSrc) 128 scpCmd = self.scp + [localSrc, remotePath] 142 def copyDirTo(self, localSrc, remoteDst): argument 147 for root, dirs, files in os.walk(localSrc): 150 tmpDir = os.path.join(root, d).replace(localSrc, "") 157 tmpFile = os.path.join(root, f).replace(localSrc, "")
|
| H A D | __init__.py | 27 def copyTo(self, localSrc, remoteDst): argument 35 def copyDirTo(self, localSrc, remoteDst): argument
|