Searched refs:tlpp (Results 1 – 2 of 2) sorted by relevance
126 lock_t *volatile *tlpp = &t->t_lockp; in thread_lock() local127 lock_t *lp = *tlpp; in thread_lock()129 if (lp == *tlpp) { in thread_lock()143 while (lp == *tlpp && LOCK_HELD(lp)) { in thread_lock()169 lock_t *volatile *tlpp = &t->t_lockp; in thread_lock_high() local170 lock_t *lp = *tlpp; in thread_lock_high()172 if (lp == *tlpp) in thread_lock_high()178 while (lp == *tlpp && LOCK_HELD(lp)) { in thread_lock_high()
2865 struct transit_list **tlpp; in transit_list_remove() local2868 tlpp = &trh->trh_head; in transit_list_remove()2870 while (*tlpp != NULL && *tlpp != tlp) in transit_list_remove()2871 tlpp = &(*tlpp)->trl_next; in transit_list_remove()2872 ASSERT(*tlpp != NULL); in transit_list_remove()2873 if (*tlpp == tlp) in transit_list_remove()2874 *tlpp = tlp->trl_next; in transit_list_remove()