Home
last modified time | relevance | path

Searched refs:time_conv (Results 1 – 9 of 9) sorted by relevance

/linux/tools/perf/util/
H A Djitdump.c208 if (jd->use_arch_timestamp && !jd->session->time_conv.time_mult) { in jit_open()
397 struct perf_record_time_conv *time_conv = &jd->session->time_conv; in convert_timestamp() local
402 tc.time_shift = time_conv->time_shift; in convert_timestamp()
403 tc.time_mult = time_conv->time_mult; in convert_timestamp()
404 tc.time_zero = time_conv->time_zero; in convert_timestamp()
412 if (event_contains(*time_conv, time_cycles)) { in convert_timestamp()
413 tc.time_cycles = time_conv->time_cycles; in convert_timestamp()
414 tc.time_mask = time_conv->time_mask; in convert_timestamp()
415 tc.cap_user_time_zero = time_conv->cap_user_time_zero; in convert_timestamp()
416 tc.cap_user_time_short = time_conv->cap_user_time_short; in convert_timestamp()
H A Dsession.c691 event->time_conv.time_shift = bswap_64(event->time_conv.time_shift); in perf_event__time_conv_swap()
692 event->time_conv.time_mult = bswap_64(event->time_conv.time_mult); in perf_event__time_conv_swap()
693 event->time_conv.time_zero = bswap_64(event->time_conv.time_zero); in perf_event__time_conv_swap()
695 if (event_contains(event->time_conv, time_cycles)) { in perf_event__time_conv_swap()
696 event->time_conv.time_cycles = bswap_64(event->time_conv.time_cycles); in perf_event__time_conv_swap()
697 event->time_conv.time_mask = bswap_64(event->time_conv.time_mask); in perf_event__time_conv_swap()
1670 session->time_conv = event->time_conv; in perf_session__process_user_event()
1671 err = tool->time_conv(tool, session, event); in perf_session__process_user_event()
H A Dtool.h76 time_conv, member
H A Dtool.c329 tool->time_conv = process_event_time_conv_stub; in perf_tool__init()
435 CREATE_DELEGATE_OP2(time_conv);
508 tool->tool.time_conv = delegate_time_conv; in delegate_tool__init()
H A Dsession.h61 struct perf_record_time_conv time_conv; member
H A Darm-spe.c1892 struct perf_record_time_conv *tc = &session->time_conv; in arm_spe_process_auxtrace_info()
H A Dcs-etm.c3363 struct perf_record_time_conv *tc = &session->time_conv; in cs_etm__process_auxtrace_info_full()
/linux/tools/perf/
H A Dbuiltin-inject.c1598 static void get_tsc_conv(struct perf_tsc_conversion *tc, struct perf_record_time_conv *time_conv) in get_tsc_conv() argument
1600 tc->time_shift = time_conv->time_shift; in get_tsc_conv()
1601 tc->time_mult = time_conv->time_mult; in get_tsc_conv()
1602 tc->time_zero = time_conv->time_zero; in get_tsc_conv()
1603 tc->time_cycles = time_conv->time_cycles; in get_tsc_conv()
1604 tc->time_mask = time_conv->time_mask; in get_tsc_conv()
1605 tc->cap_user_time_zero = time_conv->cap_user_time_zero; in get_tsc_conv()
1606 tc->cap_user_time_short = time_conv->cap_user_time_short; in get_tsc_conv()
1613 get_tsc_conv(&gs->host_tc, &inject->session->time_conv); in guest_session__get_tc()
1614 get_tsc_conv(&gs->guest_tc, &gs->session->time_conv); in guest_session__get_tc()
[all …]
/linux/tools/lib/perf/include/perf/
H A Devent.h627 struct perf_record_time_conv time_conv; member