Searched refs:auxtrace_error (Results 1 – 9 of 9) sorted by relevance
/linux-4.4.14/tools/perf/util/ |
D | auxtrace.c | 823 void auxtrace_synth_error(struct auxtrace_error_event *auxtrace_error, int type, in auxtrace_synth_error() argument 829 memset(auxtrace_error, 0, sizeof(struct auxtrace_error_event)); in auxtrace_synth_error() 831 auxtrace_error->header.type = PERF_RECORD_AUXTRACE_ERROR; in auxtrace_synth_error() 832 auxtrace_error->type = type; in auxtrace_synth_error() 833 auxtrace_error->code = code; in auxtrace_synth_error() 834 auxtrace_error->cpu = cpu; in auxtrace_synth_error() 835 auxtrace_error->pid = pid; in auxtrace_synth_error() 836 auxtrace_error->tid = tid; in auxtrace_synth_error() 837 auxtrace_error->ip = ip; in auxtrace_synth_error() 838 strlcpy(auxtrace_error->msg, msg, MAX_AUXTRACE_ERROR_MSG); in auxtrace_synth_error() [all …]
|
D | session.c | 347 if (tool->auxtrace_error == NULL) in perf_tool__fill_defaults() 348 tool->auxtrace_error = process_event_auxtrace_error_stub; in perf_tool__fill_defaults() 611 event->auxtrace_error.type = bswap_32(event->auxtrace_error.type); in perf_event__auxtrace_error_swap() 612 event->auxtrace_error.code = bswap_32(event->auxtrace_error.code); in perf_event__auxtrace_error_swap() 613 event->auxtrace_error.cpu = bswap_32(event->auxtrace_error.cpu); in perf_event__auxtrace_error_swap() 614 event->auxtrace_error.pid = bswap_32(event->auxtrace_error.pid); in perf_event__auxtrace_error_swap() 615 event->auxtrace_error.tid = bswap_32(event->auxtrace_error.tid); in perf_event__auxtrace_error_swap() 616 event->auxtrace_error.ip = bswap_64(event->auxtrace_error.ip); in perf_event__auxtrace_error_swap() 1181 return tool->auxtrace_error(tool, event, session); in perf_session__process_user_event()
|
D | tool.h | 58 auxtrace_error; member
|
D | intel-bts.c | 141 auxtrace_synth_error(&event.auxtrace_error, PERF_AUXTRACE_ERROR_ITRACE, in intel_bts_lost() 362 auxtrace_synth_error(&event.auxtrace_error, PERF_AUXTRACE_ERROR_ITRACE, in intel_bts_synth_error()
|
D | event.h | 377 struct auxtrace_error_event auxtrace_error; member
|
D | auxtrace.h | 452 void auxtrace_synth_error(struct auxtrace_error_event *auxtrace_error, int type,
|
D | intel-pt.c | 1145 auxtrace_synth_error(&event.auxtrace_error, PERF_AUXTRACE_ERROR_ITRACE, in intel_pt_synth_error()
|
/linux-4.4.14/tools/perf/ |
D | builtin-inject.c | 689 .auxtrace_error = perf_event__repipe_op2_synth, in cmd_inject()
|
D | builtin-script.c | 1725 .auxtrace_error = perf_event__process_auxtrace_error, in cmd_script()
|