Lines Matching refs:now_p

328     sc_method_handle now_p;     // Method now checking.
329 sc_method_handle prior_p; // Method prior to now_p.
338 for ( now_p = m_methods_push_head; now_p!= SC_NO_METHODS;
339 now_p = now_p->next_runnable() )
341 if ( remove_p == now_p )
343 prior_p->set_next_runnable( now_p->next_runnable() );
344 if (now_p == m_methods_push_tail) {
347 now_p->set_next_runnable(0);
348 DEBUG_MSG(DEBUG_NAME,now_p,"removing method from push queue");
351 prior_p = now_p;
357 for ( now_p = m_methods_pop; now_p != SC_NO_METHODS;
358 now_p = now_p->next_runnable() )
360 if ( remove_p == now_p )
363 prior_p->set_next_runnable( now_p->next_runnable() );
365 m_methods_pop = now_p->next_runnable();
366 now_p->set_next_runnable(0);
367 DEBUG_MSG(DEBUG_NAME,now_p,"removing method from pop queue");
370 prior_p = now_p;
385 sc_thread_handle now_p; // Thread now checking.
386 sc_thread_handle prior_p; // Thread prior to now_p.
395 for ( now_p = m_threads_push_head; now_p != SC_NO_THREADS;
396 now_p = now_p->next_runnable() )
398 if ( remove_p == now_p )
400 prior_p->set_next_runnable( now_p->next_runnable() );
401 if (now_p == m_threads_push_tail) {
404 now_p->set_next_runnable(0);
405 DEBUG_MSG(DEBUG_NAME,now_p,"removing thread from push queue");
408 prior_p = now_p;
414 for ( now_p = m_threads_pop; now_p != SC_NO_THREADS;
415 now_p = now_p->next_runnable() )
417 if ( remove_p == now_p )
420 prior_p->set_next_runnable( now_p->next_runnable() );
422 m_threads_pop = now_p->next_runnable();
423 now_p->set_next_runnable(0);
424 DEBUG_MSG(DEBUG_NAME,now_p,"removing thread from pop queue");
427 prior_p = now_p;