Home
last modified time | relevance | path

Searched refs:seekResult (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/src/
H A DvdbeInt.h102 int seekResult; /* Result of previous sqlite3BtreeMoveto() or 0 member
140 ((P)->eCurType==CURTYPE_PSEUDO && (P)->nullRow && (P)->seekResult==0)
H A Dvdbe.c2824 if( pC->eCurType==CURTYPE_PSEUDO && pC->seekResult>0 ){ in sqlite3VdbeExec()
2827 pReg = &aMem[pC->seekResult]; in sqlite3VdbeExec()
4463 pCx->seekResult = pOp->p2; in sqlite3VdbeExec()
5187 alreadyExists = (pC->seekResult==0); in sqlite3VdbeExec()
5313 pC->seekResult = res; in sqlite3VdbeExec()
5575 seekResult = ((pOp->p5 & OPFLAG_USESEEKRESULT) ? pC->seekResult : 0); in sqlite3VdbeExec()
5584 seekResult in sqlite3VdbeExec()
5748 pC->seekResult = 0; in sqlite3VdbeExec()
5973 pC->seekResult = 0; in sqlite3VdbeExec()
6030 pC->seekResult = -1; in sqlite3VdbeExec()
[all …]
H A Dbtree.h315 int flags, int seekResult);
H A Dbtree.c8992 int seekResult /* Result of prior IndexMoveto() call */ in sqlite3BtreeInsert() argument
8995 int loc = seekResult; /* -1: before desired location +1: after */ in sqlite3BtreeInsert()
9005 assert( (flags & BTREE_PREFORMAT)==0 || seekResult || pCur->pKeyInfo==0 ); in sqlite3BtreeInsert()