Home | History | Annotate | Download | only in commands

Lines Matching refs:pids

95         """Gets the pids of a program.
97 Searches for a program with a specific name and grabs the pids for all
103 Returns: An array of all pids that matched the identifier, or None
104 if no pids were found.
206 pids = [identifier]
208 pids = list(self.get_pids(identifier))
214 for pid in pids:
221 while pids and time.time() - start_time < signal_duration:
223 pids = [pid for pid in pids if self.is_alive(pid)]
225 if not pids: