Searched refs:pid_and_tid (Results 1 – 1 of 1) sorted by relevance
/external/chromium_org/tools/cygprofile/ |
D | mergetraces.py | 149 def PidAndTidFromString(pid_and_tid): argument 150 strings = pid_and_tid.split(':') 157 for (sec, usec, pid_and_tid, _) in input_trace: 158 (pid, tid) = PidAndTidFromString(pid_and_tid) 172 (sec1, usec1, pid_and_tid, _) = event1 173 (pid1, tid1) = PidAndTidFromString(pid_and_tid) 174 (sec2, usec2, pid_and_tid, _) = event2 175 (pid2, tid2) = PidAndTidFromString(pid_and_tid)
|