Home
last modified time | relevance | path

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

/freebsd-12.1/crypto/heimdal/lib/sqlite/
H A Dsqlite3.h2262 #define SQLITE_DENY 1 /* Abort the SQL statement with an error */ macro
H A Dsqlite3.c2815 #define SQLITE_DENY 1 /* Abort the SQL statement with an error */ macro
72344 if( auth==SQLITE_DENY ){
78997 if( rc==SQLITE_DENY ){
79097 if( rc==SQLITE_DENY ){
79101 rc = SQLITE_DENY;
83689 assert( rcauth==SQLITE_OK || rcauth==SQLITE_DENY || rcauth==SQLITE_IGNORE );
83690 if( rcauth==SQLITE_DENY ){
98483 if( rc==SQLITE_DENY ){
/freebsd-12.1/contrib/sqlite3/
H A Dsqlite3.h3047 #define SQLITE_DENY 1 /* Abort the SQL statement with an error */ macro
H A Dsqlite3.c4086 #define SQLITE_DENY 1 /* Abort the SQL statement with an error */ macro
98402 if( auth==SQLITE_DENY ){
109892 if( rc==SQLITE_DENY ){
110008 if( rc==SQLITE_DENY ){
110012 rc = SQLITE_DENY;
116010 assert( rcauth==SQLITE_OK || rcauth==SQLITE_DENY || rcauth==SQLITE_IGNORE );
116011 if( rcauth==SQLITE_DENY ){
132770 testcase( i==SQLITE_DENY );
137391 if( rc==SQLITE_DENY ){
/freebsd-12.1/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1152 rc = SQLITE_DENY; in auth_callback()