コード例 #1
0
def prof_timed(args):
    show_profile(
        args, lambda traces: prof.get_duration_profile(traces,
                                                       get_trace_filter(args)))
コード例 #2
0
ファイル: trace.py プロジェクト: vyommani/osv
def get_wait_profile(traces):
    return prof.get_duration_profile(traces, "sched_wait", "sched_wait_ret")
コード例 #3
0
def get_wait_profile(traces):
    return prof.get_duration_profile(traces, sample_name_is("sched_wait"))
コード例 #4
0
 def get_profile(traces):
     return prof.get_duration_profile(traces,
                                      sample_name_is("mutex_lock_wait"))
コード例 #5
0
ファイル: trace.py プロジェクト: huawei-erc/osv-aarch64
 def get_profile(traces):
     return prof.get_duration_profile(traces, "mutex_lock_wait", "mutex_lock_wake")
コード例 #6
0
ファイル: trace.py プロジェクト: Samsara00/osv
def prof_timed(args):
    show_profile(args, lambda traces: prof.get_duration_profile(traces, get_trace_filter(args)))
コード例 #7
0
ファイル: trace.py プロジェクト: Samsara00/osv
 def get_profile(traces):
     return prof.get_duration_profile(traces, sample_name_is("mutex_lock_wait"))
コード例 #8
0
ファイル: trace.py プロジェクト: Samsara00/osv
def get_wait_profile(traces):
    return prof.get_duration_profile(traces, sample_name_is("sched_wait"))
コード例 #9
0
ファイル: trace.py プロジェクト: janikokkonen/osv
def get_wait_profile(traces):
    return prof.get_duration_profile(traces, "sched_wait", "sched_wait_ret")