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

/osnet-11/usr/src/lib/libsqlite/src/
H A DvdbeInt.h200 ** A Keylist is a bunch of keys into a table. The keylist can
204 typedef struct Keylist Keylist; typedef in typeref:struct:Keylist
205 struct Keylist { struct
209 Keylist *pNext; /* Next block of keys */
266 Keylist *pList; /* A list of ROWIDs */
268 Keylist **keylistStack; /* The stack used by opcodes ListPush & ListPop */
300 void sqliteVdbeKeylistFree(Keylist*);
H A Dvdbeaux.c721 void sqliteVdbeKeylistFree(Keylist *p){
723 Keylist *pNext = p->pNext;
H A Dvdbe.c3770 Keylist *pKeylist;
3774 pKeylist = sqliteMallocRaw( sizeof(Keylist)+999*sizeof(pKeylist->aKey[0]) );
3795 ** linked list of Keylist structures so that they are read out
3797 Keylist *pRev, *pTop;
3816 Keylist *pKeylist;
3857 sizeof(Keylist *) * p->keylistStackDepth);

Completed in 34 milliseconds