Home
last modified time | relevance | path

Searched refs:SQLITE_IGNORE (Results 1 – 6 of 6) sorted by relevance

/external/webkit/WebCore/platform/sql/
DSQLiteAuthorizer.cpp36 const int SQLAuthIgnore = SQLITE_IGNORE;
/external/webkit/WebKitLibraries/WebCoreSQLite3/
Dsqlite3.h759 #define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */ macro
/external/sqlite/dist/
Dsqlite3.h1983 #define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */ macro
Dsqlite3.h.orig1898 ** return [SQLITE_OK] to allow the action, [SQLITE_IGNORE] to disallow the
1902 ** any value other than [SQLITE_IGNORE], [SQLITE_OK], or [SQLITE_DENY]
1920 ** and the callback returns [SQLITE_IGNORE] then the
1923 ** been read if [SQLITE_OK] had been returned. The [SQLITE_IGNORE]
1927 ** [SQLITE_IGNORE] then the [DELETE] operation proceeds but the
1983 #define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */
Dsqlite3.c2507 #define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */ macro
66351 }else if( rc!=SQLITE_IGNORE && rc!=SQLITE_OK ){
66412 if( SQLITE_IGNORE==sqlite3AuthReadCol(pParse, pTab->zName, zCol, iDb) ){
66447 }else if( rc!=SQLITE_OK && rc!=SQLITE_IGNORE ){
70922 assert( rcauth==SQLITE_OK || rcauth==SQLITE_DENY || rcauth==SQLITE_IGNORE );
73552 isIgnore = (rcauth==SQLITE_IGNORE);
85041 }else if( rc==SQLITE_IGNORE ){
Dsqlite3.c.orig2422 ** return [SQLITE_OK] to allow the action, [SQLITE_IGNORE] to disallow the
2426 ** any value other than [SQLITE_IGNORE], [SQLITE_OK], or [SQLITE_DENY]
2444 ** and the callback returns [SQLITE_IGNORE] then the
2447 ** been read if [SQLITE_OK] had been returned. The [SQLITE_IGNORE]
2451 ** [SQLITE_IGNORE] then the [DELETE] operation proceeds but the
2507 #define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */
66281 ** should return either SQLITE_OK, SQLITE_DENY, or SQLITE_IGNORE. If
66284 ** will return with an error. SQLITE_IGNORE means that the SQL statement
66318 ** If SQLITE_IGNORE is returned and pExpr is not NULL, then pExpr is changed
66319 ** to an SQL NULL expression. Otherwise, if pExpr is NULL, then SQLITE_IGNORE
[all …]