Lines Matching defs:pState
22176 ShellState *pState,
22180 assert( pState->expert.pExpert );
22182 return sqlite3_expert_sql(pState->expert.pExpert, zSql, pzErr);
22196 ShellState *pState,
22201 sqlite3expert *p = pState->expert.pExpert;
22205 int bVerbose = pState->expert.bVerbose;
22232 pState->expert.pExpert = 0;
22240 ShellState *pState, /* Current shell tool state */
22249 assert( pState->expert.pExpert==0 );
22250 memset(&pState->expert, 0, sizeof(ExpertInfo));
22258 pState->expert.bVerbose = 1;
22279 pState->expert.pExpert = sqlite3_expert_new(pState->db, &zErr);
22280 if( pState->expert.pExpert==0 ){
22285 pState->expert.pExpert, EXPERT_CONFIG_SAMPLE, iSample
24666 ShellState *pState, /* Current shell tool state */
24670 sqlite3 *db = pState->db; /* Database handle to query "main" db of */
24839 ShellState *pState, /* Current shell tool state */
24846 return lintFkeyIndexes(pState, azArg, nArg);
25579 ShellState *pState, /* Current shell tool state */
25591 cmd.p = pState;
25592 cmd.db = pState->db;
25596 eDbType = pState->openMode;
25658 arUsage(pState->out);
25676 if( cmd.db!=pState->db ){
25694 ShellState *pState = (ShellState*)pCtx;
25695 sputf(pState->out, "%s;\n", zSql);
25702 ** on stream pState->out.
25704 static int recoverDatabaseCmd(ShellState *pState, int nArg, char **azArg){
25739 showHelp(pState->out, azArg[0]);
25745 pState->db, "main", recoverSqlCb, (void*)pState
25767 static int intckDatabaseCmd(ShellState *pState, i64 nStepPerUnlock){
25771 rc = sqlite3_intck_open(pState->db, "main", &p);