Home | History | Annotate | Download | only in rtl

Lines Matching full:loc

110 static void PrintLocation(const ReportLocation *loc) {
112 if (loc->type == ReportLocationGlobal) {
114 loc->name, loc->size, loc->addr, loc->module, loc->offset);
115 } else if (loc->type == ReportLocationHeap) {
118 loc->size, loc->addr, thread_name(thrbuf, loc->tid));
119 PrintStack(loc->stack);
120 } else if (loc->type == ReportLocationStack) {
121 Printf(" Location is stack of %s.\n\n", thread_name(thrbuf, loc->tid));
122 } else if (loc->type == ReportLocationTLS) {
123 Printf(" Location is TLS of %s.\n\n", thread_name(thrbuf, loc->tid));
124 } else if (loc->type == ReportLocationFD) {
126 loc->fd, thread_name(thrbuf, loc->tid));
127 PrintStack(loc->stack);