Home
last modified time | relevance | path

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

/external/ltp/testcases/kernel/mem/mtest01/
Dmtest01.c55 static pid_t *pid_list; variable
68 while (pid_list[i] > 0) { in cleanup()
69 kill(pid_list[i], SIGKILL); in cleanup()
73 free(pid_list); in cleanup()
158 if ((pid_list = malloc(max_pids * sizeof(pid_t))) == NULL) in main()
160 memset(pid_list, 0, max_pids * sizeof(pid_t)); in main()
181 free(pid_list); in main()
198 pid_list[i] = pid; in main()
212 pid_list[i] = pid; in main()
231 pid_list[i] = pid; in main()
[all …]
/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()
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()
971 p = flist_entry(e, struct btrace_pid, pid_list); in output_p()
983 flist_for_each_safe(e, tmp, &pid_list) { in output_p()
[all …]
/external/toybox/toys/pending/
Dbootchartd.c40 struct pid_list { struct
41 struct pid_list *next, *prev; argument
47 struct pid_list *new = xzalloc(sizeof(struct pid_list)); in push_pids_in_list() argument
270 struct pid_list *temp; in bootchartd_main()
/external/autotest/server/site_tests/platform_KernelErrorPaths/
Dplatform_KernelErrorPaths.py161 pid_list = self._client_run_output('ps --ppid %s -o pid= -o comm=' %
163 for line in pid_list:
/external/lisa/libs/utils/analysis/
Dresidency_analysis.py126 self.pid_list = []
159 self.pid_list.append(s[1]['__pid'])
/external/autotest/client/common_lib/
Dutils.py2079 def nuke_pids(pid_list, signal_queue=[signal.SIGTERM, signal.SIGKILL]): argument
2095 sig_count[sig_names.get(sig, 'unknown_signal')] = len(pid_list)
2096 for pid in pid_list:
2106 pid_list = [pid for pid in pid_list if pid_is_alive(pid)]
2107 if not pid_list:
2111 for pid in pid_list: