/external/chromium_org/third_party/sqlite/src/src/ |
expr.c | [all...] |
resolve.c | 71 pDup->iTable = pEList->a[iCol].iAlias; 109 ** pExpr->iTable Set to the cursor number for the table obtained 151 pExpr->iTable = -1; 185 pExpr->iTable = pItem->iCursor; 194 pExpr->iTable = pItem->iCursor; 235 pExpr->iTable = 1; 238 pExpr->iTable = 0; 262 }else if( pExpr->iTable==0 ){ 376 assert( pMatch->iCursor==pExpr->iTable ); 414 p->iTable = pItem->iCursor [all...] |
test3.c | 219 int iTable; 231 if( Tcl_GetInt(interp, argv[2], &iTable) ) return TCL_ERROR; 237 rc = sqlite3BtreeLockTable(pBt, iTable, wrFlag); 240 rc = sqlite3BtreeCursor(pBt, iTable, wrFlag, 0, pCur);
|
auth.c | 161 if( pExpr->iTable==pTabList->a[iSrc].iCursor ){
|
btree.h | 140 int iTable, /* Index of root page */
|
btreeInt.h | 306 ** is opened on the table with root page BtShared.iTable. Locks are removed 312 Pgno iTable; /* Root page of table */
|
select.c | 264 pEq->iRightJoinTable = (i16)pE2->iTable; 271 ** And set the Expr.iRightJoinTable to iTable for every term in the 295 static void setJoinExpr(Expr *p, int iTable){ 300 p->iRightJoinTable = (i16)iTable; 301 setJoinExpr(p->pLeft, iTable); [all...] |
btree.c | 171 && (pLock->iTable==iTab || (pLock->eLock==WRITE_LOCK && pLock->iTable==1)) 263 if( pIter->pBtree!=p && pIter->iTable==iTab && pIter->eLock!=eLock ){ 278 ** Add a lock on the table with root-page iTable to the shared-btree used 294 static int setSharedCacheTableLock(Btree *p, Pgno iTable, u8 eLock){ 312 assert( SQLITE_OK==querySharedCacheTableLock(p, iTable, eLock) ); 316 if( pIter->iTable==iTable && pIter->pBtree==p ){ 323 ** with table iTable, allocate one and link it into the list. 330 pLock->iTable = iTable [all...] |
fkey.c | 505 pLeft->iTable = regData+iCol+1; 509 pLeft->iTable = regData; 532 pLeft->iTable = regData; 534 pRight->iTable = pSrc->a[0].iCursor; [all...] |
sqliteInt.h | [all...] |
where.c | 168 ** SrcList_item.iCursor and Expr.iTable fields. For any given WHERE 433 ** sets their opcodes to TK_COLUMN and their Expr.iTable fields to 444 mask = getMask(pMaskSet, p->iTable); [all...] |
build.c | [all...] |
parse.y | 773 if( A.pExpr ) sqlite3GetInt32(&X.z[1], &A.pExpr->iTable); [all...] |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | [all...] |