Lines Matching refs:ent
65 void PrintStack(const ReportStack *ent) {
66 if (ent == 0) {
70 for (int i = 0; ent; ent = ent->next, i++) {
71 Printf(" #%d %s %s:%d", i, ent->func, ent->file, ent->line);
72 if (ent->col)
73 Printf(":%d", ent->col);
74 if (ent->module && ent->offset)
75 Printf(" (%s+%p)\n", ent->module, (void*)ent->offset);
77 Printf(" (%p)\n", (void*)ent->pc);
173 ReportStack *SkipTsanInternalFrames(ReportStack *ent) {
174 while (FrameIsInternal(ent) && ent->next)
175 ent = ent->next;
176 return ent;
209 if (ReportStack *ent = SkipTsanInternalFrames(ChooseSummaryStack(rep)))
210 ReportErrorSummary(rep_typ_str, ent->file, ent->line, ent->func);
217 void PrintStack(const ReportStack *ent) {
218 if (ent == 0) {
222 for (int i = 0; ent; ent = ent->next, i++) {
224 ent->func, ent->file, ent->line, (void*)ent->offset);