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

  /external/chromium/chrome/browser/sync/syncable/
directory_backing_store.cc 124 DCHECK(SQLITE_DONE == query_result);
200 if (SQLITE_DONE != statement.step()) {
208 if (SQLITE_DONE != statement.step()) {
347 return SQLITE_DONE == result;
405 if (!(SQLITE_DONE == update.step() &&
423 if (!(SQLITE_DONE == op.step() &&
440 int last_result = SQLITE_DONE;
510 if (SQLITE_DONE == last_result) {
539 if (CreateMetasTable(true) != SQLITE_DONE)
548 if (ExecQuery(load_dbhandle_, query.c_str()) != SQLITE_DONE)
    [all...]
  /external/chromium/chrome/browser/sync/util/
user_settings_win.cc 29 if (SQLITE_DONE != statement.step()) {
user_settings.cc 38 if (SQLITE_DONE != statement.step()) {
170 if (SQLITE_DONE != statement.step()) {
223 if (SQLITE_DONE != statement.step()) {
232 if (SQLITE_DONE != statement.step()) {
241 if (SQLITE_DONE != statement.step()) {
311 if (SQLITE_DONE != statement.step()) {
323 if (SQLITE_DONE != statement.step()) {
371 if (SQLITE_DONE != statement.step()) {
383 if (SQLITE_DONE != statement.step()) {
413 CHECK(SQLITE_DONE == query_result)
    [all...]
user_settings_posix.cc 39 if (SQLITE_DONE != statement.step()) {
  /frameworks/base/core/jni/
android_database_SQLiteCommon.cpp 78 case SQLITE_DONE:
android_database_SQLiteConnection.cpp 446 } else if (err != SQLITE_DONE) {
466 return err == SQLITE_DONE ? sqlite3_changes(connection->db) : -1;
475 return err == SQLITE_DONE && sqlite3_changes(connection->db) > 0
727 } else if (err == SQLITE_DONE) {
    [all...]
  /external/webkit/Source/WebCore/platform/sql/
SQLiteStatement.cpp 108 if (error != SQLITE_DONE && error != SQLITE_ROW) {
143 if (step() != SQLITE_DONE) {
463 if (m_database.lastError() != SQLITE_DONE) {
483 if (m_database.lastError() != SQLITE_DONE) {
503 if (m_database.lastError() != SQLITE_DONE) {
523 if (m_database.lastError() != SQLITE_DONE) {
SQLiteDatabase.cpp 42 const int SQLResultDone = SQLITE_DONE;
  /external/javasqlite/src/main/java/SQLite/
Constants.java 45 public static final int SQLITE_DONE = 101; /* sqlite3_step() has finished executing */
  /external/chromium/app/sql/
statement.cc 45 return CheckError(sqlite3_step(ref_->stmt())) == SQLITE_DONE;
268 succeeded_ = (err == SQLITE_OK || err == SQLITE_ROW || err == SQLITE_DONE);
  /external/chromium/chrome/common/
sqlite_utils.cc 294 if ((status == SQLITE_ROW) || (status == SQLITE_DONE))
  /external/sqlite/android/
sqlite3_android.cpp 393 if (err != SQLITE_DONE) {
  /external/webkit/WebKitLibraries/WebCoreSQLite3/
sqlite3.h 342 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
    [all...]
  /external/sqlite/dist/orig/
sqlite3.h 410 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
    [all...]
sqlite3.c     [all...]
shell.c     [all...]
  /external/sqlite/dist/
sqlite3.h 410 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
    [all...]
sqlite3.c     [all...]
shell.c     [all...]
  /external/javasqlite/src/main/native/
sqlite_jni.c     [all...]
  /external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar 

Completed in 268 milliseconds