Home
last modified time | relevance | path

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

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