Lines Matching refs:thr
1261 thr_elem_t *thr = thr_list; in match_entry() local
1263 while (thr) { in match_entry()
1264 if (pthread_equal(thr->thr_id, tid)) { in match_entry()
1265 return (thr); in match_entry()
1267 thr = thr->next; in match_entry()
1281 thr_elem_t *thr = thr_list; in add_entry() local
1293 while (thr->next) { in add_entry()
1294 thr = thr->next; in add_entry()
1296 thr->next = new_e; in add_entry()
1324 thr_elem_t *thr; in door_server() local
1366 if ((thr = match_entry(tid)) == NULL) { in door_server()
1371 thr->doc); in door_server()
1372 xmlFree(thr->doc); in door_server()
1376 thr->doc = resp_buf; in door_server()