Home
last modified time | relevance | path

Searched refs:BenchmarkCursor (Results 1 – 1 of 1) sorted by relevance

/external/perfetto/src/trace_processor/sqlite/
Dsqlite_vtable_benchmark.cc49 class BenchmarkCursor : public sqlite3_vtab_cursor { class
51 explicit BenchmarkCursor(size_t num_cols, size_t batch_size) in BenchmarkCursor() function in __anon7291e6360111::BenchmarkCursor
75 void BenchmarkCursor::RandomFill() { in RandomFill()
83 int BenchmarkCursor::Next() { in Next()
90 int BenchmarkCursor::Eof() { in Eof()
94 int BenchmarkCursor::Column(sqlite3_context* ctx, int col_int) { in Column()
147 *c = new BenchmarkCursor(vtab->num_cols, vtab->batch_size); in BM_SqliteStepAndResult()
158 delete static_cast<BenchmarkCursor*>(c); in BM_SqliteStepAndResult()
164 return static_cast<BenchmarkCursor*>(c)->Next(); in BM_SqliteStepAndResult()
167 return static_cast<BenchmarkCursor*>(c)->Eof(); in BM_SqliteStepAndResult()
[all …]