Lines Matching refs:timestamp

399 #  - timestamp: packed64
401 def summaryFrame(timestamp, uptime):
406 body = newline_canary + packed64(timestamp) + packed64(uptime)
427 # - timestamp: timestamp
430 def threadNameFrame(timestamp, thread_id, name):
433 body = packed_code + timestampList(timestamp) + \
461 # - timestamp: timestamp
465 def counterFrame(timestamp, core, key, value):
467 body = timestampList(timestamp) + packed32(core) + packed32(key) + \
484 # - timestamp: timestamp
487 def annotateFrame(core, tid, timestamp, size, userspace_body):
489 body = packed32(core) + packed32(tid) + timestampList(timestamp) + \
497 # - timestamp: timestamp
502 def schedSwitchFrame(core, timestamp, pid, tid, cookie, state):
504 body = packed32(1) + timestampList(timestamp) + packed32(pid) + \
511 # - timestamp: timestamp
513 def schedThreadExitFrame(core, timestamp, pid, tid, cookie, state):
515 body = packed32(2) + timestampList(timestamp) + packed32(tid)
527 # - timestamp: timestamp
529 def enterIdleFrame(timestamp, core):
531 body = packed32(1) + timestampList(timestamp) + packed32(core)
537 # - timestamp: timestamp
539 def exitIdleFrame(timestamp, core):
541 body = packed32(2) + timestampList(timestamp) + packed32(core)
743 # List of values of stat per timestamp
746 # Whether this stat has been found for the current timestamp
915 # Final tick in gem5 stats: current absolute timestamp
1061 # Threads need to be sorted in timestamp order
1073 timestamp = ticksToNs(event.tick)
1090 print cpu, timestamp, pid, tid, cookie
1093 schedSwitchFrame(cpu, timestamp, pid, tid, cookie, state))