Lines Matching refs:DDPhysicalThread
57 struct DDPhysicalThread { struct
86 DDPhysicalThread* CreatePhysicalThread();
87 void DestroyPhysicalThread(DDPhysicalThread *pt);
101 void CycleCheck(DDPhysicalThread *pt, DDLogicalThread *lt, DDMutex *mtx);
102 void Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath);
124 DDPhysicalThread* DD::CreatePhysicalThread() { in CreatePhysicalThread()
125 DDPhysicalThread *pt = (DDPhysicalThread*)MmapOrDie(sizeof(DDPhysicalThread), in CreatePhysicalThread()
130 void DD::DestroyPhysicalThread(DDPhysicalThread *pt) { in DestroyPhysicalThread()
131 pt->~DDPhysicalThread(); in DestroyPhysicalThread()
132 UnmapOrDie(pt, sizeof(DDPhysicalThread)); in DestroyPhysicalThread()
190 DDPhysicalThread *pt = cb->pt; in MutexBeforeLock()
356 void DD::CycleCheck(DDPhysicalThread *pt, DDLogicalThread *lt, in CycleCheck()
398 void DD::Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath) { in Report()