HomeSort by: relevance | last modified time | path
    Searched defs:refCount (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/mDNSResponder/dist/mDNSCore/
uDNS.h 81 (OBJ)->refCount++; \
83 "DNS push object retained - object: %p, refCount after retaining: %u.", (OBJ), (OBJ)->refCount); \
89 (OBJ)->refCount--; \
91 "DNS push object released - object: %p, refCount after releasing: %u.", (OBJ), (OBJ)->refCount); \
92 if ((OBJ)->refCount == 0) \
103 uint32_t refCount; // Reference count used by DNS_PUSH_RETAIN and DNS_PUSH_RELEASE.
122 uint32_t refCount; // Reference count used by DNS_PUSH_RETAIN and DNS_PUSH_RELEASE.
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState.h 88 unsigned refCount;
  /src/usr.bin/make/
suff.c 180 int refCount;
248 suff->refCount++;
257 (*var)->refCount--;
259 suff->refCount++;
267 (*var)->refCount--;
363 suff->refCount--;
379 if (suff->refCount != 0)
380 Punt("Internal error deleting suffix `%s' with refcount = %d",
381 suff->name, suff->refCount);
397 if (suff->refCount == 0)
    [all...]
dir.c 221 int refCount;
282 dir->refCount = 0;
296 dir->refCount++;
300 dir, dir->refCount, dir->name);
309 dir->refCount--;
313 dir, dir->refCount, dir->name);
316 if (dir->refCount > 0)
361 DEBUG2(DIR, "OpenDirs_Done: refCount %d for \"%s\"\n",
362 dir->refCount, dir->name);
1645 dir->refCount, dir->hits, dir->name)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
ImmutableSet.h 235 uint32_t refCount = 0;
331 void retain() { ++refCount; }
334 assert(refCount > 0);
335 if (--refCount == 0)
491 if (N->isMutable() && N->refCount == 0)
635 if (TNew->refCount == 0)
  /src/external/public-domain/sqlite/dist/autosetup/
jimsh0.c 364 int refCount;
438 ++(objPtr)->refCount
440 if (--(objPtr)->refCount <= 0) Jim_FreeObj(interp, objPtr)
442 ((objPtr)->refCount > 1)
515 int refCount;
5427 int refcount; member in struct:WaitInfoTable
5439 if (--table->refcount == 0) {
5450 table->refcount = 1;
6174 waitinfo->refcount++;
8795 objPtr->refCount = 0
    [all...]
  /src/external/apache2/mDNSResponder/dist/Clients/dnssdutil/
dnssdutil.c 3026 int32_t refCount; // Reference count.
6372 int32_t refCount; // This object's reference count.
6623 obj->refCount = 1;
6641 ++inConnection->refCount;
6650 if( --inConnection->refCount == 0 ) free( inConnection );
8477 int32_t refCount; // Object's reference count.
8674 obj->refCount = 1;
8692 atomic_add_32( &inCmd->refCount, 1 );
8699 if( atomic_add_and_fetch_32( &inCmd->refCount, -1 ) == 0 )
20644 int32_t refCount; // Test object's reference count
    [all...]

Completed in 61 milliseconds