Home | History | Annotate | Download | only in macosx

Lines Matching defs:mGuard

57     SDLOSXCAGuard             *mGuard;
75 return frt->mGuard;
83 if (frt->mGuard->Try(frt->mGuard, &didLock))
100 frt->mGuard->Notify(frt->mGuard);
104 frt->mGuard->Unlock(frt->mGuard);
124 int bNeedsRelease = frt->mGuard->Lock(frt->mGuard);
147 frt->mGuard->Notify(frt->mGuard); /* wake up thread so it will quit */
148 frt->mGuard->Wait(frt->mGuard); /* wait for thread to die */
151 if (bNeedsRelease) frt->mGuard->Unlock(frt->mGuard);
254 int bNeedsRelease = frt->mGuard->Lock(frt->mGuard);
257 frt->mGuard->Notify(frt->mGuard);
258 if (bNeedsRelease) frt->mGuard->Unlock(frt->mGuard);
265 frt->mGuard->Wait(frt->mGuard);
271 frt->mGuard->Notify(frt->mGuard);
272 if (bNeedsRelease) frt->mGuard->Unlock(frt->mGuard);
287 if (bNeedsRelease) frt->mGuard->Unlock(frt->mGuard);
333 delete_SDLOSXCAGuard(frt->mGuard);
345 frt->mGuard = new_SDLOSXCAGuard();
346 if (frt->mGuard == NULL)