Lines Matching refs:mop
146 static void PrintMop(const ReportMop *mop, bool first) { in PrintMop() argument
151 MopDesc(first, mop->write, mop->atomic), in PrintMop()
152 mop->size, (void*)mop->addr, in PrintMop()
153 thread_name(thrbuf, mop->tid)); in PrintMop()
154 PrintMutexSet(mop->mset); in PrintMop()
157 PrintStack(mop->stack); in PrintMop()
363 static void PrintMop(const ReportMop *mop, bool first) { in PrintMop() argument
366 (first ? (mop->write ? "Write" : "Read") in PrintMop()
367 : (mop->write ? "Previous write" : "Previous read"))); in PrintMop()
368 if (mop->tid == kMainThreadId) in PrintMop()
371 Printf("goroutine %d:\n", mop->tid); in PrintMop()
372 PrintStack(mop->stack); in PrintMop()