Lines Matching refs:any
97 if (p && p->any.type == t) in DRD_()
113 if (a1 <= p->any.a1 && p->any.a1 < a2) in DRD_()
139 p->any.a1 = a1; in DRD_()
140 p->any.type = t; in DRD_()
141 p->any.first_observed_at = VG_(record_ExeContext)(VG_(get_running_tid)(), 0); in DRD_()
163 tl_assert(p->any.type == t); in DRD_()
181 DRD_(trace_msg)("Removing client object 0x%lx of type %d", p->any.a1, in clientobj_remove_obj()
182 (Int)p->any.type); in clientobj_remove_obj()
189 tl_assert(p->any.cleanup); in clientobj_remove_obj()
190 (*p->any.cleanup)(p); in clientobj_remove_obj()
191 VG_(OSetGen_Remove)(s_clientobj_set, &p->any.a1); in clientobj_remove_obj()
214 for ( ; (p = VG_(OSetGen_Next)(s_clientobj_set)) != 0 && p->any.a1 < a2; ) in DRD_()
216 tl_assert(a1 <= p->any.a1); in DRD_()
217 removed_at = p->any.a1; in DRD_()
238 if (p->any.delete_thread) in DRD_()
240 (*p->any.delete_thread)(p, tid); in DRD_()