Home
last modified time | relevance | path

Searched refs:bind_error_ (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/lib/db/
Dsqlite.h324 : db_(other.db_), stmt_(other.stmt_), bind_error_(other.bind_error_) { in SqliteStatement()
327 other.bind_error_ = SQLITE_OK; in SqliteStatement()
337 bind_error_ = other.bind_error_;
341 other.bind_error_ = SQLITE_OK;
358 if (bind_error_ == SQLITE_OK) { in Update()
359 bind_error_ = rc; in Update()
373 int bind_error_ = SQLITE_OK; variable
Dsqlite.cc179 if (TF_PREDICT_FALSE(bind_error_ != SQLITE_OK)) { in Step()
181 return PrintfStatus(bind_error_, "Bind(%d) failed: %s: %s", in Step()
182 bind_error_parameter_, sqlite3_errstr(bind_error_), in Step()
238 bind_error_ = SQLITE_OK; in Reset()