Home
last modified time | relevance | path

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

/sqlite-3.40.0/ext/userauth/
H A Duserauth.c87 u8 *peAuth /* OUT: One of UAUTH_* constants */ in userAuthCheckLogin() argument
92 *peAuth = UAUTH_Unknown; in userAuthCheckLogin()
94 *peAuth = UAUTH_Admin; /* No sqlite_user table. Everybody is admin. */ in userAuthCheckLogin()
98 *peAuth = UAUTH_Fail; in userAuthCheckLogin()
109 *peAuth = sqlite3_column_int(pStmt, 1) + UAUTH_User; in userAuthCheckLogin()
111 *peAuth = UAUTH_Fail; in userAuthCheckLogin()
118 u8 *peAuth /* OUT: One of UAUTH_* constants */ in sqlite3UserAuthCheckLogin() argument
123 assert( peAuth!=0 ); in sqlite3UserAuthCheckLogin()
126 rc = userAuthCheckLogin(db, zDb, peAuth); in sqlite3UserAuthCheckLogin()