Home
last modified time | relevance | path

Searched refs:numrecords (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/libzutil/common/
H A Dzutil_pool.c109 nvlist_t ***records, uint_t *numrecords) in zpool_history_unpack() argument
132 (*numrecords)++; in zpool_history_unpack()
133 if (ISP2(*numrecords + 1)) { in zpool_history_unpack()
135 *numrecords * 2 * sizeof (nvlist_t *)); in zpool_history_unpack()
138 (*numrecords)--; in zpool_history_unpack()
143 (*records)[*numrecords - 1] = nv; in zpool_history_unpack()
/illumos-gate/usr/src/lib/libzfs/common/
H A Dlibzfs_pool.c4380 uint_t numrecords = 0; in zpool_get_history() local
4402 &leftover, &records, &numrecords)) != 0) in zpool_get_history()
4423 records, numrecords) == 0); in zpool_get_history()
4425 for (i = 0; i < numrecords; i++) in zpool_get_history()
/illumos-gate/usr/src/cmd/zpool/
H A Dzpool_main.c8008 uint_t numrecords; in print_history_records() local
8012 &records, &numrecords) == 0); in print_history_records()
8013 for (i = 0; i < numrecords; i++) { in print_history_records()
/illumos-gate/usr/src/contrib/mDNSResponder/mDNSCore/
H A DmDNS.c14471 mDNSlocal void mDNS_GrowCache_internal(mDNS *const m, CacheEntity *storage, mDNSu32 numrecords) in mDNS_GrowCache_internal() argument
14473 if (storage && numrecords) in mDNS_GrowCache_internal()
14476 …debugf("Adding cache storage for %d more records (%d bytes)", numrecords, numrecords*sizeof(CacheE… in mDNS_GrowCache_internal()
14477 for (i=0; i<numrecords; i++) storage[i].next = &storage[i+1]; in mDNS_GrowCache_internal()
14478 storage[numrecords-1].next = m->rrcache_free; in mDNS_GrowCache_internal()
14480 m->rrcache_size += numrecords; in mDNS_GrowCache_internal()
14484 mDNSexport void mDNS_GrowCache(mDNS *const m, CacheEntity *storage, mDNSu32 numrecords) in mDNS_GrowCache() argument
14487 mDNS_GrowCache_internal(m, storage, numrecords); in mDNS_GrowCache()
H A DmDNSEmbeddedAPI.h2585 extern void mDNS_GrowCache (mDNS *const m, CacheEntity *storage, mDNSu32 numrecords);