Searched refs:mInUseFlag (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10/OpenAL-54/Source/OpenAL/
H A DoalCaptureDevice.h64 void SetInUseFlag() { OSAtomicIncrement32Barrier(&mInUseFlag); }
65 void ClearInUseFlag() { OSAtomicDecrement32Barrier(&mInUseFlag); }
66 volatile int32_t IsInUse() { return mInUseFlag; }
88 volatile int32_t mInUseFlag; // flag to indicate the device is currently being used by one or more threads member in class:OALCaptureDevice
H A DoalDevice.h83 volatile int32_t IsInUse() { return mInUseFlag; }
84 void SetInUseFlag() { OSAtomicIncrement32Barrier(&mInUseFlag); }
85 void ClearInUseFlag() { OSAtomicDecrement32Barrier(&mInUseFlag); }
141 volatile int32_t mInUseFlag; // flag to indicate if the device is currently being edited by one or more threads member in class:OALDevice
H A DoalContext.h190 volatile int32_t IsInUse() { return mInUseFlag; }
191 void SetInUseFlag() { OSAtomicIncrement32Barrier(&mInUseFlag); }
192 void ClearInUseFlag() { OSAtomicDecrement32Barrier(&mInUseFlag); }
243 volatile int32_t mInUseFlag; member in class:OALContext
H A DoalBuffer.h148 void SetInUseFlag() { OSAtomicIncrement32Barrier(&mInUseFlag); }
149 void ClearInUseFlag() { OSAtomicDecrement32Barrier(&mInUseFlag); }
182 volatile int32_t mInUseFlag; // flag to indicate if the buffer is currently being edited by one or more threads member in class:OALBuffer
H A DoalBuffer.cpp48 mInUseFlag(0),
140 if ((mAttachedSourceList->Size() == 0) && mBufferLock.IsFree() && (mInUseFlag <= 0) && (!IsInPostRenderMessageQueue()))
H A DoalSource.h471 volatile int32_t mInUseFlag; // flag to indicate a source is currently being used by one or more threads member in class:OALSource
686 void SetInUseFlag() { OSAtomicIncrement32Barrier(&mInUseFlag); }
687 void ClearInUseFlag() { OSAtomicDecrement32Barrier(&mInUseFlag); }
699 bool IsSafeForDeletion () { return (mSafeForDeletion && (mInUseFlag <= 0) && mSourceLock.IsFree()); }
H A DoalCaptureDevice.cpp49 mInUseFlag(0)
H A DoalDevice.cpp92 mInUseFlag(0)
H A DoalContext.cpp58 mInUseFlag(0),
H A DoalSource.cpp116 mInUseFlag(0),

Completed in 235 milliseconds