Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:pSegments

113300   sqlite3_blob *pSegments;        /* Blob handle open on %_segments table */
113685 assert( p->pSegments==0 );
114368 assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 );
116301 assert( p->pSegments==0 );
120940 ** Fts3Table.pSegments variable. This handle is reused by subsequent calls
120960 if( p->pSegments ){
120961 rc = sqlite3_blob_reopen(p->pSegments, iBlockid);
120968 p->db, p->zDb, p->zSegmentsTbl, "block", iBlockid, 0, &p->pSegments
120973 int nByte = sqlite3_blob_bytes(p->pSegments);
120979 rc = sqlite3_blob_read(p->pSegments, aByte, nByte, 0);
120995 ** Close the blob handle at p->pSegments, if it is open. See comments above
120999 sqlite3_blob_close(p->pSegments);
121000 p->pSegments = 0;
122739 assert( p->pSegments==0 );