Home | History | Annotate | Download | only in orig

Lines Matching refs:pRes

7526   int (*xGeom)(sqlite3_rtree_geometry *, int nCoord, double *aCoord, int *pRes),
8328 int *pRes
8335 SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor*, int *pRes);
8336 SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor*, int *pRes);
8337 SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor*, int *pRes);
8339 SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor*, int *pRes);
39440 ** that is read in *pRes. Return SQLITE_OK if everything worked, or an
39445 static int read32bits(sqlite3_file *fd, i64 offset, u32 *pRes){
39449 *pRes = sqlite3Get4byte(ac);
50016 int *pRes /* Write search results here */
50033 rc = sqlite3BtreeMovetoUnpacked(pCur, pIdxKey, nKey, bias, pRes);
53749 ** on success. Set *pRes to 0 if the cursor actually points to something
53750 ** or set *pRes to 1 if the table is empty.
53752 SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor *pCur, int *pRes){
53761 *pRes = 1;
53764 *pRes = 0;
53772 ** on success. Set *pRes to 0 if the cursor actually points to something
53773 ** or set *pRes to 1 if the table is empty.
53775 SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor *pCur, int *pRes){
53800 *pRes = 1;
53803 *pRes = 0;
53823 ** An integer is written into *pRes which is the result of
53826 ** *pRes is as follows:
53828 ** *pRes<0 The cursor is left pointing at an entry that
53832 ** *pRes==0 The cursor is left pointing at an entry that
53835 ** *pRes>0 The cursor is left pointing at an entry that
53844 int *pRes /* Write search results here */
53850 assert( pRes );
53859 *pRes = 0;
53863 *pRes = -1;
53876 *pRes = -1;
53979 *pRes = 0;
54005 *pRes = c;
54037 ** successful then set *pRes=0. If the cursor
54039 ** this routine was called, then set *pRes=1.
54041 SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor *pCur, int *pRes){
54051 assert( pRes!=0 );
54053 *pRes = 1;
54058 *pRes = 0;
54081 *pRes = 0;
54086 *pRes = 1;
54093 *pRes = 0;
54095 rc = sqlite3BtreeNext(pCur, pRes);
54101 *pRes = 0;
54112 ** successful then set *pRes=0. If the cursor
54114 ** this routine was called, then set *pRes=1.
54116 SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor *pCur, int *pRes){
54127 *pRes = 1;
54132 *pRes = 0;
54150 *pRes = 1;
54161 rc = sqlite3BtreePrevious(pCur, pRes);
54166 *pRes = 0;
62628 ** the key string in pUnpacked. Write into *pRes a number
71937 ** Otherwise, return SQLITE_OK and set *pRes to a negative, zero or positive
71953 int *pRes /* OUT: Result of comparison */
71969 *pRes = -1;
71976 *pRes = sqlite3VdbeRecordCompare(nKey1, pKey1, r2);
72508 ** Otherwise, set *pRes to a negative, zero or positive value if the
72515 int *pRes /* OUT: Result of comparison */
72521 vdbeSorterCompare(pCsr, 1, pVal->z, pVal->n, pKey, nKey, pRes);
87497 sqlite3_value *pRes;
87498 pRes = (sqlite3_value *)sqlite3_aggregate_context(context, 0);
87499 if( pRes ){
87500 if( pRes->flags ){
87501 sqlite3_result_value(context, pRes);
87503 sqlite3VdbeMemRelease(pRes);
113021 int *pRes = va_arg(ap, int*);
113031 if( pRes ){
113032 *pRes = (db->flags & aFlagOp[i].mask)!=0;