Lines Matching refs:auxtrace_error
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()
840 size = (void *)auxtrace_error->msg - (void *)auxtrace_error + in auxtrace_synth_error()
841 strlen(auxtrace_error->msg) + 1; in auxtrace_synth_error()
842 auxtrace_error->header.size = PERF_ALIGN(size, sizeof(u64)); in auxtrace_synth_error()
1106 struct auxtrace_error_event *e = &event->auxtrace_error; in perf_event__fprintf_auxtrace_error()
1119 struct auxtrace_error_event *e = &event->auxtrace_error; in perf_session__auxtrace_error_inc()