next               69 plugin/pid/virtualpidtable.cpp   id_iterator next;
next               75 plugin/pid/virtualpidtable.cpp   for (i = _idMapTable.begin(), next = i; i != _idMapTable.end(); i = next) {
next               76 plugin/pid/virtualpidtable.cpp     next++;
next               51 plugin/timer/timer_create.cpp   struct timer *next;
next              134 plugin/timer/timer_create.cpp     newp->next = active_timer_sigev_thread;
next              212 plugin/timer/timer_create.cpp             runp = runp->next;
next               65 threadinfo.h     Thread *next;
next              189 threadlist.cpp   th->next  = NULL;
next              422 threadlist.cpp   Thread *next;
next              432 threadlist.cpp     for (thread = activeThreads; thread != NULL; thread = next) {
next              433 threadlist.cpp       next = thread->next;
next              675 threadlist.cpp   for (thread = activeThreads; thread != NULL; thread = thread->next) {
next              817 threadlist.cpp     next_thread = thread->next;
next              839 threadlist.cpp   curThread->next = activeThreads;
next              870 threadlist.cpp     thread->prev->next = thread->next;
next              872 threadlist.cpp   if (thread->next != NULL) {
next              873 threadlist.cpp     thread->next->prev = thread->prev;
next              876 threadlist.cpp     activeThreads = activeThreads->next;
next              879 threadlist.cpp   thread->next = threads_freelist;
next              898 threadlist.cpp     threads_freelist = threads_freelist->next;
next              916 threadlist.cpp     threads_freelist = threads_freelist->next;
next              183 util_misc.cpp    size_t next = 0;
next              186 util_misc.cpp      next = s.find_first_of(delims, offset);
next              187 util_misc.cpp      if (next == string::npos) {
next              192 util_misc.cpp      tokens.push_back(s.substr(offset, next - offset));
next              193 util_misc.cpp      offset = next + 1;