Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libsqlite/src/
H A Dvdbe.c3770 Keylist *pKeylist; in sqliteVdbeExec() local
3772 pKeylist = p->pList; in sqliteVdbeExec()
3773 if( pKeylist==0 || pKeylist->nUsed>=pKeylist->nKey ){ in sqliteVdbeExec()
3774 pKeylist = sqliteMallocRaw( sizeof(Keylist)+999*sizeof(pKeylist->aKey[0]) ); in sqliteVdbeExec()
3775 if( pKeylist==0 ) goto no_mem; in sqliteVdbeExec()
3776 pKeylist->nKey = 1000; in sqliteVdbeExec()
3777 pKeylist->nRead = 0; in sqliteVdbeExec()
3778 pKeylist->nUsed = 0; in sqliteVdbeExec()
3779 pKeylist->pNext = p->pList; in sqliteVdbeExec()
3780 p->pList = pKeylist; in sqliteVdbeExec()
[all …]