Home
last modified time | relevance | path

Searched refs:SQLITE_DENY (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3.h3481 #define SQLITE_DENY 1 /* Abort the SQL statement with an error */ macro
H A Dsqlite3.c3802 #define SQLITE_DENY 1 /* Abort the SQL statement with an error */ macro
111492 if( auth==SQLITE_DENY ){
126178 if( rc==SQLITE_DENY ){
126285 if( rc==SQLITE_DENY ){
126289 rc = SQLITE_DENY;
133084 assert( rcauth==SQLITE_OK || rcauth==SQLITE_DENY || rcauth==SQLITE_IGNORE );
133085 if( rcauth==SQLITE_DENY ){
153220 testcase( i==SQLITE_DENY );
160015 if( rc==SQLITE_DENY ){
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1247 rc = SQLITE_DENY; in auth_callback()