Lines Matching refs:mop
155 static void PrintMop(const ReportMop *mop, bool first) { in PrintMop() argument
160 MopDesc(first, mop->write, mop->atomic), in PrintMop()
161 mop->size, (void*)mop->addr, in PrintMop()
162 thread_name(thrbuf, mop->tid)); in PrintMop()
163 PrintMutexSet(mop->mset); in PrintMop()
166 PrintStack(mop->stack); in PrintMop()
382 static void PrintMop(const ReportMop *mop, bool first) { in PrintMop() argument
385 (first ? (mop->write ? "Write" : "Read") in PrintMop()
386 : (mop->write ? "Previous write" : "Previous read")), mop->addr); in PrintMop()
387 if (mop->tid == kMainThreadId) in PrintMop()
390 Printf("goroutine %d:\n", mop->tid); in PrintMop()
391 PrintStack(mop->stack); in PrintMop()