Searched refs:bind_counter_ (Results 1 – 1 of 1) sorted by relevance
/system/iorap/src/db/ |
D | models.h | 143 CheckOk(sqlite3_bind_int(stmt_, bind_counter_++, value)); in Bind() 147 CheckOk(sqlite3_bind_int(stmt_, bind_counter_++, value)); in Bind() 151 CheckOk(sqlite3_bind_int64(stmt_, bind_counter_++, static_cast<int64_t>(value))); in Bind() 157 CheckOk(sqlite3_bind_text(stmt_, /*index*/bind_counter_++, value, -1, SQLITE_TRANSIENT)); in Bind() 173 CheckOk(sqlite3_bind_null(stmt_, bind_counter_++)); in BindNull() 267 : db_{other.db_}, stmt_{other.stmt_}, bind_counter_{other.bind_counter_}, in DbStatement() 292 int bind_counter_ = 1; variable
|