Home
last modified time | relevance | path

Searched refs:stmt_ (Results 1 - 3 of 3) sorted by relevance

/developtools/smartperf_host/trace_streamer/test/unittest/query/
H A Dspan_join_test.cpp30 if (stmt_ != nullptr) { in TearDown()
31 sqlite3_finalize(stmt_); in TearDown()
39 sqlite3_prepare_v2(stream_.traceDataCache_->db_, sql.c_str(), size, &stmt_, nullptr); in Prepare()
45 sqlite3_step(stmt_); in Step()
46 sqlite3_finalize(stmt_); in Step()
47 stmt_ = nullptr; in Step()
52 sqlite3_step(stmt_); in Next()
54 sqlite3_column_int64(stmt_, static_cast<int32_t>(i)); in Next()
57 sqlite3_stmt *stmt_; member in SysTuning::TraceStreamer::SpanJoinTest
81 EXPECT_EQ(sqlite3_step(stmt_), SQLITE_RO in HWTEST_F()
[all...]
/developtools/smartperf_host/trace_streamer/src/table/base/
H A Dspan_join.cpp209 int32_t sqliteType = sqlite3_column_type(stmt_, index); in setResult()
211 sqlite3_result_text(context, reinterpret_cast<const char *>(sqlite3_column_int64(stmt_, index)), -1, in setResult()
214 sqlite3_result_int64(context, sqlite3_column_int64(stmt_, index)); in setResult()
216 sqlite3_result_double(context, sqlite3_column_double(stmt_, index)); in setResult()
225 res = sqlite3_step(stmt_); in GetCursorNext()
226 rowType = sqlite3_column_type(stmt_, desc_->partitionIdx); in GetCursorNext()
245 int32_t res = sqlite3_prepare_v2(db_, sqlQuery_.c_str(), static_cast<int32_t>(sqlQuery_.size()), &stmt_, nullptr); in IsQueryNext()
254 missPartitionEnd_ = sqlite3_column_int64(stmt_, static_cast<int32_t>(desc_->partitionIdx)); in IsQueryNext()
277 if (isEof_ || partition_ != sqlite3_column_int64(stmt_, static_cast<int32_t>(desc_->partitionIdx))) { in GetNextState()
280 endTs_ = sqlite3_column_int64(stmt_, static_cas in GetNextState()
[all...]
/developtools/smartperf_host/trace_streamer/src/table/base/include/
H A Dspan_join.h87 sqlite3_stmt *stmt_ = nullptr; member in SysTuning::TraceStreamer::SpanJoin::CaclSpan

Completed in 2 milliseconds