Lines Matching refs:auxtrace_error
864 void auxtrace_synth_error(struct perf_record_auxtrace_error *auxtrace_error, int type, in auxtrace_synth_error() argument
870 memset(auxtrace_error, 0, sizeof(struct perf_record_auxtrace_error)); in auxtrace_synth_error()
872 auxtrace_error->header.type = PERF_RECORD_AUXTRACE_ERROR; in auxtrace_synth_error()
873 auxtrace_error->type = type; in auxtrace_synth_error()
874 auxtrace_error->code = code; in auxtrace_synth_error()
875 auxtrace_error->cpu = cpu; in auxtrace_synth_error()
876 auxtrace_error->pid = pid; in auxtrace_synth_error()
877 auxtrace_error->tid = tid; in auxtrace_synth_error()
878 auxtrace_error->fmt = 1; in auxtrace_synth_error()
879 auxtrace_error->ip = ip; in auxtrace_synth_error()
880 auxtrace_error->time = timestamp; in auxtrace_synth_error()
881 strlcpy(auxtrace_error->msg, msg, MAX_AUXTRACE_ERROR_MSG); in auxtrace_synth_error()
883 size = (void *)auxtrace_error->msg - (void *)auxtrace_error + in auxtrace_synth_error()
884 strlen(auxtrace_error->msg) + 1; in auxtrace_synth_error()
885 auxtrace_error->header.size = PERF_ALIGN(size, sizeof(u64)); in auxtrace_synth_error()
1174 struct perf_record_auxtrace_error *e = &event->auxtrace_error; in perf_event__fprintf_auxtrace_error()
1202 struct perf_record_auxtrace_error *e = &event->auxtrace_error; in perf_session__auxtrace_error_inc()