Пример #1
0
def prof_timed(args):
    show_profile(
        args, lambda traces: prof.get_duration_profile(traces,
                                                       get_trace_filter(args)))
Пример #2
0
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
 def get_profile(traces):
     return prof.get_duration_profile(traces, "mutex_lock_wait", "mutex_lock_wake")
Пример #6
0
def prof_timed(args):
    show_profile(args, lambda traces: prof.get_duration_profile(traces, get_trace_filter(args)))
Пример #7
0
 def get_profile(traces):
     return prof.get_duration_profile(traces, sample_name_is("mutex_lock_wait"))
Пример #8
0
def get_wait_profile(traces):
    return prof.get_duration_profile(traces, sample_name_is("sched_wait"))
Пример #9
0
def get_wait_profile(traces):
    return prof.get_duration_profile(traces, "sched_wait", "sched_wait_ret")