/external/chromium_org/third_party/sqlite/src/src/ |
delete.c | 93 int iCur /* Cursor number for ephemerial table */ 116 sqlite3SelectDestInit(&dest, SRT_EphemTab, iCur); 235 int iCur; /* VDBE Cursor number for pTab */ 300 iCur = pTabList->a[0].iCursor = pParse->nTab++; 325 sqlite3MaterializeView(pParse, pTab, pWhere, iCur); 376 regRowid = sqlite3ExprCodeGetColumn(pParse, pTab, -1, iCur, iRowid); 393 sqlite3OpenTableAndIndices(pParse, pTab, iCur, OP_OpenWrite); 409 sqlite3GenerateRowDelete(pParse, pTab, iCur, iRowid, count, pTrigger, OE_Default); 419 sqlite3VdbeAddOp2(v, OP_Close, iCur + i, pIdx->tnum); 421 sqlite3VdbeAddOp1(v, OP_Close, iCur); [all...] |
update.c | 102 int iCur; /* VDBE Cursor number of pTab */ 177 pTabList->a[0].iCursor = iCur = pParse->nTab++; 299 sqlite3MaterializeView(pParse, pTab, pWhere, iCur); 319 sqlite3VdbeAddOp2(v, OP_Rowid, iCur, regOldRowid); 343 if( !okOnePass ) sqlite3OpenTable(pParse, iCur, iDb, pTab, OP_OpenWrite); 358 sqlite3VdbeAddOp4(v, OP_OpenWrite, iCur+i+1, pIdx->tnum, iDb, 360 assert( pParse->nTab>iCur+i+1 ); 374 /* Make cursor iCur point to the record that is being updated. If 377 sqlite3VdbeAddOp3(v, OP_NotExists, iCur, addr, regOldRowid); 398 sqlite3ExprCodeGetColumnOfTable(v, pTab, iCur, i, regOld+i) [all...] |
fkey.c | 327 int iCur = pParse->nTab - 1; /* Cursor number to use */ 368 sqlite3OpenTable(pParse, iCur, iDb, pTab, OP_OpenRead); 369 sqlite3VdbeAddOp3(v, OP_NotExists, iCur, 0, regTemp); 380 sqlite3VdbeAddOp3(v, OP_OpenRead, iCur, pIdx->tnum, iDb); 402 sqlite3VdbeAddOp4Int(v, OP_Found, iCur, iOk, regRec, 0); 426 sqlite3VdbeAddOp1(v, OP_Close, iCur); [all...] |
insert.c | 22 int iCur, /* The cursor number of the table */ 32 sqlite3VdbeAddOp3(v, opcode, iCur, pTab->tnum, iDb); [all...] |
shell.c | 975 int iCur; 980 iHiwtr = iCur = -1; 981 sqlite3_status(SQLITE_STATUS_MEMORY_USED, &iCur, &iHiwtr, bReset); 982 fprintf(pArg->out, "Memory Used: %d (max %d) bytes\n", iCur, iHiwtr); 983 iHiwtr = iCur = -1; 984 sqlite3_status(SQLITE_STATUS_MALLOC_COUNT, &iCur, &iHiwtr, bReset); 985 fprintf(pArg->out, "Number of Outstanding Allocations: %d (max %d)\n", iCur, iHiwtr); 988 ** iHiwtr = iCur = -1; 989 ** sqlite3_status(SQLITE_STATUS_PAGECACHE_USED, &iCur, &iHiwtr, bReset); 990 ** fprintf(pArg->out, "Number of Pcache Pages Used: %d (max %d) pages\n", iCur, iHiwtr) [all...] |