Lines Matching refs:mop
146 static void PrintMop(const ReportMop *mop, bool first) { in PrintMop() argument
150 if (mop->external_tag == kExternalTagNone) { in PrintMop()
152 MopDesc(first, mop->write, mop->atomic), mop->size, in PrintMop()
153 (void *)mop->addr, thread_name(thrbuf, mop->tid)); in PrintMop()
155 const char *object_type = GetObjectTypeFromTag(mop->external_tag); in PrintMop()
159 ExternalMopDesc(first, mop->write), object_type, in PrintMop()
160 (void *)mop->addr, thread_name(thrbuf, mop->tid)); in PrintMop()
162 PrintMutexSet(mop->mset); in PrintMop()
165 PrintStack(mop->stack); in PrintMop()
399 static void PrintMop(const ReportMop *mop, bool first) { in PrintMop() argument
402 (first ? (mop->write ? "Write" : "Read") in PrintMop()
403 : (mop->write ? "Previous write" : "Previous read")), in PrintMop()
404 reinterpret_cast<void *>(mop->addr)); in PrintMop()
405 if (mop->tid == kMainGoroutineId) in PrintMop()
408 Printf("goroutine %d:\n", mop->tid); in PrintMop()
409 PrintStack(mop->stack); in PrintMop()