Searched refs:pids (Results 1 – 4 of 4) sorted by relevance
211 pids = [identifier]213 pids = list(self.get_pids(identifier))219 for pid in pids:226 while pids and time.time() - start_time < signal_duration:228 pids = [pid for pid in pids if self.is_alive(pid)]230 if not pids:
277 List<Integer> pids = new ArrayList<>(); in getRunningProcessIds() local280 pids.add(process.getPid()); in getRunningProcessIds()282 return pids; in getRunningProcessIds()
793 pids = ap.ssh.run('pidof %s' % daemon, ignore_status=True)794 if pids.stdout:795 ap.ssh.run('kill %s' % pids.stdout, ignore_status=True)797 pids = ap.ssh.run('pidof %s' % daemon, ignore_status=True)798 if pids.stdout:
510 pids = re.findall(r"\S+\s+(\d+).*tcpdump -i", out)511 for pid in pids: