Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dauth.c80 db->pAuthArg = pArg; in sqlite3_set_authorizer()
115 rc = db->xAuth(db->pAuthArg, SQLITE_READ, zTab,zCol,zDb,pParse->zAuthContext in sqlite3AuthReadCol()
226 rc = db->xAuth(db->pAuthArg, code, zArg1, zArg2, zArg3, pParse->zAuthContext in sqlite3AuthCheck()
H A Dattach.c333 Expr *pAuthArg, /* Expression to pass to authorization callback */ in codeAttach() argument
357 if( ALWAYS(pAuthArg) ){ in codeAttach()
359 if( pAuthArg->op==TK_STRING ){ in codeAttach()
360 assert( !ExprHasProperty(pAuthArg, EP_IntValue) ); in codeAttach()
361 zAuthArg = pAuthArg->u.zToken; in codeAttach()
H A DsqliteInt.h1632 void *pAuthArg; /* 1st argument to the access auth function */ member