Searched refs:sshKey (Results 1 – 3 of 3) sorted by relevance
/external/syzkaller/vm/vmimpl/ |
D | util.go | 25 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/ |
D | isolated.go | 45 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/ |
D | gce.go | 59 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)
|