OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:dlwriter
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/sqlite/
fts2.patch
213
-static void dlwAppend(
DLWriter
*pWriter,
216
+static int dlwAppend(
DLWriter
*pWriter,
238
-static void dlwCopy(
DLWriter
*pWriter, DLReader *pReader){
241
+static int dlwCopy(
DLWriter
*pWriter, DLReader *pReader){
245
static void dlwAdd(
DLWriter
*pWriter, sqlite_int64 iDocid){
348
DLWriter
dlWriter
;
356
dlwInit(&
dlWriter
, iOutType, out);
391
dlwDestroy(&
dlWriter
);
406
DLWriter
writer
[
all
...]
/external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2.c
755
**
DLWriter
.
793
/*
DLWriter
is used to write doclist data to a DataBuffer.
DLWriter
803
typedef struct
DLWriter
{
810
}
DLWriter
;
812
static void dlwInit(
DLWriter
*pWriter, DocListType iType, DataBuffer *b){
820
static void dlwDestroy(
DLWriter
*pWriter){
836
static int dlwAppend(
DLWriter
*pWriter,
871
static int dlwCopy(
DLWriter
*pWriter, DLReader *pReader){
875
static void dlwAdd(
DLWriter
*pWriter, sqlite_int64 iDocid)
[
all
...]
Completed in 202 milliseconds