Searched refs:OP_Column (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dupdate.c31 ** The most recently coded instruction was an OP_Column to retrieve the
33 ** OP_Column to the default value, if any.
40 ** from the P4 parameter of the OP_Column instruction, is returned instead.
439 sqlite3VdbeAddOp3(v, OP_Column, iCur, i, regNew+i);
469 sqlite3VdbeAddOp3(v, OP_Column, iCur, i, regNew+i);
650 sqlite3VdbeAddOp3(v, OP_Column, ephemTab, 0, iReg);
651 sqlite3VdbeAddOp3(v, OP_Column, ephemTab, (pRowid?1:0), iReg+1);
653 sqlite3VdbeAddOp3(v, OP_Column, ephemTab, i+1+(pRowid!=0), iReg+2+i);
H A Dinsert.c245 sqlite3VdbeAddOp3(v, OP_Column, 0, 0, memId);
249 sqlite3VdbeAddOp3(v, OP_Column, 0, 1, memId);
295 j3 = sqlite3VdbeAddOp3(v, OP_Column, 0, 0, iRec);
823 sqlite3VdbeAddOp3(v, OP_Column, srcTab, keyColumn, regCols);
852 sqlite3VdbeAddOp3(v, OP_Column, srcTab, j, regCols+i+1);
888 sqlite3VdbeAddOp3(v, OP_Column, srcTab, keyColumn, regRowid);
956 sqlite3VdbeAddOp3(v, OP_Column, srcTab, j, iRegStore);
H A Danalyze.c243 sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, i, regCol);
301 sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, i, iMem+nCol+i+1);
H A Ddelete.c633 sqlite3VdbeAddOp3(v, OP_Column, iCur, idx, regBase+j);
H A Dvdbeblob.c146 {OP_Column, 0, 0, 1}, /* 7 */
292 ** does. An OP_Column to retrieve this imaginary column will
294 ** we can invoke OP_Column to fill in the vdbe cursors type
H A Dtrigger.c562 { OP_Column, 0, 1, 2},
565 { OP_Column, 0, 0, 2},
H A Dselect.c571 sqlite3VdbeAddOp3(v, OP_Column, srcTab, i, regResult+i);
898 sqlite3VdbeAddOp3(v, OP_Column, iTab, pOrderBy->nExpr + 1, regRow);
931 sqlite3VdbeAddOp3(v, OP_Column, pseudoTab, i, pDest->iMem+i);
4121 sqlite3VdbeAddOp3(v, OP_Column, sAggInfo.sortingIdx, j, iBMem+j);
H A Dexpr.c2137 int op = IsVirtual(pTab) ? OP_VColumn : OP_Column;
2289 sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdx,
H A Dwhere.c3306 pIn->addrInTop = sqlite3VdbeAddOp3(v, OP_Column, iTab, 0, iReg);
3997 sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, nEq, r1);
4317 ** can use OP_Column and OP_Rowid opcodes on these cursors to extract
4962 if( pOp->opcode==OP_Column ){
H A Dvdbe.c2078 ** The first OP_Column against a pseudo-table after the value of the content
2081 case OP_Column: {
2396 ** in an index. The OP_Column opcode can decode the record later.
3177 ** individual columns using the OP_Column opcode. The OP_Column opcode
3979 ** OP_Column on the same table without any intervening operations that
4146 ** Move the cursor P1 to a null row. Any OP_Column operations
/external/sqlite/dist/orig/
H A Dsqlite3.c8643 #define OP_Column 29 macro
10325 ** OP_Column opcode.
10527 ** If the Expr is of type OP_Column, and the table it is selecting from
11198 #define OPFLAG_CLEARCACHE 0x20 /* Clear pseudo-table cache in OP_Column */
[all...]
/external/sqlite/dist/
H A Dsqlite3.c8643 #define OP_Column 29 macro
10325 ** OP_Column opcode.
10527 ** If the Expr is of type OP_Column, and the table it is selecting from
11198 #define OPFLAG_CLEARCACHE 0x20 /* Clear pseudo-table cache in OP_Column */
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c8105 #define OP_Column 28 macro
9781 ** OP_Column opcode.
9978 ** If the Expr is of type OP_Column, and the table it is selecting from
10642 #define OPFLAG_CLEARCACHE 0x20 /* Clear pseudo-table cache in OP_Column */
[all...]

Completed in 433 milliseconds