Searched refs:sshUser (Results 1 – 3 of 3) sorted by relevance
/external/syzkaller/vm/isolated/ |
D | isolated.go | 44 sshUser string member 88 sshUser: pool.env.SSHUser, 134 inst.sshUser+"@"+inst.targetAddr, command) 201 return vmimpl.WaitForSSH(inst.debug, timeout, inst.targetAddr, inst.sshKey, inst.sshUser, 232 hostSrc, inst.sshUser+"@"+inst.targetAddr+":"+vmDst) 260 …args := append(vmimpl.SSHArgs(inst.debug, inst.sshKey, inst.targetPort), inst.sshUser+"@"+inst.tar… 278 args = append(args, inst.sshUser+"@"+inst.targetAddr, "cd "+inst.cfg.TargetDir+" && exec "+command)
|
/external/syzkaller/vm/gce/ |
D | gce.go | 60 sshUser string member 157 sshUser := pool.env.SSHUser 161 sshUser = "syzkaller" 165 sshKey, sshUser, pool.env.OS, 22); err != nil { 182 sshUser: sshUser, 199 …args := append(vmimpl.SCPArgs(inst.debug, inst.sshKey, 22), hostSrc, inst.sshUser+"@"+inst.ip+":"+… 256 if inst.sshUser != "root" { 260 args := append(vmimpl.SSHArgs(inst.debug, inst.sshKey, 22), inst.sshUser+"@"+inst.ip, command)
|
/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)
|