Home | History | Annotate | Download | only in test

Lines Matching defs:thread_id

96     ProcessThreadID() : process_id(0), thread_id(0) {}
97 ProcessThreadID(int process_id, int thread_id)
98 : process_id(process_id), thread_id(thread_id) {}
102 return thread_id < rhs.thread_id;
105 int thread_id;
229 static Query EventTidIs(int thread_id) {
230 return Query(EVENT_TID) == Query::Int(thread_id);
234 return EventPidIs(thread.process_id) && EventTidIs(thread.thread_id);
300 static Query OtherTidIs(int thread_id) {
301 return Query(OTHER_TID) == Query::Int(thread_id);
305 return OtherPidIs(thread.process_id) && OtherTidIs(thread.thread_id);
378 (Query(EVENT_TID) == Query::Int(thread.thread_id));