Symbol: statics
usr.bin/top/commands.c
675
if (gstate->statics->flags.fullcmds)
usr.bin/top/commands.c
693
if (gstate->statics->order_names != NULL)
usr.bin/top/commands.c
698
if ((i = string_index(tmpbuf, gstate->statics->order_names)) == -1)
usr.bin/top/commands.c
721
names = gstate->statics->order_names;
usr.bin/top/commands.c
886
if (gstate->statics->modemax <= 1)
usr.bin/top/commands.c
890
gstate->pselect.mode = (gstate->pselect.mode + 1) % gstate->statics->modemax;
usr.bin/top/commands.c
908
if (gstate->statics->flags.threads)
usr.bin/top/display.c
753
display_init(struct statics *statics)
usr.bin/top/display.c
778
kernel_names = statics->kernel_names;
usr.bin/top/display.c
791
swap_names = statics->swap_names;
usr.bin/top/display.c
808
procstate_names = statics->procstate_names;
usr.bin/top/display.c
813
cpustate_names = statics->cpustate_names;
usr.bin/top/display.c
817
memory_names = statics->memory_names;
usr.bin/top/display.h
44
int display_init(struct statics *statics);
usr.bin/top/globalstate.h
63
struct statics *statics;
usr.bin/top/m_dragonfly.c
253
machine_init(struct statics *statics)
usr.bin/top/m_dragonfly.c
304
statics->procstate_names = procstatenames;
usr.bin/top/m_dragonfly.c
305
statics->cpustate_names = cpustatenames;
usr.bin/top/m_dragonfly.c
306
statics->memory_names = memorynames;
usr.bin/top/m_dragonfly.c
307
statics->unused01 = 0;
usr.bin/top/m_dragonfly.c
308
statics->swap_names = swapnames;
usr.bin/top/m_dragonfly.c
309
statics->order_names = ordernames;
usr.bin/top/m_dragonfly.c
311
statics->flags.fullcmds = kd != NULL;
usr.bin/top/m_dragonfly.c
312
statics->flags.threads = 1;
usr.bin/top/machine.h
112
int machine_init(struct statics *);
usr.bin/top/top.c
719
struct statics statics;
usr.bin/top/top.c
754
gstate->statics = &statics;
usr.bin/top/top.c
809
memzero((void *)&statics, sizeof(statics));
usr.bin/top/top.c
812
if (machine_init(&statics) == -1)
usr.bin/top/top.c
818
gstate->order_namelist = string_list(statics.order_names);
usr.bin/top/top.c
825
if (statics.order_names == NULL)
usr.bin/top/top.c
830
statics.order_names)) == -1)
usr.bin/top/top.c
880
if ((gstate->max_topn = display_init(&statics)) == -1)
usr.bin/top/top.c
942
if (gstate->interactive == 0 || statics.flags.warmup)