Home | History | Annotate | Download | only in test

Lines Matching refs:process_id

101     ProcessThreadID() : process_id(0), thread_id(0) {}
102 ProcessThreadID(int process_id, int thread_id)
103 : process_id(process_id), thread_id(thread_id) {}
105 if (process_id != rhs.process_id)
106 return process_id < rhs.process_id;
109 int process_id;
230 static Query EventPidIs(int process_id) {
231 return Query(EVENT_PID) == Query::Int(process_id);
239 return EventPidIs(thread.process_id) && EventTidIs(thread.thread_id);
301 static Query OtherPidIs(int process_id) {
302 return Query(OTHER_PID) == Query::Int(process_id);
310 return OtherPidIs(thread.process_id) && OtherTidIs(thread.thread_id);
382 return (Query(EVENT_PID) == Query::Int(thread.process_id)) &&