Lines Matching defs:auth
17104 void *pAuthArg; /* 1st argument to the access auth function */
17148 sqlite3_userauth auth; /* User authentication information */
104713 int auth = sqlite3AuthCheck(pParse, SQLITE_FUNCTION, 0,pDef->zName,0);
104714 if( auth!=SQLITE_OK ){
104715 if( auth==SQLITE_DENY ){
116802 if( newAuth<db->auth.authLevel ){
117186 /************** Begin file auth.c ********************************************/
117216 ** various fields of the database. The first argument to the auth function
117218 ** to the auth function is one of these constants:
117244 ** The third and fourth arguments to the auth function are the name of
117245 ** the table and the column that are being accessed. The auth function
117253 ** Setting the auth function to NULL disables this hook. The default
117254 ** setting of the auth function is NULL.
117303 ,db->auth.zAuthUser
117322 ** If the auth function returns SQLITE_IGNORE, change the TK_COLUMN
117323 ** instruction into a TK_NULL. If the auth function returns SQLITE_DENY,
117414 ,db->auth.zAuthUser
117456 /************** End of auth.c ************************************************/
117652 if( db->auth.authLevel<UAUTH_User ){
117821 if( db->auth.authLevel<UAUTH_Admin && sqlite3UserAuthTable(zName)!=0 ){
135373 if( db->auth.authLevel==UAUTH_User ){
174823 sqlite3_free(db->auth.zAuthUser);
174824 sqlite3_free(db->auth.zAuthPW);