Lines Matching refs:guest

318 def getFacilityStatus(ctx, guest, facilityType):
319 (status, _timestamp) = guest.getFacilityStatus(facilityType)
362 print "guest property change: name=%s value=%s" % (gpcev.name, gpcev.value)
619 guest = console.guest
620 # we need to set up guest statistics
625 if guest.statisticsUpdateInterval != update:
626 guest.statisticsUpdateInterval = update
636 val = guest.getStatistic( cpu, all_stats[s])
672 guest = console.guest
673 if guest.additionsRunLevel != ctx['const'].AdditionsRunLevelType_None:
674 print "Additions active, version %s" % (guest.additionsVersion)
675 print "Support seamless: %s" % (getFacilityStatus(ctx, guest, ctx['const'].AdditionsFacilityType_Seamless))
676 print "Support graphics: %s" % (getFacilityStatus(ctx, guest, ctx['const'].AdditionsFacilityType_Graphics))
677 print "Balloon size: %d" % (guest.memoryBalloonSize)
678 print "Statistic update interval: %d" % (guest.statisticsUpdateInterval)
721 'guest': lambda: guestExec(ctx, mach, console, args),
988 print " Hardware virtualization [guest win machine.setHWVirtExProperty(ctx[\\'const\\'].HWVirtExPropertyType_Enabled, value)]: " + asState(hwVirtEnabled)
990 print " VPID support [guest win machine.setHWVirtExProperty(ctx[\\'const\\'].HWVirtExPropertyType_VPID, value)]: " + asState(hwVirtVPID)
992 print " Nested paging [guest win machine.setHWVirtExProperty(ctx[\\'const\\'].HWVirtExPropertyType_NestedPaging, value)]: " + asState(hwVirtNestedPaging)
1115 print "exec in guest needs at least program name"
1117 guest = console.guest
1118 guestSession = guest.createSession(user, passwd, "", "vboxshell guest exec")
1137 w = guest.setProcessInput(pid, 0, 10*1000, indata[off:])
1143 guest.setProcessInput(pid, 1, 10*1000, " ")
1146 data = guest.getProcessOutput(pid, 0, 10000, 4096)
1152 data = guest.getProcessOutput(pid, 0, 0, 4096)
1167 (_reason, code, _flags) = guest.getProcessStatus(pid)
1177 print "Copying host %s to guest %s" % (src, dst)
1178 progress = console.guest.copyToGuest(src, dst, user, passwd, flags)
1312 print "usage: guest name commands"
1320 cmdExistingVm(ctx, mach, 'guest', ' '.join(args[2:]))
3171 print "%s: assigned host device %s guest %s" % (colDev(ctx, a.name), pciAddr(ctx, a.hostAddress), pciAddr(ctx, a.guestAddress))
3176 print "%s: physical, guest %s, host %s" % (colDev(ctx, a.name), pciAddr(ctx, a.guestAddress), pciAddr(ctx, a.hostAddress))
3178 print "%s: virtual, guest %s" % (colDev(ctx, a.name), pciAddr(ctx, a.guestAddress))
3214 print "invalid guest PCI %s, accepted format 01:02.3 for bus 1, device 2, function 3" % (args[3])
3268 'ginfo':['Shows info on guest', ginfoCmd, 0],
3269 'gexec':['Executes program in the guest', gexecCmd, 0],
3270 'gcopy':['Copy file to the guest', gcopyCmd, 0],
3271 'gpipe':['Pipe between host and guest', gpipeCmd, 0],
3278 'guest':['Execute command for guest: guest Win32 \'console.mouse.putMouseEvent(20, 20, 0, 0, 0)\'', guestCmd, 0],
3279 'monitorGuest':['Monitor what happens with the guest for some time: monitorGuest Win32 10', monitorGuestCmd, 0],
3280 'monitorGuestKbd':['Monitor guest keyboard for some time: monitorGuestKbd Win32 10', monitorGuestKbdCmd, 0],
3281 'monitorGuestMouse':['Monitor guest mouse for some time: monitorGuestMouse Win32 10', monitorGuestMouseCmd, 0],
3282 'monitorGuestMultiTouch':['Monitor guest touch screen for some time: monitorGuestMultiTouch Win32 10', monitorGuestMultiTouchCmd, 0],
3284 'portForward':['Setup permanent port forwarding for a VM, takes adapter number host port and guest port: portForward Win32 0 8080 80', portForwardCmd, 0],
3295 'typeGuest':['Type arbitrary text in guest: typeGuest Linux "^lls\\n&UP;&BKSP;ess /etc/hosts\\nq^c" 0.7', typeGuestCmd, 0],
3300 'gueststats':['Print available guest stats (only Windows guests with additions so far): gueststats Win32', gueststatsCmd, 0],
3322 'shareFolder': ['Make host\'s folder visible to guest: shareFolder win /share share writable', shareFolderCmd, 0],