Lines Matching refs:pids
99 def send_flush_signal(pids=None): argument
119 if not pids:
121 pids = [pid.strip() for pid in output.split()]
122 pids = pids[1:] # ignore the column header
123 pids = [pid for pid in pids if _has_handler_sig37(pid)]
125 if not pids:
135 adb_shell(['kill', '-37'] + pids)
158 pids = adb_shell(['pidof'] + args.procnames, text=True).split()
160 elif args.pids:
161 pids = args.pids
164 pids = None
167 send_flush_signal(pids)