Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/tool/
H A Dlemon.c403 int nActionAlloc; /* Slots allocated for aAction[] */ member
487 if( p->nAction + n >= p->nActionAlloc ){ in acttab_insert()
488 int oldAlloc = p->nActionAlloc; in acttab_insert()
489 p->nActionAlloc = p->nAction + n + p->nActionAlloc + 20; in acttab_insert()
491 sizeof(p->aAction[0])*p->nActionAlloc); in acttab_insert()
496 for(i=oldAlloc; i<p->nActionAlloc; i++){ in acttab_insert()