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

/osnet-11/usr/src/lib/libsqlite/src/
H A DvdbeInt.h258 int nLineAlloc; /* Number of spaces allocated for zLine */ member in struct:Vdbe
H A Dvdbe.c4189 if( p->zLine==0 || n+200>p->nLineAlloc ){
4191 p->nLineAlloc = p->nLineAlloc*2 + 300;
4192 zLine = sqliteRealloc(p->zLine, p->nLineAlloc);
4194 p->nLineAlloc = 0;
4201 if( vdbe_fgets(&p->zLine[n], p->nLineAlloc-n, p->pFile)==0 ){
H A Dvdbeaux.c805 p->nLineAlloc = 0;

Completed in 28 milliseconds