OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:new_procs
(Results
1 - 1
of
1
) sorted by null
/system/core/toolbox/
top.c
83
static struct proc_info **old_procs, **
new_procs
;
variable in typeref:struct:
180
new_procs
= old_procs = NULL;
184
old_procs =
new_procs
;
237
new_procs
= calloc(INIT_PROCS * (threads ? THREAD_MULT : 1), sizeof(struct proc_info *));
319
new_procs
[i] = NULL;
356
new_procs
= realloc(
new_procs
, 2 * num_new_procs * sizeof(struct proc_info *));
357
if (!
new_procs
) die("Could not expand procs array.\n");
359
new_procs
[i] = NULL;
362
new_procs
[proc_num] = proc
[
all
...]
Completed in 307 milliseconds