Home
last modified time | relevance | path

Searched refs:sshKey (Results 1 – 3 of 3) sorted by relevance

/external/syzkaller/vm/vmimpl/
Dutil.go25 func WaitForSSH(debug bool, timeout time.Duration, addr, sshKey, sshUser, OS string, port int) erro… argument
36 args := append(SSHArgs(debug, sshKey, port), sshUser+"@"+addr, pwd)
50 func SSHArgs(debug bool, sshKey string, port int) []string {
51 return sshArgs(debug, sshKey, "-p", port)
54 func SCPArgs(debug bool, sshKey string, port int) []string {
55 return sshArgs(debug, sshKey, "-P", port)
58 func sshArgs(debug bool, sshKey, portArg string, port int) []string { argument
61 "-i", sshKey,
69 if sshKey != "" {
70 args = append(args, "-i", sshKey)
/external/syzkaller/vm/isolated/
Disolated.go45 sshKey string member
89 sshKey: pool.env.SSHKey,
133 args := append(vmimpl.SSHArgs(inst.debug, inst.sshKey, inst.targetPort),
201 return vmimpl.WaitForSSH(inst.debug, timeout, inst.targetAddr, inst.sshKey, inst.sshUser,
231 args := append(vmimpl.SCPArgs(inst.debug, inst.sshKey, inst.targetPort),
260 …args := append(vmimpl.SSHArgs(inst.debug, inst.sshKey, inst.targetPort), inst.sshUser+"@"+inst.tar…
272 args = vmimpl.SSHArgs(inst.debug, inst.sshKey, inst.targetPort)
/external/syzkaller/vm/gce/
Dgce.go59 sshKey string // ssh key member
156 sshKey := pool.env.SSHKey
158 if sshKey == "" {
160 sshKey = gceKey
165 sshKey, sshUser, pool.env.OS, 22); err != nil {
181 sshKey: sshKey,
199 …args := append(vmimpl.SCPArgs(inst.debug, inst.sshKey, 22), hostSrc, inst.sshUser+"@"+inst.ip+":"+…
260 args := append(vmimpl.SSHArgs(inst.debug, inst.sshKey, 22), inst.sshUser+"@"+inst.ip, command)