/vbox/include/VBox/com/ |
H A D | EventQueue.h | 55 mRefCount(0) { } 56 virtual ~Event(void) { AssertMsg(!mRefCount, 58 this, mRefCount)); } 61 uint32_t AddRef(void) { return ASMAtomicIncU32(&mRefCount); } 64 Assert(mRefCount); 65 uint32_t cRefs = ASMAtomicDecU32(&mRefCount); 85 uint32_t mRefCount; member in class:com::Event
|
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/ |
H A D | UIDnDDropSource_win.cpp | 34 : mRefCount(1), 44 LogFlowFunc(("mRefCount=%RI32\n", mRefCount)); 53 return InterlockedIncrement(&mRefCount); 58 LONG lCount = InterlockedDecrement(&mRefCount);
|
H A D | UIDnDDropSource_win.h | 48 LONG mRefCount; member in class:UIDnDDropSource
|
H A D | UIDnDDataObject_win.h | 90 LONG mRefCount; member in class:UIDnDDataObject
|
H A D | UIDnDDataObject_win.cpp | 49 mRefCount(1), 156 LogFlowFunc(("mRefCount=%RI32\n", mRefCount)); 165 return InterlockedIncrement(&mRefCount); 170 LONG lCount = InterlockedDecrement(&mRefCount);
|
/vbox/src/VBox/Additions/WINNT/VBoxTray/ |
H A D | VBoxDnDDropSource.cpp | 35 : mRefCount(1), 50 LogFlowFunc(("rc=%Rrc, mRefCount=%RI32\n", rc, mRefCount)); 59 return InterlockedIncrement(&mRefCount); 64 LONG lCount = InterlockedDecrement(&mRefCount);
|
H A D | VBoxDnD.h | 89 LONG mRefCount; member in class:VBoxDnDDataObject 123 LONG mRefCount; member in class:VBoxDnDDropSource 164 LONG mRefCount; member in class:VBoxDnDDropTarget
|
H A D | VBoxDnDDataObject.cpp | 46 mRefCount(1), 126 LogFlowFunc(("mRefCount=%RI32\n", mRefCount)); 157 return InterlockedIncrement(&mRefCount); 162 LONG lCount = InterlockedDecrement(&mRefCount);
|
H A D | VBoxDnDDropTarget.cpp | 37 : mRefCount(1), 62 LogFlowFunc(("rc=%Rrc, mRefCount=%RI32\n", rc2, mRefCount)); 71 return InterlockedIncrement(&mRefCount); 76 LONG lCount = InterlockedDecrement(&mRefCount);
|
/vbox/src/libs/xpcom18a4/xpcom/glue/ |
H A D | nsWeakReference.h | 102 : mRefCount(0), 123 nsrefcnt mRefCount; member in class:nsWeakReference
|
H A D | nsWeakReference.cpp | 124 return ++mRefCount; 130 nsrefcnt temp = --mRefCount; 131 if ( !mRefCount )
|
/vbox/src/libs/xpcom18a4/xpcom/string/src/ |
H A D | nsSubstring.cpp | 128 PRInt32 mRefCount; member in class:nsStringHeader 135 PR_AtomicIncrement(&mRefCount); 141 if (PR_AtomicDecrement(&mRefCount) == 0) 169 hdr->mRefCount = 1; 220 return mRefCount > 1;
|
/vbox/src/libs/xpcom18a4/xpcom/tests/ |
H A D | TestAutoPtr.cpp | 92 : mRefCount(0) 106 ++mRefCount; 108 mRefCount, NS_STATIC_CAST(void*, this)); 109 return mRefCount; 114 --mRefCount; 116 mRefCount, NS_STATIC_CAST(void*, this)); 117 if (mRefCount == 0) { 121 return mRefCount; 125 PRUint32 mRefCount; member in class:TestRefObject
|
/vbox/src/VBox/HostServices/GuestControl/ |
H A D | service.cpp | 121 this, mContextID, mRefCount + 1)); 123 return ++mRefCount; 130 this, mContextID, mRefCount - 1)); 133 Assert(mRefCount); 134 if (--mRefCount == 0) 137 return mRefCount; 247 AssertMsg(mRefCount == 0, ("pHostCmd=%p, CID=%RU32 still being used by a client (%RU32 refs), cannot free yet\n", 248 this, mContextID, mRefCount)); 446 uint32_t mRefCount; member in struct:guestControl::HostCommand 753 mID, pHostCmd, pHostCmd->mContextID, pHostCmd->mMsgType, pHostCmd->mParmCount, pHostCmd->mRefCount)); [all...] |
/vbox/src/libs/xpcom18a4/xpcom/obsolete/ |
H A D | nsFileSpec.cpp | 243 ++mData->mRefCount; 252 NS_ASSERTION(mData->mRefCount > 0, "String deleted too many times!"); 253 if (--mData->mRefCount == 0) 277 NS_ASSERTION(mData->mRefCount > 0, "String deleted too many times!"); 278 if (mData->mRefCount == 1) 297 mData->mRefCount--; // Say goodbye 303 mData->mRefCount = 1;
|
H A D | nsFileSpec.h | 306 int mRefCount; member in struct:nsSimpleCharString::Data
|