Searched refs:fRefCount (Results 1 - 25 of 42) sorted by relevance

12

/haiku-fatelf/headers/private/print/
H A DBeUtils.h56 volatile int32 fRefCount; member in class:Object
60 Object() : fRefCount(1) { }
67 atomic_add(&fRefCount, 1);
71 if (atomic_add(&fRefCount, -1) == 1) {
/haiku-fatelf/src/kits/translation/
H A DTranslator.cpp20 fRefCount(1)
37 if (atomic_add(&fRefCount, 1) > 0)
54 int32 oldValue = atomic_add(&fRefCount, -1);
66 return fRefCount;
/haiku-fatelf/src/kits/opengl/
H A DGLRenderer.cpp15 fRefCount(1),
32 atomic_add(&fRefCount, 1);
39 if (atomic_add(&fRefCount, -1) < 1)
/haiku-fatelf/src/kits/tracker/
H A DQueryPoseView.h107 fRefCount(0),
114 ASSERT(fRefCount <= 0);
121 fRefCount++;
127 return atomic_add(&fRefCount, -1) == 0;
131 int32 fRefCount; member in class:BPrivate::QueryEntryListCollection::QueryListRep
/haiku-fatelf/src/kits/media/
H A DSound.cpp25 fRefCount(1),
42 fRefCount(1),
76 fRefCount(1),
107 atomic_add(&fRefCount, 1);
115 if (atomic_add(&fRefCount, -1) == 1) {
128 return fRefCount;
/haiku-fatelf/headers/os/opengl/
H A DGLRenderer.h43 inline int32 ReferenceCount() const { return fRefCount; };
57 volatile int32 fRefCount; // How much we're still usefull? member in class:BGLRenderer
/haiku-fatelf/src/add-ons/kernel/file_systems/ramfs/
H A DNode.cpp32 fRefCount(0),
87 if (++fRefCount == 1) {
90 fRefCount--;
104 if (--fRefCount == 0) {
106 fRefCount++;
114 PRINT(("Node[%Ld]::Link(): %ld ->...\n", fID, fRefCount));
128 PRINT(("Node[%Ld]::Unlink(): %ld ->...\n", fID, fRefCount));
H A DNode.h46 int32 GetRefCount() { return fRefCount; }
112 int32 fRefCount; member in class:Node
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/ramfs/
H A DNode.cpp32 fRefCount(0),
87 if (++fRefCount == 1) {
90 fRefCount--;
104 if (--fRefCount == 0) {
106 fRefCount++;
114 PRINT(("Node[%Ld]::Link(): %ld ->...\n", fID, fRefCount));
128 PRINT(("Node[%Ld]::Unlink(): %ld ->...\n", fID, fRefCount));
H A DNode.h46 int32 GetRefCount() { return fRefCount; }
113 int32 fRefCount; member in class:Node
/haiku-fatelf/src/add-ons/translators/shared/
H A DTranslatorSettings.h78 int32 fRefCount; member in class:TranslatorSettings
H A DTranslatorSettings.cpp61 fRefCount = 1;
113 fRefCount++;
143 fRefCount--;
144 if (fRefCount > 0) {
/haiku-fatelf/src/kits/midi2/
H A DMidiEndpoint.cpp120 int32 old = atomic_add(&fRefCount, -1);
147 atomic_add(&fRefCount, 1);
244 fRefCount = 0;
257 if (fRefCount > 0) {
/haiku-fatelf/headers/private/kernel/vm/
H A DVMCache.h143 { return fRefCount; }
215 int32 fRefCount; member in struct:VMCache
284 fRefCount++;
292 fRefCount++;
302 fRefCount--;
310 fRefCount--;
H A DVMAddressSpace.h53 { return fRefCount; }
55 inline void Get() { atomic_add(&fRefCount, 1); }
142 int32 fRefCount; member in struct:VMAddressSpace
155 if (atomic_add(&fRefCount, -1) == 1)
/haiku-fatelf/src/kits/support/
H A DArchivingManagers.cpp249 fRefCount(0),
291 if (fRefCount > 0) {
334 if (--fRefCount >= 0 && fError == B_OK)
337 if (fRefCount != 0)
407 if (fRefCount >= 0)
408 fRefCount++;
/haiku-fatelf/src/add-ons/kernel/file_systems/reiserfs/
H A DBlock.h82 int32 _GetRefCount() const { return fRefCount; }
94 int32 fRefCount; member in class:Block
H A DBlock.cpp47 fRefCount(0)
206 fRefCount = 0;
213 fRefCount++;
220 return (--fRefCount == 0);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/reiserfs/
H A DBlock.h82 int32 _GetRefCount() const { return fRefCount; }
96 int32 fRefCount; member in class:Block
H A DBlock.cpp45 fRefCount(0),
208 fRefCount = 0;
216 fRefCount++;
223 return (--fRefCount == 0);
/haiku-fatelf/headers/os/media/
H A DSound.h67 int32 fRefCount; member in class:BSound
/haiku-fatelf/headers/os/midi2/
H A DMidiEndpoint.h71 int32 fRefCount; member in class:BMidiEndpoint
/haiku-fatelf/src/add-ons/screen_savers/slideshowsaver/
H A DLiveSettings.cpp62 fRefCount = 1;
100 fRefCount++;
130 fRefCount--;
131 if (fRefCount > 0) {
H A DLiveSettings.h92 int32 fRefCount; member in class:LiveSettings
/haiku-fatelf/src/system/boot/loader/
H A Dvfs.cpp50 int32 RefCount() const { return fRefCount; }
61 int32 fRefCount; member in class:Descriptor
75 fRefCount(1)
139 fRefCount++;
140 TRACE(("%p::Acquire(), fRefCount = %ld\n", this, fRefCount));
148 TRACE(("%p::Release(), fRefCount = %ld\n", this, fRefCount));
149 if (--fRefCount == 0) {
279 fRefCount(
[all...]

Completed in 344 milliseconds

12