Home | History | Annotate | Download | only in virt

Lines Matching refs:process

36             self.process = None
67 raise virt_vm.VMDeadError(self.process.get_status(),
68 self.process.get_output())
81 Return True if the qemu process is dead.
83 return not self.process or not self.process.is_alive()
146 will be be set to this value for the qemu process (useful for
780 self.process = aexpect.run_bg(qemu_command, None,
789 # Make sure the process was started successfully
790 if not self.process.is_alive():
792 self.process.get_status(),
793 self.process.get_output())
828 output = self.process.get_output()
831 e = virt_vm.VMKVMInitError(qemu_command, self.process.get_output())
836 e = virt_vm.VMHugePageError(qemu_command, self.process.get_output())
861 command. If that fails, send SIGKILL to the qemu process.
864 using a shell command before trying to end the qemu process
911 virt_utils.kill_process_tree(self.process.get_pid(), 9)
917 logging.error("Process %s is a zombie!", self.process.get_pid())
923 if self.process:
924 self.process.close()
1090 @note: This works under the assumption that self.process.get_pid()
1091 returns the PID of the parent shell process.
1095 self.process.get_pid()).split()
1103 Return the PID of the parent shell process.
1105 @note: This works under the assumption that self.process.get_pid()
1106 returns the PID of the parent shell process.
1108 return self.process.get_pid()