Lines Matching refs:eOp

76599   int eOp,                  /* 0 -> copy from page, 1 -> copy to page */
76602 if( eOp ){
76650 int eOp /* zero to read. non-zero to write. */
76662 assert( eOp==0 || eOp==1 );
76689 rc = copyPayload(&aPayload[offset], pBuf, a, eOp, pPage->pDbPage);
76795 if( eOp==0 /* (1) */
76814 (eOp==0 ? PAGER_GET_READONLY : 0)
76819 rc = copyPayload(&aPayload[offset+4], pBuf, a, eOp, pDbPage);
89106 static SQLITE_NOINLINE int vdbeCloseStatement(Vdbe *p, int eOp){
89112 assert( eOp==SAVEPOINT_ROLLBACK || eOp==SAVEPOINT_RELEASE);
89120 if( eOp==SAVEPOINT_ROLLBACK ){
89135 if( eOp==SAVEPOINT_ROLLBACK ){
89146 if( eOp==SAVEPOINT_ROLLBACK ){
89152 SQLITE_PRIVATE int sqlite3VdbeCloseStatement(Vdbe *p, int eOp){
89154 return vdbeCloseStatement(p, eOp);
163090 u16 eOp = pOne->eOperator | pTwo->eOperator;
163099 if( (eOp & (WO_EQ|WO_LT|WO_LE))!=eOp
163100 && (eOp & (WO_EQ|WO_GT|WO_GE))!=eOp ) return;
163106 if( (eOp & (eOp-1))!=0 ){
163107 if( eOp & (WO_LT|WO_LE) ){
163108 eOp = WO_LE;
163110 assert( eOp & (WO_GT|WO_GE) );
163111 eOp = WO_GE;
163117 for(op=TK_EQ; eOp!=(WO_EQ<<(op-TK_EQ)); op++){ assert( op<TK_GE ); }
167652 u16 eOp = pTerm->eOperator; /* Shorthand for pTerm->eOperator */
167659 if( (eOp==WO_ISNULL || (pTerm->wtFlags&TERM_VNULL)!=0)
167699 if( eOp & WO_IN ){
167778 }else if( eOp & (WO_EQ|WO_IS) ){
167786 || (pProbe->nKeyCol==1 && pProbe->onError && (eOp & WO_EQ))
167794 }else if( eOp & WO_ISNULL ){
167800 if( eOp & (WO_GT|WO_GE) ){
167801 testcase( eOp & WO_GT );
167802 testcase( eOp & WO_GE );
167820 assert( eOp & (WO_LT|WO_LE) );
167821 testcase( eOp & WO_LT );
167822 testcase( eOp & WO_LE );
167843 assert( eOp & (WO_ISNULL|WO_EQ|WO_IN|WO_IS) );
167847 assert( (eOp & WO_IN) || nIn==0 );
167848 testcase( eOp & WO_IN );
167857 && ((eOp & WO_IN)==0 || ExprUseXList(pTerm->pExpr))
167861 if( (eOp & (WO_EQ|WO_ISNULL|WO_IS))!=0 ){
167862 testcase( eOp & WO_EQ );
167863 testcase( eOp & WO_IS );
167864 testcase( eOp & WO_ISNULL );
167902 if( eOp & WO_ISNULL ){
169651 u16 eOp = pLoop->aLTerm[j]->eOperator;
169665 if( (eOp & eqOpMask)!=0 ){
169666 if( eOp & (WO_ISNULL|WO_IS) ){
169667 testcase( eOp & WO_ISNULL );
169668 testcase( eOp & WO_IS );
169673 }else if( ALWAYS(eOp & WO_IN) ){
232897 int eOp = pIter->op;
232909 assert( eOp==SQLITE_DELETE || eOp==SQLITE_INSERT || eOp==SQLITE_UPDATE );
232912 (eOp==SQLITE_DELETE ? SQLITE_DELETE : SQLITE_INSERT), &rc
232917 if( eOp==SQLITE_DELETE || (eOp==SQLITE_UPDATE && p->abPK[i]) ){