Home | History | Annotate | Download | only in dist

Lines Matching full:auth

8368   void *pAuthArg;               /* 1st argument to the access auth function */
59815 int auth; /* Authorization to use the function */
59838 auth = sqlite3AuthCheck(pParse, SQLITE_FUNCTION, 0, pDef->zName, 0);
59839 if( auth!=SQLITE_OK ){
59840 if( auth==SQLITE_DENY ){
66222 /************** Begin file auth.c ********************************************/
66251 ** various fields of the database. The first argument to the auth function
66253 ** to the auth function is one of these constants:
66279 ** The third and fourth arguments to the auth function are the name of
66280 ** the table and the column that are being accessed. The auth function
66288 ** Setting the auth function to NULL disables this hook. The default
66289 ** setting of the auth function is NULL.
66330 int rc; /* Auth callback return code */
66351 ** If the auth function returns SQLITE_IGNORE, change the TK_COLUMN
66352 ** instruction into a TK_NULL. If the auth function returns SQLITE_DENY,
66472 /************** End of auth.c ************************************************/