Searched defs:logsize (Results 1 - 8 of 8) sorted by relevance

/illumos-gate/usr/src/lib/libldap5/sources/ldap/util/
H A Dlog.c30 static int logsize = 512000; variable
41 int logsize; member in struct:_logctx
52 logsize = size * 1024;
59 logsize = 0;
130 if ((logsize > 0) && (stat(logfile, &statbuf) == 0 &&
131 statbuf.st_size > logsize)) {
/illumos-gate/usr/src/cmd/isns/isnsd/
H A Disns_htab.h64 uint16_t logsize; member in struct:htab
H A Dhtable.c538 uint16_t logsize; local
546 /* enlarge the logsize by one */
547 logsize = tab->logsize + 1;
548 newsz = (1 << logsize);
554 oldsz = (1 << tab->logsize);
580 tab->logsize = logsize;
607 * logsize - the hash table logsize
614 htab_create( int flags, uint16_t logsize, uint16_t chunks ) argument
[all...]
/illumos-gate/usr/src/uts/common/sys/
H A Dbofi.h78 uint32_t logsize; /* length of the logbase array */ member in struct:acc_log
93 uint32_t logsize; /* length of the logbase array */ member in struct:acc_log32
/illumos-gate/usr/src/cmd/th_tools/
H A Dth_define.c673 ulong_t logsize)
862 (j + acnt + fcnt - 1) / logsize;
1253 errdef->log.logsize = errstate->log.logsize =
1255 if (errdef->log.logsize == -1U) {
1256 errdef->log.logsize = errstate->log.logsize = 0;
1259 (caddr_t)GETSTRUCT(struct acc_log_elem, errdef->log.logsize);
1292 size_t ls = errstate->log.logsize;
1294 msg(2, "collect_state: pre: edp->access_type 0x%x (logsize
666 define_nerrs(int fd, FILE *fp, int *ecnt, struct bofi_errdef *edp, struct acc_log_elem *items, size_t nitems, uint_t naccess, uint_t minac, uint_t maxac, ulong_t logtime, ulong_t logsize) argument
1767 uint_t logsize = edp->access_count + edp->fail_count - 1; local
[all...]
/illumos-gate/usr/src/lib/libumem/common/
H A Dumem.c1272 umem_log_init(size_t logsize) argument
1279 if (logsize == 0)
1296 lhp->lh_chunksize = P2ROUNDUP(logsize / nchunks, PAGESIZE);
/illumos-gate/usr/src/uts/common/os/
H A Ddevcfg.c3276 int logsize = devinfo_log_size; local
3278 if (logsize == 0)
3279 logsize = MIN_DEVINFO_LOG_SIZE;
3280 else if (logsize > MAX_DEVINFO_LOG_SIZE)
3281 logsize = MAX_DEVINFO_LOG_SIZE;
3283 dh = kmem_alloc(logsize * PAGESIZE, KM_SLEEP);
3285 dh->dh_max = ((logsize * PAGESIZE) - sizeof (*dh)) /
H A Dkmem.c1428 kmem_log_init(size_t logsize) argument
1446 lhp->lh_chunksize = P2ROUNDUP(logsize / nchunks + 1, PAGESIZE);

Completed in 84 milliseconds