Lines Matching refs:pids
57 pids = []
69 pids.append(pid)
72 pids.extend(children)
74 pids = sorted(set(pids), key=pids.index) # uniq: maybe slow, but simple.
76 return pids
79 def count_pageframes(pids): argument
82 for pid in pids:
101 def count_statm(pids): argument
106 for pid in pids:
130 pids = list_pids(argv)
131 pageframes = count_pageframes(pids)