Lines Matching refs:mop
153 static void PrintMop(const ReportMop *mop, bool first) { in PrintMop() argument
158 MopDesc(first, mop->write, mop->atomic), in PrintMop()
159 mop->size, (void*)mop->addr, in PrintMop()
160 thread_name(thrbuf, mop->tid)); in PrintMop()
161 PrintMutexSet(mop->mset); in PrintMop()
164 PrintStack(mop->stack); in PrintMop()
380 static void PrintMop(const ReportMop *mop, bool first) { in PrintMop() argument
383 (first ? (mop->write ? "Write" : "Read") in PrintMop()
384 : (mop->write ? "Previous write" : "Previous read"))); in PrintMop()
385 if (mop->tid == kMainThreadId) in PrintMop()
388 Printf("goroutine %d:\n", mop->tid); in PrintMop()
389 PrintStack(mop->stack); in PrintMop()