OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:zCommand
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/sqlite/src/ext/fts1/
fulltext.c
506
char *
zCommand
= string_format(zFormat, zName);
507
int rc = sqlite3_exec(db,
zCommand
, NULL, 0, NULL);
508
free(
zCommand
);
514
char *
zCommand
= string_format(zFormat, zName);
515
int rc = sqlite3_prepare(db,
zCommand
, -1, ppStmt, NULL);
516
free(
zCommand
);
[
all
...]
fts1.c
925
char *
zCommand
= string_format(zFormat, zDb, zName);
927
TRACE(("FTS1 sql: %s\n",
zCommand
));
928
rc = sqlite3_exec(db,
zCommand
, NULL, 0, NULL);
929
free(
zCommand
);
935
char *
zCommand
= string_format(zFormat, zDb, zName);
937
TRACE(("FTS1 prepare: %s\n",
zCommand
));
938
rc = sqlite3_prepare(db,
zCommand
, -1, ppStmt, NULL);
939
free(
zCommand
);
[
all
...]
/external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2.c
[
all
...]
Completed in 601 milliseconds