HomeSort by relevance Sort by last modified time
    Searched refs:pVtabCursor (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
test_schema.c 244 sqlite3_vtab_cursor *pVtabCursor,
249 schema_vtab *pVtab = (schema_vtab *)(pVtabCursor->pVtab);
250 schema_cursor *pCur = (schema_cursor *)pVtabCursor;
256 return (rc==SQLITE_OK ? schemaNext(pVtabCursor) : rc);
test_tclvar.c 152 sqlite3_vtab_cursor *pVtabCursor,
156 tclvar_cursor *pCur = (tclvar_cursor *)pVtabCursor;
157 Tcl_Interp *interp = ((tclvar_vtab *)(pVtabCursor->pVtab))->interp;
182 return tclvarNext(pVtabCursor);
test_intarray.c 163 sqlite3_vtab_cursor *pVtabCursor,
167 intarray_cursor *pCur = (intarray_cursor *)pVtabCursor;
test_wholenumber.c 145 sqlite3_vtab_cursor *pVtabCursor,
149 wholenumber_cursor *pCur = (wholenumber_cursor *)pVtabCursor;
recover.c     [all...]
vdbe.c     [all...]
vdbeInt.h 59 sqlite3_vtab_cursor *pVtabCursor; /* The cursor for a virtual table */
60 const sqlite3_module *pModule; /* Module for cursor pVtabCursor */
test_fuzzer.c 663 sqlite3_vtab_cursor *pVtabCursor,
667 fuzzer_cursor *pCur = (fuzzer_cursor *)pVtabCursor;
vdbeaux.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree.c 1084 static int rtreeNext(sqlite3_vtab_cursor *pVtabCursor){
1085 Rtree *pRtree = (Rtree *)(pVtabCursor->pVtab);
1086 RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor;
1129 static int rtreeRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *pRowid){
1130 Rtree *pRtree = (Rtree *)pVtabCursor->pVtab;
1131 RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor;
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 488 milliseconds