HomeSort by relevance Sort by last modified time
    Searched refs:CheckError (Results 1 - 4 of 4) sorted by null

  /external/chromium/app/sql/
statement.cc 45 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_blob(ref_->stmt(), col + 1
    [all...]
statement.h 152 int CheckError(int err);
  /external/chromium/chrome/browser/password_manager/
native_backend_kwallet_x.cc 45 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_array |
    [all...]
native_backend_kwallet_x.h 78 bool CheckError();
129 // cleared by CheckError().

Completed in 74 milliseconds