Searched defs:CheckError (Results 1 - 2 of 2) sorted by relevance

/external/chromium/app/sql/
H A Dstatement.cc45 return CheckError(sqlite3_step(ref_->stmt())) == SQLITE_DONE;
51 return CheckError(sqlite3_step(ref_->stmt())) == SQLITE_ROW;
56 // We don't call CheckError() here because sqlite3_reset() returns
73 int err = CheckError(sqlite3_bind_null(ref_->stmt(), col + 1));
85 int err = CheckError(sqlite3_bind_int(ref_->stmt(), col + 1, val));
93 int err = CheckError(sqlite3_bind_int64(ref_->stmt(), col + 1, val));
101 int err = CheckError(sqlite3_bind_double(ref_->stmt(), col + 1, val));
109 int err = CheckError(sqlite3_bind_text(ref_->stmt(), col + 1, val, -1,
118 int err = CheckError(sqlite3_bind_text(ref_->stmt(), col + 1, val.data(),
131 int err = CheckError(sqlite3_bind_blo
266 int Statement::CheckError(int err) { function in class:sql::Statement
[all...]
/external/chromium/chrome/browser/password_manager/
H A Dnative_backend_kwallet_x.cc45 if (CheckError())
88 if (CheckError() || ret != 0)
104 if (CheckError() || !is_enabled)
113 if (CheckError() || !wallet_name)
196 if (CheckError())
211 if (CheckError() || !byte_array ||
286 if (CheckError())
303 if (CheckError() || !byte_array)
373 if (CheckError())
387 if (CheckError() || !byte_arra
557 bool NativeBackendKWallet::CheckError() { function in class:NativeBackendKWallet
[all...]

Completed in 61 milliseconds