Lines Matching defs:rx
2656 int res, rx;
2658 rx = sqliteBtreeMoveto(pC->pCursor, pTos->z, pTos->n, &res);
2659 alreadyExists = rx==SQLITE_OK && res==0;
2783 int res, rx, iKey;
2786 rx = sqliteBtreeMoveto(pCrsr, (char*)&iKey, sizeof(int), &res);
2790 if( rx!=SQLITE_OK || res!=0 ){
2846 int res, rx, cnt, x;
2852 rx = sqliteBtreeLast(pC->pCursor, &res);
2886 rx = sqliteBtreeMoveto(pC->pCursor, &x, sizeof(int), &res);
2888 }while( cnt<1000 && rx==SQLITE_OK && res==0 );
2890 if( rx==SQLITE_OK && res==0 ){
3498 int rx, res;
3499 rx = sqliteBtreeMoveto(pCrsr, pTos->z, pTos->n, &res);
3500 if( rx==SQLITE_OK && res==0 ){