Exemplo n.º 1
0
def prof_timed(args):
    show_profile(
        args, lambda traces: prof.get_duration_profile(traces,
                                                       get_trace_filter(args)))
Exemplo n.º 2
0
def get_wait_profile(traces):
    return prof.get_duration_profile(traces, "sched_wait", "sched_wait_ret")
Exemplo n.º 3
0
def get_wait_profile(traces):
    return prof.get_duration_profile(traces, sample_name_is("sched_wait"))
Exemplo n.º 4
0
 def get_profile(traces):
     return prof.get_duration_profile(traces,
                                      sample_name_is("mutex_lock_wait"))
Exemplo n.º 5
0
 def get_profile(traces):
     return prof.get_duration_profile(traces, "mutex_lock_wait", "mutex_lock_wake")
Exemplo n.º 6
0
def prof_timed(args):
    show_profile(args, lambda traces: prof.get_duration_profile(traces, get_trace_filter(args)))
Exemplo n.º 7
0
 def get_profile(traces):
     return prof.get_duration_profile(traces, sample_name_is("mutex_lock_wait"))
Exemplo n.º 8
0
def get_wait_profile(traces):
    return prof.get_duration_profile(traces, sample_name_is("sched_wait"))
Exemplo n.º 9
0
def get_wait_profile(traces):
    return prof.get_duration_profile(traces, "sched_wait", "sched_wait_ret")