OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:old_procs
(Results
1 - 2
of
2
) sorted by null
/system/core/toolbox/
top.c
84
static struct proc_info **
old_procs
, **new_procs;
variable in typeref:struct:proc_info
179
new_procs =
old_procs
= NULL;
183
old_procs
= new_procs;
493
if (
old_procs
[i] && (
old_procs
[i]->pid == pid) && (
old_procs
[i]->tid == tid))
494
return
old_procs
[i];
503
if (
old_procs
[i])
504
free_proc(
old_procs
[i]);
506
free(
old_procs
);
[
all
...]
/external/toybox/toys/pending/
top.c
85
static struct proc_info *free_procs, **
old_procs
, **new_procs;
variable in typeref:struct:
93
for (i = 0;
old_procs
&&
old_procs
[i]; i++)
94
if (
old_procs
[i]->pid == pid) return
old_procs
[i];
781
old_procs
= new_procs;
786
free_procs_arr(
old_procs
);
Completed in 644 milliseconds