next 70 kern/include/threadprivate.h void switchframe_switch(struct switchframe **prev, struct switchframe **next);
next 550 kern/thread/thread.c struct thread *cur, *next;
next 635 kern/thread/thread.c next = threadlist_remhead(&curcpu->c_runqueue);
next 636 kern/thread/thread.c if (next == NULL) {
next 641 kern/thread/thread.c } while (next == NULL);
next 651 kern/thread/thread.c curcpu->c_curthread = next;
next 652 kern/thread/thread.c curthread = next;
next 655 kern/thread/thread.c switchframe_switch(&cur->t_context, &next->t_context);
next 101 kern/vm/kmalloc.c struct freelist *next;
next 235 kern/vm/kmalloc.c for (; fl != NULL; fl = fl->next) {
next 311 kern/vm/kmalloc.c for (; fl != NULL; fl = fl->next) {
next 432 kern/vm/kmalloc.c fl = fl->next;
next 491 kern/vm/kmalloc.c fl->next = NULL;
next 494 kern/vm/kmalloc.c fl->next = (struct freelist *)(fla + (i-1)*sizes[blktype]);
next 495 kern/vm/kmalloc.c KASSERT(fl != fl->next);
next 569 kern/vm/kmalloc.c fl->next = NULL;
next 571 kern/vm/kmalloc.c fl->next = (struct freelist *)(prpage + pr->freelist_offset);
next 289 user/testbin/malloctest/malloctest.c struct test3 *next;
next 310 user/testbin/malloctest/malloctest.c tmp->next = list;
next 348 user/testbin/malloctest/malloctest.c tmp = list->next;