Lines Matching defs:SegmentWriter
192808 ** SegmentWriter creates new leaf nodes, or when an interior node
204074 typedef struct SegmentWriter SegmentWriter;
204165 struct SegmentWriter {
206229 ** Add a term to the segment being constructed by the SegmentWriter object
206231 ** be passed NULL. This function will allocate a new SegmentWriter object
206238 SegmentWriter **ppWriter, /* IN/OUT: SegmentWriter handle */
206249 SegmentWriter *pWriter = *ppWriter;
206255 /* Allocate the SegmentWriter structure */
206256 pWriter = (SegmentWriter *)sqlite3_malloc64(sizeof(SegmentWriter));
206258 memset(pWriter, 0, sizeof(SegmentWriter));
206382 ** Flush all data associated with the SegmentWriter object pWriter to the
206389 SegmentWriter *pWriter, /* SegmentWriter to flush to the db */
206420 ** Release all memory held by the SegmentWriter object passed as the
206423 static void fts3SegWriterFree(SegmentWriter *pWriter){
207232 SegmentWriter *pWriter = 0; /* Used to write the new, merged, segment */