Lines Matching refs:Process

34 func NewProcess(pid int32) (*Process, error) {
38 func (p *Process) Ppid() (int32, error) {
41 func (p *Process) Name() (string, error) {
44 func (p *Process) Exe() (string, error) {
47 func (p *Process) Cmdline() (string, error) {
50 func (p *Process) CmdlineSlice() ([]string, error) {
53 func (p *Process) CreateTime() (int64, error) {
56 func (p *Process) Cwd() (string, error) {
59 func (p *Process) Parent() (*Process, error) {
62 func (p *Process) Status() (string, error) {
65 func (p *Process) Uids() ([]int32, error) {
68 func (p *Process) Gids() ([]int32, error) {
71 func (p *Process) Terminal() (string, error) {
74 func (p *Process) Nice() (int32, error) {
77 func (p *Process) IOnice() (int32, error) {
80 func (p *Process) Rlimit() ([]RlimitStat, error) {
83 func (p *Process) IOCounters() (*IOCountersStat, error) {
86 func (p *Process) NumCtxSwitches() (*NumCtxSwitchesStat, error) {
89 func (p *Process) NumFDs() (int32, error) {
92 func (p *Process) NumThreads() (int32, error) {
95 func (p *Process) Threads() (map[string]string, error) {
98 func (p *Process) Times() (*cpu.TimesStat, error) {
101 func (p *Process) CPUAffinity() ([]int32, error) {
104 func (p *Process) MemoryInfo() (*MemoryInfoStat, error) {
107 func (p *Process) MemoryInfoEx() (*MemoryInfoExStat, error) {
110 func (p *Process) Children() ([]*Process, error) {
113 func (p *Process) OpenFiles() ([]OpenFilesStat, error) {
116 func (p *Process) Connections() ([]net.ConnectionStat, error) {
119 func (p *Process) NetIOCounters(pernic bool) ([]net.IOCountersStat, error) {
122 func (p *Process) IsRunning() (bool, error) {
125 func (p *Process) MemoryMaps(grouped bool) (*[]MemoryMapsStat, error) {
128 func (p *Process) SendSignal(sig syscall.Signal) error {
131 func (p *Process) Suspend() error {
134 func (p *Process) Resume() error {
137 func (p *Process) Terminate() error {
140 func (p *Process) Kill() error {
143 func (p *Process) Username() (string, error) {