Home | History | Annotate | Download | only in orig

Lines Matching defs:pElem

93037   HashElem *pElem;
93044 for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){
93045 Table *pTab = sqliteHashData(pElem);
93051 for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){
93052 Index *pIdx = sqliteHashData(pElem);
95536 HashElem *pElem;
95543 for(pElem=sqliteHashFirst(&temp2); pElem; pElem=sqliteHashNext(pElem)){
95544 sqlite3DeleteTrigger(0, (Trigger*)sqliteHashData(pElem));
95548 for(pElem=sqliteHashFirst(&temp1); pElem; pElem=sqliteHashNext(pElem)){
95549 Table *pTab = sqliteHashData(pElem);
141028 Fts3HashElem *pElem; /* The element that matches key (if any) */
141030 pElem = sqlite3Fts3HashFindElem(pH, pKey, nKey);
141031 return pElem ? pElem->data : 0;
143851 Fts3HashElem *pElem;
143853 for(pElem=fts3HashFirst(pHash); pElem; pElem=fts3HashNext(pElem)){
143854 PendingList *pList = (PendingList *)fts3HashData(pElem);
144278 Fts3HashElem *pElem = *(pReader->ppNextElem);
144279 if( pElem==0 ){
144282 PendingList *pList = (PendingList *)fts3HashData(pElem);
144283 pReader->zTerm = (char *)fts3HashKey(pElem);
144284 pReader->nTerm = fts3HashKeysize(pElem);