taglinefilesource code
timer_rand_state227drivers/char/random.cstatic struct timer_rand_state keyboard_timer_state;
timer_rand_state228drivers/char/random.cstatic struct timer_rand_state mouse_timer_state;
timer_rand_state229drivers/char/random.cstatic struct timer_rand_state extract_timer_state;
timer_rand_state230drivers/char/random.cstatic struct timer_rand_state *irq_timer_state[NR_IRQS];
timer_rand_state231drivers/char/random.cstatic struct timer_rand_state *blkdev_timer_state[MAX_BLKDEV];
timer_rand_state263drivers/char/random.cstruct timer_rand_state *state;
timer_rand_state272drivers/char/random.cstate = kmalloc(sizeof(struct timer_rand_state), GFP_KERNEL);
timer_rand_state275drivers/char/random.cmemset(state, 0, sizeof(struct timer_rand_state));
timer_rand_state281drivers/char/random.cstruct timer_rand_state *state;
timer_rand_state290drivers/char/random.cstate = kmalloc(sizeof(struct timer_rand_state), GFP_KERNEL);
timer_rand_state293drivers/char/random.cmemset(state, 0, sizeof(struct timer_rand_state));
timer_rand_state354drivers/char/random.cstruct timer_rand_state *state, unsigned num)