Searched refs:raw_stmt (Results 1 – 2 of 2) sorted by relevance
/external/perfetto/src/trace_processor/ |
D | trace_processor_impl.cc | 327 sqlite3_stmt* raw_stmt; in ExecuteQuery() local 329 &raw_stmt, nullptr); in ExecuteQuery() 335 col_count = static_cast<uint32_t>(sqlite3_column_count(raw_stmt)); in ExecuteQuery() 344 this, *db_, ScopedStmt(raw_stmt), col_count, error, sql_stats_row)); in ExecuteQuery()
|
D | sqlite_utils.h | 393 sqlite3_stmt* raw_stmt = nullptr; in GetColumnsForTable() local 394 int err = sqlite3_prepare_v2(db, sql, n, &raw_stmt, nullptr); in GetColumnsForTable() 396 ScopedStmt stmt(raw_stmt); in GetColumnsForTable() 401 err = sqlite3_step(raw_stmt); in GetColumnsForTable()
|