Home
last modified time | relevance | path

Searched refs:pids (Results 1 – 4 of 4) sorted by relevance

/development/scripts/
Dacov-llvm.py99 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
[all …]
Dlldbclient.py152 pids = processes[process_name]
153 if len(pids) > 1:
154 msg = "multiple processes match '{}': {}".format(process_name, pids)
158 return pids[0]
Dgdbclient.py152 pids = processes[process_name]
153 if len(pids) > 1:
154 msg = "multiple processes match '{}': {}".format(process_name, pids)
158 return pids[0]
/development/tools/winscope/src/viewers/viewer_transactions/
Dpresenter.ts140 onPidFilterChanged(pids: string[]) {
141 this.pidFilter = pids;