type os.ProcessState

21 uses

	os (current package)
		exec.go#L128: func (p *Process) Wait() (*ProcessState, error) {
		exec.go#L139: func (p *ProcessState) UserTime() time.Duration {
		exec.go#L144: func (p *ProcessState) SystemTime() time.Duration {
		exec.go#L149: func (p *ProcessState) Exited() bool {
		exec.go#L155: func (p *ProcessState) Success() bool {
		exec.go#L162: func (p *ProcessState) Sys() interface{} {
		exec.go#L171: func (p *ProcessState) SysUsage() interface{} {
		exec_posix.go#L70: type ProcessState struct {
		exec_posix.go#L77: func (p *ProcessState) Pid() int {
		exec_posix.go#L81: func (p *ProcessState) exited() bool {
		exec_posix.go#L85: func (p *ProcessState) success() bool {
		exec_posix.go#L89: func (p *ProcessState) sys() interface{} {
		exec_posix.go#L93: func (p *ProcessState) sysUsage() interface{} {
		exec_posix.go#L97: func (p *ProcessState) String() string {
		exec_posix.go#L124: func (p *ProcessState) ExitCode() int {
		exec_unix.go#L16: func (p *Process) wait() (ps *ProcessState, err error) {
		exec_unix.go#L54: 	ps = &ProcessState{
		exec_unix.go#L100: func (p *ProcessState) userTime() time.Duration {
		exec_unix.go#L104: func (p *ProcessState) systemTime() time.Duration {

	os/exec
		exec.go#L134: 	ProcessState *os.ProcessState
		exec.go#L462: 	*os.ProcessState