Home
last modified time | relevance | path

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

/external/fio/t/
Dbtrace2fio.c72 struct flist_head pid_list; member
97 static FLIST_HEAD(pid_list);
469 flist_add_tail(&p->pid_list, &pid_list); in pid_hash_get()
829 struct btrace_pid *pa = flist_entry(a, struct btrace_pid, pid_list); in entry_cmp()
830 struct btrace_pid *pb = flist_entry(b, struct btrace_pid, pid_list); in entry_cmp()
849 flist_del(&p->pid_list); in free_p()
940 static void check_merges(struct btrace_pid *p, struct flist_head *pid_list) in check_merges() argument
947 flist_for_each_safe(e, tmp, pid_list) { in check_merges()
950 pidb = flist_entry(e, struct btrace_pid, pid_list); in check_merges()
968 flist_for_each_safe(e, tmp, &pid_list) { in output_p()
[all …]
/external/toybox/toys/pending/
Dnetstat.c72 PID_LIST *pid_list = NULL; variable
112 for (tmp = pid_list; tmp; tmp = tmp->next) in get_pid_name()
396 PID_LIST *node = pid_list; in add2list()
406 new->next = pid_list; in add2list()
407 pid_list = new; in add2list()
467 while (pid_list) { in clean_pid_list()
468 tmp = pid_list->next; in clean_pid_list()
469 free(pid_list); in clean_pid_list()
470 pid_list = tmp; in clean_pid_list()
Dbootchartd.c39 struct pid_list { struct
40 struct pid_list *next, *prev; argument
46 struct pid_list *new = xzalloc(sizeof(struct pid_list)); in push_pids_in_list() argument
269 struct pid_list *temp; in bootchartd_main()
/external/autotest/client/common_lib/
Dsite_utils.py260 def nuke_pids(pid_list, signal_queue=[signal.SIGTERM, signal.SIGKILL]): argument
276 sig_count[sig_names.get(sig, 'unknown_signal')] = len(pid_list)
277 for pid in pid_list:
287 pid_list = [pid for pid in pid_list if base_utils.pid_is_alive(pid)]
288 if not pid_list:
292 for pid in pid_list: