Home
last modified time | relevance | path

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

/external/perfetto/src/trace_processor/sqlite/
Dsqlite_vtable_benchmark.cc177 sqlite3_stmt* raw_stmt; in BM_SqliteStepAndResult() local
180 &raw_stmt, nullptr); in BM_SqliteStepAndResult()
182 stmt.reset(raw_stmt); in BM_SqliteStepAndResult()
Dsqlite_utils.h376 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/
Dcache.rs132 Some(raw_stmt) => Ok(Statement::new(conn, raw_stmt)), in get()
Dlib.rs1086 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/
Dtrace_processor_impl.cc910 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()