Lines Matching defs:xAuth
3463 int (*xAuth)(void*,int,const char*,const char*,const char*,const char*),
17103 sqlite3_xauth xAuth; /* Access authorization function */
19204 const char *zAuthContext; /* The 6th parameter to db->xAuth callbacks */
104414 if( pParse->db->xAuth
113809 sqlite3_xauth xAuth = db->xAuth;
113828 db->xAuth = 0;
113946 db->xAuth = xAuth;
114033 sqlite3_xauth xAuth = db->xAuth;
114034 db->xAuth = 0;
114157 db->xAuth = xAuth;
114208 sqlite3_xauth xAuth = db->xAuth;
114209 db->xAuth = 0;
114281 db->xAuth = xAuth;
114325 sqlite3_xauth xAuth = db->xAuth;
114326 db->xAuth = 0;
114370 db->xAuth = xAuth;
114404 sqlite3_xauth xAuth = db->xAuth;
114405 db->xAuth = 0;
114436 db->xAuth = xAuth;
117258 int (*xAuth)(void*,int,const char*,const char*,const char*,const char*),
117265 db->xAuth = (sqlite3_xauth)xAuth;
117267 if( db->xAuth ) sqlite3ExpirePreparedStatements(db, 1);
117284 ** callback has been registered (i.e. that sqlite3.xAuth is not NULL).
117301 rc = db->xAuth(db->pAuthArg, SQLITE_READ, zTab,zCol,zDb,pParse->zAuthContext
117340 assert( pParse->db->xAuth!=0 );
117396 assert( !IN_RENAME_OBJECT || db->xAuth==0 );
117397 if( db->xAuth==0 || db->init.busy || IN_SPECIAL_PARSE ){
117412 rc = db->xAuth(db->pAuthArg, code, zArg1, zArg2, zArg3, pParse->zAuthContext
120531 sqlite3_xauth xAuth; /* Saved xAuth pointer */
120591 xAuth = db->xAuth;
120592 db->xAuth = 0;
120594 db->xAuth = xAuth;
128102 if( db->xAuth ){
137512 sqlite3_xauth xAuth;
137513 xAuth = db->xAuth;
137514 db->xAuth = 0;
137518 db->xAuth = xAuth;