Home
last modified time | relevance | path

Searched refs:new_comm (Results 1 – 16 of 16) sorted by relevance

/external/perfetto/test/trace_processor/process_tracking/
Dsynth_process_tracking.py54 ts=12, tid=21, new_tid=22, new_comm='p2-t2', flags=CLONE_THREAD)
74 ts=22, tid=31, new_tid=32, new_comm='p3-t2', flags=CLONE_THREAD)
76 ts=23, tid=31, new_tid=33, new_comm='p3-t3', flags=CLONE_THREAD)
80 ts=25, tid=32, new_tid=34, new_comm='p3-t4', flags=CLONE_THREAD)
88 trace.add_newtask(ts=27, tid=32, new_tid=40, new_comm='p4-t0', flags=0)
99 ts=30, tid=40, new_tid=31, new_comm='p4-t1', flags=CLONE_THREAD)
Dprocess_tracking_short_lived_2.py34 trace.add_newtask(ts=15, tid=10, new_tid=11, new_comm='child', flags=0)
37 ts=17, tid=11, old_comm='child', new_comm='true_name', oom_score_adj=1000)
Dprocess_tracking_exec.py32 trace.add_newtask(ts=15, tid=10, new_tid=11, new_comm='child', flags=0)
41 ts=25, tid=11, old_comm='child', new_comm='true_name', oom_score_adj=1000)
Dreused_thread_print.py45 ts=15, tid=10, new_tid=11, new_comm='child', flags=CLONE_THREAD)
47 ts=17, tid=11, old_comm='child', new_comm='true_name', oom_score_adj=1000)
Dprocess_parent_pid_tracking_1.py34 trace.add_newtask(ts=15, tid=11, new_tid=20, new_comm='child', flags=0)
Dprocess_parent_pid_tracking_2.py30 trace.add_newtask(ts=15, tid=11, new_tid=20, new_comm='child', flags=0)
Dprocess_tracking_short_lived_1.py33 trace.add_newtask(ts=15, tid=10, new_tid=11, new_comm='child', flags=0)
/external/perfetto/test/trace_processor/parsing/
Drss_stat_mm_id_clone.py44 new_comm="child_process",
71 new_comm="parent_thread",
92 new_comm="kernel_thread2",
Drss_stat_mm_id_reuse.py38 trace.add_newtask(102, tid=1, new_tid=10, new_comm="new_process", flags=0)
Drss_stat_legacy.py33 trace.add_newtask(ts=50, tid=2, new_tid=3, new_comm="kthread_child", flags=0)
Drss_stat_mm_id.py32 trace.add_newtask(ts=50, tid=2, new_tid=3, new_comm="kthread_child", flags=0)
/external/autotest/server/site_tests/platform_KernelErrorPaths/
Dplatform_KernelErrorPaths.py169 new_comm = pair[1]
170 if comm == new_comm:
172 if comm != new_comm:
173 logging.info("comm mismatch: %s != %s", comm, new_comm)
/external/perfetto/test/trace_processor/startup/
Dandroid_startup_process_track.py35 new_comm='com.google.android.calendar',
Dandroid_startup.py53 trace.add_newtask(ts=155, tid=1, new_tid=5, new_comm='', flags=0)
/external/perfetto/test/
Dsynth_common.py132 def add_newtask(self, ts, tid, new_tid, new_comm, flags): argument
136 newtask.comm = new_comm
146 def add_rename(self, ts, tid, old_comm, new_comm, oom_score_adj): argument
151 task_rename.newcomm = new_comm
/external/perfetto/src/trace_processor/importers/ftrace/
Dftrace_parser.cc1102 StringId new_comm = context_->storage->InternString(evt.comm()); in ParseTaskNewTask() local
1113 proc_tracker->StartNewProcess(timestamp, source_tid, new_tid, new_comm); in ParseTaskNewTask()
1126 proc_tracker->UpdateThreadNameByUtid(new_utid, new_comm, in ParseTaskNewTask()