Lines Matching refs:auxtrace_error
858 void auxtrace_synth_error(struct auxtrace_error_event *auxtrace_error, int type, in auxtrace_synth_error() argument
864 memset(auxtrace_error, 0, sizeof(struct auxtrace_error_event)); in auxtrace_synth_error()
866 auxtrace_error->header.type = PERF_RECORD_AUXTRACE_ERROR; in auxtrace_synth_error()
867 auxtrace_error->type = type; in auxtrace_synth_error()
868 auxtrace_error->code = code; in auxtrace_synth_error()
869 auxtrace_error->cpu = cpu; in auxtrace_synth_error()
870 auxtrace_error->pid = pid; in auxtrace_synth_error()
871 auxtrace_error->tid = tid; in auxtrace_synth_error()
872 auxtrace_error->ip = ip; in auxtrace_synth_error()
873 strlcpy(auxtrace_error->msg, msg, MAX_AUXTRACE_ERROR_MSG); in auxtrace_synth_error()
875 size = (void *)auxtrace_error->msg - (void *)auxtrace_error + in auxtrace_synth_error()
876 strlen(auxtrace_error->msg) + 1; in auxtrace_synth_error()
877 auxtrace_error->header.size = PERF_ALIGN(size, sizeof(u64)); in auxtrace_synth_error()
1156 struct auxtrace_error_event *e = &event->auxtrace_error; in perf_event__fprintf_auxtrace_error()
1169 struct auxtrace_error_event *e = &event->auxtrace_error; in perf_session__auxtrace_error_inc()