/external/perfetto/src/trace_processor/ |
D | table.h | 78 class Cursor : public sqlite3_vtab_cursor { 213 module->xOpen = [](sqlite3_vtab* t, sqlite3_vtab_cursor** c) { 216 module->xClose = [](sqlite3_vtab_cursor* c) { 223 module->xFilter = [](sqlite3_vtab_cursor* c, int i, const char* s, int a, 229 module->xNext = [](sqlite3_vtab_cursor* c) { 232 module->xEof = [](sqlite3_vtab_cursor* c) { 235 module->xColumn = [](sqlite3_vtab_cursor* c, sqlite3_context* a, int b) { 238 module->xRowid = [](sqlite3_vtab_cursor* c, sqlite3_int64* r) { 316 int OpenInternal(sqlite3_vtab_cursor**);
|
D | table.cc | 56 int Table::OpenInternal(sqlite3_vtab_cursor** ppCursor) { in OpenInternal() 58 *ppCursor = static_cast<sqlite3_vtab_cursor*>(CreateCursor().release()); in OpenInternal()
|
/external/swiftshader/third_party/LLVM/test/Transforms/GVN/ |
D | 2009-01-22-SortInvalidation.ll | 22 …ct.Btree*, i32, i8*, i64, i8*, %struct.KeyInfo*, i32, i64, %struct.sqlite3_vtab_cursor*, %struct.s… 68 …sqlite3_vtab_cursor**)*, i32 (%struct.sqlite3_vtab_cursor*)*, i32 (%struct.sqlite3_vtab_cursor*, i… 72 %struct.sqlite3_vtab_cursor = type { %struct.sqlite3_vtab* }
|
/external/llvm/test/CodeGen/X86/ |
D | 2009-04-29-RegAllocAssert.ll | 24 …ct.Btree*, i32, i8*, i64, i8*, %struct.KeyInfo*, i32, i64, %struct.sqlite3_vtab_cursor*, %struct.s… 66 …sqlite3_vtab_cursor**)*, i32 (%struct.sqlite3_vtab_cursor*)*, i32 (%struct.sqlite3_vtab_cursor*, i… 70 %struct.sqlite3_vtab_cursor = type { %struct.sqlite3_vtab* }
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | 2009-04-29-RegAllocAssert.ll | 24 …ct.Btree*, i32, i8*, i64, i8*, %struct.KeyInfo*, i32, i64, %struct.sqlite3_vtab_cursor*, %struct.s… 66 …sqlite3_vtab_cursor**)*, i32 (%struct.sqlite3_vtab_cursor*)*, i32 (%struct.sqlite3_vtab_cursor*, i… 70 %struct.sqlite3_vtab_cursor = type { %struct.sqlite3_vtab* }
|
/external/llvm/test/Transforms/GVN/ |
D | 2009-01-22-SortInvalidation.ll | 22 …ct.Btree*, i32, i8*, i64, i8*, %struct.KeyInfo*, i32, i64, %struct.sqlite3_vtab_cursor*, %struct.s… 68 …sqlite3_vtab_cursor**)*, i32 (%struct.sqlite3_vtab_cursor*)*, i32 (%struct.sqlite3_vtab_cursor*, i… 72 %struct.sqlite3_vtab_cursor = type { %struct.sqlite3_vtab* }
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/NewGVN/ |
D | 2009-01-22-SortInvalidation.ll | 22 …ct.Btree*, i32, i8*, i64, i8*, %struct.KeyInfo*, i32, i64, %struct.sqlite3_vtab_cursor*, %struct.s… 68 …sqlite3_vtab_cursor**)*, i32 (%struct.sqlite3_vtab_cursor*)*, i32 (%struct.sqlite3_vtab_cursor*, i… 72 %struct.sqlite3_vtab_cursor = type { %struct.sqlite3_vtab* }
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/GVN/ |
D | 2009-01-22-SortInvalidation.ll | 22 …ct.Btree*, i32, i8*, i64, i8*, %struct.KeyInfo*, i32, i64, %struct.sqlite3_vtab_cursor*, %struct.s… 68 …sqlite3_vtab_cursor**)*, i32 (%struct.sqlite3_vtab_cursor*)*, i32 (%struct.sqlite3_vtab_cursor*, i… 72 %struct.sqlite3_vtab_cursor = type { %struct.sqlite3_vtab* }
|
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/ |
D | 2009-04-29-RegAllocAssert.ll | 24 …ct.Btree*, i32, i8*, i64, i8*, %struct.KeyInfo*, i32, i64, %struct.sqlite3_vtab_cursor*, %struct.s… 66 …sqlite3_vtab_cursor**)*, i32 (%struct.sqlite3_vtab_cursor*)*, i32 (%struct.sqlite3_vtab_cursor*, i… 70 %struct.sqlite3_vtab_cursor = type { %struct.sqlite3_vtab* }
|
/external/sqlite/dist/ |
D | sqlite3.h | 6091 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef 6121 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); 6122 int (*xClose)(sqlite3_vtab_cursor*); 6123 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr, 6125 int (*xNext)(sqlite3_vtab_cursor*); 6126 int (*xEof)(sqlite3_vtab_cursor*); 6127 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int); 6128 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid); 6383 struct sqlite3_vtab_cursor { struct
|
D | shell.c | 2462 sqlite3_vtab_cursor base; /* Base class - must be first */ 2518 static int fsdirOpen(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor){ in fsdirOpen() 2552 static int fsdirClose(sqlite3_vtab_cursor *cur){ in fsdirClose() 2576 static int fsdirNext(sqlite3_vtab_cursor *cur){ in fsdirNext() 2641 sqlite3_vtab_cursor *cur, /* The cursor */ in fsdirColumn() 2699 static int fsdirRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){ in fsdirRowid() 2709 static int fsdirEof(sqlite3_vtab_cursor *cur){ in fsdirEof() 2718 sqlite3_vtab_cursor *cur, in fsdirFilter() 2936 sqlite3_vtab_cursor base; /* Base class - must be first */ 3025 static int completionOpen(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor){ in completionOpen() [all …]
|
D | sqlite3.c | 7115 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef 7145 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); 7146 int (*xClose)(sqlite3_vtab_cursor*); 7147 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr, 7149 int (*xNext)(sqlite3_vtab_cursor*); 7150 int (*xEof)(sqlite3_vtab_cursor*); 7151 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int); 7152 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid); 7407 struct sqlite3_vtab_cursor { struct 18742 sqlite3_vtab_cursor *pVCur; /* CURTYPE_VTAB. Vtab cursor */ [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.h | 6091 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef 6121 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); 6122 int (*xClose)(sqlite3_vtab_cursor*); 6123 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr, 6125 int (*xNext)(sqlite3_vtab_cursor*); 6126 int (*xEof)(sqlite3_vtab_cursor*); 6127 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int); 6128 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid); 6383 struct sqlite3_vtab_cursor { struct
|
D | shell.c | 2456 sqlite3_vtab_cursor base; /* Base class - must be first */ 2512 static int fsdirOpen(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor){ in fsdirOpen() 2546 static int fsdirClose(sqlite3_vtab_cursor *cur){ in fsdirClose() 2570 static int fsdirNext(sqlite3_vtab_cursor *cur){ in fsdirNext() 2635 sqlite3_vtab_cursor *cur, /* The cursor */ in fsdirColumn() 2693 static int fsdirRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){ in fsdirRowid() 2703 static int fsdirEof(sqlite3_vtab_cursor *cur){ in fsdirEof() 2712 sqlite3_vtab_cursor *cur, in fsdirFilter() 2930 sqlite3_vtab_cursor base; /* Base class - must be first */ 3019 static int completionOpen(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor){ in completionOpen() [all …]
|
D | sqlite3.c | 7115 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef 7145 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); 7146 int (*xClose)(sqlite3_vtab_cursor*); 7147 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr, 7149 int (*xNext)(sqlite3_vtab_cursor*); 7150 int (*xEof)(sqlite3_vtab_cursor*); 7151 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int); 7152 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid); 7407 struct sqlite3_vtab_cursor { struct 18742 sqlite3_vtab_cursor *pVCur; /* CURTYPE_VTAB. Vtab cursor */ [all …]
|