Lines Matching defs:pbEof

96352 ** Set *pbEof to true there is no next entry because
96359 int *pbEof /* Set TRUE at EOF. Set false for more content */
96418 *pbEof = (pMerger->aReadr[pMerger->aTree[1]].pFd==0);
97326 SQLITE_PRIVATE int sqlite3VdbeSorterRewind(const VdbeCursor *pCsr, int *pbEof){
97339 *pbEof = 0;
97342 *pbEof = 1;
97364 *pbEof = 0;
174473 u8 *pbEof /* OUT: End-of-file flag */
174478 assert( *pbEof==0 );
174509 *pbEof = 1;
174528 u8 *pbEof /* OUT: End-of-file flag */
174533 assert( *pbEof==0 );
174544 *pbEof = 1;
174556 ** Advance the iterator pDL to the next entry in pDL->aAll/nAll. Set *pbEof
174562 u8 *pbEof
174576 *pbEof = 1;
174599 *pbEof = 0;
174618 ** entry. Or, if the iterator has reached EOF, set *pbEof to true.
174628 u8 *pbEof /* OUT: True if iterator is at EOF */
174635 fts3EvalDlPhraseNext(pTab, &pPhrase->doclist, pbEof);
174648 if( p->pList==0 ) *pbEof = 1;
174668 ** If there is no "next" entry and no error occurs, then *pbEof is set to
174670 ** successfully advanced, *pbEof is set to 0.
174678 u8 *pbEof /* OUT: Set to 1 if EOF */
174763 *pbEof = bEof;
174772 ** If there is no "next" entry and no error occurs, then *pbEof is set to
174774 ** successfully advanced, *pbEof is set to 0.
174779 u8 *pbEof /* OUT: Set to 1 if EOF */
174786 rc = fts3EvalIncrPhraseNext(pCsr, p, pbEof);
174789 &pDL->pNextDocid, &pDL->iDocid, &pDL->nList, pbEof
174793 fts3EvalDlPhraseNext(pTab, pDL, pbEof);
216623 static i64 fts5ExprSynonymRowid(Fts5ExprTerm *pTerm, int bDesc, int *pbEof){
216640 if( pbEof && bRetValid==0 ) *pbEof = 1;
216963 ** If the iterator reaches EOF, set *pbEof to true before returning. If
216964 ** an error occurs, set *pRc to an error code. If either *pbEof or *pRc
216972 int *pbEof /* OUT: Set to true if EOF */
216982 *pbEof = 1;
217212 ** If an EOF is reached before this happens, *pbEof is set to true before
217284 ** variable *pbEof to true if it reaches EOF or if an error occurs.