Searched refs:m_cRefs (Results 1 - 12 of 12) sorted by relevance

/vbox/src/VBox/Additions/WINNT/VBoxCredProv/
H A DVBoxCredProvFactory.cpp34 m_cRefs(1) /* Start with one instance. */
45 LONG cRefs = InterlockedIncrement(&m_cRefs);
54 LONG cRefs = InterlockedDecrement(&m_cRefs);
H A DVBoxCredProvFactory.h48 LONG m_cRefs; member in class:VBoxCredProvFactory
H A DVBoxCredProvProvider.h81 LONG m_cRefs; member in class:VBoxCredProvProvider
H A DVBoxCredentialProvider.cpp83 m_cRefs(1)
104 return InterlockedIncrement(&m_cRefs);
109 ULONG ulTemp = InterlockedDecrement(&m_cRefs);
182 LONG m_cRefs; variable
H A DVBoxCredProvProvider.cpp35 m_cRefs(1),
74 LONG cRefs = InterlockedIncrement(&m_cRefs);
84 LONG cRefs = InterlockedDecrement(&m_cRefs);
H A DVBoxCredProvCredential.h105 LONG m_cRefs; member in class:VBoxCredProvCredential
H A DVBoxCredProvCredential.cpp44 m_cRefs(1),
65 LONG cRefs = InterlockedIncrement(&m_cRefs);
75 LONG cRefs = InterlockedDecrement(&m_cRefs);
/vbox/src/VBox/Main/include/
H A DHGCMObjects.h50 int32_t volatile m_cRefs; member in class:HGCMObject
61 : m_cRefs(0)
68 int32_t refCnt = ASMAtomicIncS32(&m_cRefs);
75 int32_t refCnt = ASMAtomicDecS32(&m_cRefs);
H A DSecretKeyStore.h102 volatile uint32_t m_cRefs; member in class:SecretKey
/vbox/src/VBox/Main/src-all/
H A DSecretKeyStore.cpp28 m_cRefs = 0;
48 Assert(!m_cRefs);
51 m_cRefs = 0;
60 uint32_t cRefs = ASMAtomicIncU32(&m_cRefs);
72 uint32_t cRefs = ASMAtomicDecU32(&m_cRefs);
84 return m_cRefs;
111 AssertReturn(m_cRefs > 0, NULL);
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageUSB.cpp44 m_cRefs(0)
50 return ASMAtomicIncU32(&m_cRefs);
54 ULONG cRefs = ASMAtomicDecU32(&m_cRefs);
99 uint32_t volatile m_cRefs; member in class:MyUSBDevice
/vbox/src/VBox/Frontends/VirtualBox/src/
H A DVBoxFBOverlay.h1273 VBoxVHWARefCounter() : m_cRefs(0) {}
1274 VBoxVHWARefCounter(uint32_t cRefs) : m_cRefs(cRefs) {}
1275 void inc() { ASMAtomicIncU32(&m_cRefs); }
1278 uint32_t cRefs = ASMAtomicDecU32(&m_cRefs);
1283 uint32_t refs() { return ASMAtomicReadU32(&m_cRefs); }
1307 volatile uint32_t m_cRefs;

Completed in 96 milliseconds