OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pNextIdx
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_write.c
796
sqlite3_stmt *
pNextIdx
; /* Query for next idx at level iLevel */
797
int iNext = 0; /* Result of query
pNextIdx
*/
800
rc = fts3SqlStmt(p, SQL_NEXT_SEGMENT_INDEX, &
pNextIdx
, 0);
802
sqlite3_bind_int(
pNextIdx
, 1, iLevel);
803
if( SQLITE_ROW==sqlite3_step(
pNextIdx
) ){
804
iNext = sqlite3_column_int(
pNextIdx
, 0);
806
rc = sqlite3_reset(
pNextIdx
);
[
all
...]
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
[
all
...]
Completed in 60 milliseconds