OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pSegments
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3Int.h
141
sqlite3_blob *
pSegments
; /* Blob handle open on %_segments table */
fts3_write.c
844
** Fts3Table.
pSegments
variable. This handle is reused by subsequent calls
864
if( p->
pSegments
){
865
rc = sqlite3_blob_reopen(p->
pSegments
, iBlockid);
872
p->db, p->zDb, p->zSegmentsTbl, "block", iBlockid, 0, &p->
pSegments
877
int nByte = sqlite3_blob_bytes(p->
pSegments
);
883
rc = sqlite3_blob_read(p->
pSegments
, aByte, nByte, 0);
899
** Close the blob handle at p->
pSegments
, if it is open. See comments above
903
sqlite3_blob_close(p->
pSegments
);
904
p->
pSegments
= 0;
[
all
...]
fts3.c
445
assert( p->
pSegments
==0 );
[
all
...]
Completed in 28 milliseconds