Searched refs:SQLITE_DONE (Results 1 - 17 of 17) sorted by relevance

/macosx-10.9.5/Heimdal-323.92.1/lib/hdb/
H A Dhdb-sqlite.c407 if(sqlite_error == SQLITE_DONE) {
524 if(ret == SQLITE_DONE) { /* No such principal */
531 if(ret != SQLITE_DONE)
539 if(ret != SQLITE_DONE)
553 if(ret != SQLITE_DONE)
560 if(ret != SQLITE_DONE)
588 if(ret != SQLITE_DONE)
728 else if(sqlite_error == SQLITE_DONE) {
806 if (ret != SQLITE_DONE) {
/macosx-10.9.5/WebCore-7537.78.1/platform/sql/
H A DSQLiteStatement.cpp111 if (error != SQLITE_DONE && error != SQLITE_ROW) {
146 if (step() != SQLITE_DONE) {
479 if (m_database.lastError() != SQLITE_DONE) {
499 if (m_database.lastError() != SQLITE_DONE) {
519 if (m_database.lastError() != SQLITE_DONE) {
539 if (m_database.lastError() != SQLITE_DONE) {
H A DSQLiteDatabase.cpp41 const int SQLResultDone = SQLITE_DONE;
/macosx-10.9.5/Security-55471.14.18/sec/securityd/
H A DSecCAIssuerCache.c137 if (s3e == SQLITE_ROW || s3e == SQLITE_DONE)
155 if (s3e == SQLITE_DONE) {
176 if (s3e == SQLITE_DONE) {
326 if (s3e != SQLITE_DONE) {
H A DSecTrustStoreServer.c286 if (s3e == SQLITE_DONE) {
300 require_action_quiet(s3e == SQLITE_DONE, errOutSql, ok = SecError(errSecInternal, error, CFSTR("sqlite3 error: %d"), s3e));
406 require(s3e == SQLITE_DONE, errOut);
446 require_action(s3e == SQLITE_DONE, errOut, ok = SecDbErrorWithStmt(s3e, ts->contains, error, CFSTR("sqlite3_step failed")));
/macosx-10.9.5/Heimdal-323.92.1/lib/krb5/
H A Dscache.c369 if (ret != SQLITE_DONE) {
583 if (ret != SQLITE_DONE) {
602 if (ret != SQLITE_DONE) {
645 if (ret != SQLITE_DONE) {
759 if (ret != SQLITE_DONE) {
778 if (ret != SQLITE_DONE) {
796 if (ret != SQLITE_DONE) {
993 if (ret == SQLITE_DONE) {
1080 if (ret == SQLITE_DONE) {
1129 if (ret != SQLITE_DONE) {
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dsqlite++.cpp304 case SQLITE_DONE:
317 case SQLITE_DONE:
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dsqlite++.cpp304 case SQLITE_DONE:
317 case SQLITE_DONE:
/macosx-10.9.5/Security-55471.14.18/authd/
H A Dauthdb.c637 while ((rc = sqlite3_step(stmt)) != SQLITE_DONE) {
686 if (rc != SQLITE_DONE) {
772 while ((rc = sqlite3_step(stmt)) != SQLITE_DONE) {
804 return rc == SQLITE_DONE;
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Ddict_sqlite.c231 while ((status = sqlite3_step(sql_stmt)) != SQLITE_DONE) {
/macosx-10.9.5/Security-55471.14.18/utilities/src/
H A DSecDb.c272 if (code == SQLITE_OK || code == SQLITE_DONE)
423 else if (s3e == SQLITE_DONE)
686 if (code == SQLITE_OK || code == SQLITE_DONE) {
1171 if (s3e == SQLITE_DONE) {
/macosx-10.9.5/Security-55471.14.18/utilities/utilities/
H A DSecDb.c272 if (code == SQLITE_OK || code == SQLITE_DONE)
423 else if (s3e == SQLITE_DONE)
686 if (code == SQLITE_OK || code == SQLITE_DONE) {
1171 if (s3e == SQLITE_DONE) {
/macosx-10.9.5/Heimdal-323.92.1/lib/sqlite/
H A Dsqlite3.h410 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */ macro
3284 ** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE].
3295 ** ^[SQLITE_DONE] means that the statement has finished executing
3317 ** previously returned [SQLITE_ERROR] or [SQLITE_DONE]. Or it could
3606 ** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE],
6142 ** from source to destination, then it returns [SQLITE_DONE].
6145 ** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY],
6178 ** and sqlite3_backup_step() returns [SQLITE_DONE]. ^Every call to
6193 ** When sqlite3_backup_step() has returned [SQLITE_DONE], or when the
6198 ** ^If sqlite3_backup_step() has not yet returned [SQLITE_DONE], the
[all...]
H A Dsqlite3.c963 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */ macro
3837 ** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE].
3848 ** ^[SQLITE_DONE] means that the statement has finished executing
3870 ** previously returned [SQLITE_ERROR] or [SQLITE_DONE]. Or it could
4159 ** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE],
6695 ** from source to destination, then it returns [SQLITE_DONE].
6698 ** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY],
6731 ** and sqlite3_backup_step() returns [SQLITE_DONE]. ^Every call to
6746 ** When sqlite3_backup_step() has returned [SQLITE_DONE], or when the
6751 ** ^If sqlite3_backup_step() has not yet returned [SQLITE_DONE], the
[all...]
/macosx-10.9.5/Security-55471.14.18/sec/Security/
H A DSecItem.c93 if (s3e > 0 && s3e <= SQLITE_DONE) switch (s3e)
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/dbd/
H A Dapr_dbd_sqlite3.c82 #define dbd_sqlite3_is_success(x) (((x) == SQLITE_DONE) || ((x) == SQLITE_OK))
/macosx-10.9.5/apr-30/apr-util/apr-util/dbd/
H A Dapr_dbd_sqlite3.c82 #define dbd_sqlite3_is_success(x) (((x) == SQLITE_DONE) || ((x) == SQLITE_OK))

Completed in 526 milliseconds