Home | History | Annotate | Download | only in dist

Lines Matching refs:pRes

6981   int *pRes
6988 SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor*, int *pRes);
6989 SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor*, int *pRes);
6990 SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor*, int *pRes);
6992 SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor*, int *pRes);
31869 ** that is read in *pRes. Return SQLITE_OK if everything worked, or an
31874 static int read32bits(sqlite3_file *fd, i64 offset, u32 *pRes){
31878 *pRes = sqlite3Get4byte(ac);
38426 int *pRes /* Write search results here */
38440 rc = sqlite3BtreeMovetoUnpacked(pCur, pIdxKey, nKey, bias, pRes);
41948 ** on success. Set *pRes to 0 if the cursor actually points to something
41949 ** or set *pRes to 1 if the table is empty.
41951 SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor *pCur, int *pRes){
41960 *pRes = 1;
41964 *pRes = 0;
41972 ** on success. Set *pRes to 0 if the cursor actually points to something
41973 ** or set *pRes to 1 if the table is empty.
41975 SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor *pCur, int *pRes){
42000 *pRes = 1;
42003 *pRes = 0;
42023 ** An integer is written into *pRes which is the result of
42026 ** *pRes is as follows:
42028 ** *pRes<0 The cursor is left pointing at an entry that
42032 ** *pRes==0 The cursor is left pointing at an entry that
42035 ** *pRes>0 The cursor is left pointing at an entry that
42044 int *pRes /* Write search results here */
42050 assert( pRes );
42059 *pRes = 0;
42063 *pRes = -1;
42076 *pRes = -1;
42175 *pRes = 0;
42201 *pRes = c;
42233 ** successful then set *pRes=0. If the cursor
42235 ** this routine was called, then set *pRes=1.
42237 SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor *pCur, int *pRes){
42247 assert( pRes!=0 );
42249 *pRes = 1;
42254 *pRes = 0;
42271 *pRes = 0;
42276 *pRes = 1;
42283 *pRes = 0;
42285 rc = sqlite3BtreeNext(pCur, pRes);
42291 *pRes = 0;
42302 ** successful then set *pRes=0. If the cursor
42304 ** this routine was called, then set *pRes=1.
42306 SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor *pCur, int *pRes){
42317 *pRes = 1;
42322 *pRes = 0;
42340 *pRes = 1;
42351 rc = sqlite3BtreePrevious(pCur, pRes);
42356 *pRes = 0;
50406 ** the key string in pUnpacked. Write into *pRes a number
72551 sqlite3_value *pRes;
72552 pRes = (sqlite3_value *)sqlite3_aggregate_context(context, 0);
72553 if( pRes ){
72554 if( ALWAYS(pRes->flags) ){
72555 sqlite3_result_value(context, pRes);
72557 sqlite3VdbeMemRelease(pRes);