Lines Matching refs:auxtrace_error
1161 void auxtrace_synth_error(struct perf_record_auxtrace_error *auxtrace_error, int type, in auxtrace_synth_error() argument
1167 memset(auxtrace_error, 0, sizeof(struct perf_record_auxtrace_error)); in auxtrace_synth_error()
1169 auxtrace_error->header.type = PERF_RECORD_AUXTRACE_ERROR; in auxtrace_synth_error()
1170 auxtrace_error->type = type; in auxtrace_synth_error()
1171 auxtrace_error->code = code; in auxtrace_synth_error()
1172 auxtrace_error->cpu = cpu; in auxtrace_synth_error()
1173 auxtrace_error->pid = pid; in auxtrace_synth_error()
1174 auxtrace_error->tid = tid; in auxtrace_synth_error()
1175 auxtrace_error->fmt = 1; in auxtrace_synth_error()
1176 auxtrace_error->ip = ip; in auxtrace_synth_error()
1177 auxtrace_error->time = timestamp; in auxtrace_synth_error()
1178 strlcpy(auxtrace_error->msg, msg, MAX_AUXTRACE_ERROR_MSG); in auxtrace_synth_error()
1180 size = (void *)auxtrace_error->msg - (void *)auxtrace_error + in auxtrace_synth_error()
1181 strlen(auxtrace_error->msg) + 1; in auxtrace_synth_error()
1182 auxtrace_error->header.size = PERF_ALIGN(size, sizeof(u64)); in auxtrace_synth_error()
1596 struct perf_record_auxtrace_error *e = &event->auxtrace_error; in perf_event__fprintf_auxtrace_error()
1624 struct perf_record_auxtrace_error *e = &event->auxtrace_error; in perf_session__auxtrace_error_inc()