Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/src/
H A DvdbeInt.h255 int nLineAlloc; /* Number of spaces allocated for zLine */ member
H A Dvdbe.c4187 if( p->zLine==0 || n+200>p->nLineAlloc ){ in sqliteVdbeExec()
4189 p->nLineAlloc = p->nLineAlloc*2 + 300; in sqliteVdbeExec()
4190 zLine = sqliteRealloc(p->zLine, p->nLineAlloc); in sqliteVdbeExec()
4192 p->nLineAlloc = 0; in sqliteVdbeExec()
4199 if( vdbe_fgets(&p->zLine[n], p->nLineAlloc-n, p->pFile)==0 ){ in sqliteVdbeExec()
H A Dvdbeaux.c802 p->nLineAlloc = 0; in Cleanup()