Lines Matching defs:rcauth
123995 int rcauth; /* Value returned by authorization callback */
124079 rcauth = sqlite3AuthCheck(pParse, SQLITE_DELETE, pTab->zName, 0,
124081 assert( rcauth==SQLITE_OK || rcauth==SQLITE_DENY || rcauth==SQLITE_IGNORE );
124082 if( rcauth==SQLITE_DENY ){
124151 ** The "rcauth==SQLITE_OK" terms is the
124157 if( rcauth==SQLITE_OK
128103 int rcauth;
128105 rcauth = sqlite3AuthReadCol(pParse, pTo->zName, zCol, iDb);
128106 bIgnore = (rcauth==SQLITE_IGNORE);