Home | History | Annotate | Download | only in dist

Lines Matching defs:pElem

93055   HashElem *pElem;
93062 for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){
93063 Table *pTab = sqliteHashData(pElem);
93069 for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){
93070 Index *pIdx = sqliteHashData(pElem);
95554 HashElem *pElem;
95561 for(pElem=sqliteHashFirst(&temp2); pElem; pElem=sqliteHashNext(pElem)){
95562 sqlite3DeleteTrigger(0, (Trigger*)sqliteHashData(pElem));
95566 for(pElem=sqliteHashFirst(&temp1); pElem; pElem=sqliteHashNext(pElem)){
95567 Table *pTab = sqliteHashData(pElem);
141058 Fts3HashElem *pElem; /* The element that matches key (if any) */
141060 pElem = sqlite3Fts3HashFindElem(pH, pKey, nKey);
141061 return pElem ? pElem->data : 0;
143881 Fts3HashElem *pElem;
143883 for(pElem=fts3HashFirst(pHash); pElem; pElem=fts3HashNext(pElem)){
143884 PendingList *pList = (PendingList *)fts3HashData(pElem);
144308 Fts3HashElem *pElem = *(pReader->ppNextElem);
144309 if( pElem==0 ){
144312 PendingList *pList = (PendingList *)fts3HashData(pElem);
144313 pReader->zTerm = (char *)fts3HashKey(pElem);
144314 pReader->nTerm = fts3HashKeysize(pElem);