Searched refs:raw_stmt (Results 1 – 5 of 5) sorted by relevance
/external/perfetto/src/trace_processor/sqlite/ |
D | sqlite_vtable_benchmark.cc | 177 sqlite3_stmt* raw_stmt; in BM_SqliteStepAndResult() local 180 &raw_stmt, nullptr); in BM_SqliteStepAndResult() 182 stmt.reset(raw_stmt); in BM_SqliteStepAndResult()
|
D | sqlite_utils.h | 376 sqlite3_stmt* raw_stmt = nullptr; in GetColumnsForTable() local 377 int err = sqlite3_prepare_v2(db, sql, n, &raw_stmt, nullptr); in GetColumnsForTable() 381 ScopedStmt stmt(raw_stmt); in GetColumnsForTable() 385 err = sqlite3_step(raw_stmt); in GetColumnsForTable()
|
/external/rust/crates/rusqlite/src/ |
D | cache.rs | 132 Some(raw_stmt) => Ok(Statement::new(conn, raw_stmt)), in get()
|
D | lib.rs | 1086 let raw_stmt = { in test_close_retry() localVariable 1093 let mut raw_stmt: *mut ffi::sqlite3_stmt = ptr::null_mut(); in test_close_retry() localVariable 1100 &mut raw_stmt, in test_close_retry() 1105 raw_stmt in test_close_retry() 1115 assert_eq!(ffi::SQLITE_OK, unsafe { ffi::sqlite3_finalize(raw_stmt) }); in test_close_retry()
|
/external/perfetto/src/trace_processor/ |
D | trace_processor_impl.cc | 910 sqlite3_stmt* raw_stmt; in ExecuteQuery() local 915 &raw_stmt, nullptr); in ExecuteQuery() 923 col_count = static_cast<uint32_t>(sqlite3_column_count(raw_stmt)); in ExecuteQuery() 932 this, *db_, ScopedStmt(raw_stmt), col_count, status, sql_stats_row)); in ExecuteQuery()
|