/external/chromium_org/third_party/sqlite/src/src/ |
vdbeblob.c | 218 Index *pIdx; 236 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ 238 for(j=0; j<pIdx->nColumn; j++){ 239 if( pIdx->aiColumn[j]==iCol ){
|
delete.c | 234 Index *pIdx; /* For looping over indices of the table */ 301 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ 357 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ 358 assert( pIdx->pSchema==pTab->pSchema ) [all...] |
update.c | 100 Index *pIdx; /* For looping over indices */ 178 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ 239 for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){} 244 for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++) [all...] |
analyze.c | 112 Index *pIdx; /* An index to being analyzed */ 165 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ 169 if( pOnlyIdx && pOnlyIdx!=pIdx ) continue; 170 nCol = pIdx->nColumn; 171 pKey = sqlite3IndexKeyinfo(pParse, pIdx); 177 assert( iDb==sqlite3SchemaToIndex(db, pIdx->pSchema) ); 178 sqlite3VdbeAddOp4(v, OP_OpenRead, iIdxCur, pIdx->tnum, iDb [all...] |
fkey.c | 188 Index *pIdx = 0; /* Value to return via *ppIdx */ 225 for(pIdx=pParent->pIndex; pIdx; pIdx=pIdx->pNext){ 226 if( pIdx->nColumn==nCol && pIdx->onError!=OE_None ){ 227 /* pIdx is a UNIQUE index (or a PRIMARY KEY) and has the right number 235 if( pIdx->autoIndex==2 ){ 249 int iCol = pIdx->aiColumn[i]; /* Index of column in parent tbl * [all...] |
insert.c | 39 ** pIdx. A column affinity string has one character for each column in 57 const char *sqlite3IndexAffinityStr(Vdbe *v, Index *pIdx){ 58 if( !pIdx->zColAff ){ 68 Table *pTab = pIdx->pTable; 70 pIdx->zColAff = (char *)sqlite3DbMallocRaw(0, pIdx->nColumn+2); 71 if( !pIdx->zColAff ){ 75 for(n=0; n<pIdx->nColumn; n++){ 76 pIdx->zColAff[n] = pTab->aCol[pIdx->aiColumn[n]].affinity [all...] |
pragma.c | 902 Index *pIdx; 905 pIdx = sqlite3FindIndex(db, zRight, zDb); 906 if( pIdx ){ 908 pTab = pIdx->pTable; 914 for(i=0; i<pIdx->nColumn; i++){ 915 int cnum = pIdx->aiColumn[i]; 926 Index *pIdx; 932 pIdx = pTab->pIndex; 933 if( pIdx ){ 940 while(pIdx){ [all...] |
build.c | [all...] |
expr.c | [all...] |
select.c | [all...] |
btree.c | 157 Index *pIdx = (Index *)sqliteHashData(p); 158 if( pIdx->tnum==(int)iRoot ){ 159 iTab = pIdx->pTable->tnum; [all...] |
where.c | 572 Index *pIdx /* Must be compatible with this index, if not NULL */ 584 if( pIdx && pTerm->eOperator!=WO_ISNULL ){ 591 idxaff = pIdx->pTable->aCol[iColumn].affinity; 602 for(j=0; pIdx->aiColumn[j]!=iColumn; j++){ 603 if( NEVER(j>=pIdx->nColumn) ) return 0; 605 if( pColl && sqlite3StrICmp(pColl->zName, pIdx->azColl[j]) ) continue; [all...] |
sqliteInt.h | [all...] |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | [all...] |
/external/sqlite/dist/orig/ |
sqlite3.c | [all...] |
/external/sqlite/dist/ |
sqlite3.c | [all...] |