Lines Matching refs:pState

18146   ShellState *pState, 
18150 assert( pState->expert.pExpert );
18152 return sqlite3_expert_sql(pState->expert.pExpert, zSql, pzErr);
18166 ShellState *pState,
18171 sqlite3expert *p = pState->expert.pExpert;
18175 FILE *out = pState->out;
18176 int bVerbose = pState->expert.bVerbose;
18203 pState->expert.pExpert = 0;
18211 ShellState *pState, /* Current shell tool state */
18220 assert( pState->expert.pExpert==0 );
18221 memset(&pState->expert, 0, sizeof(ExpertInfo));
18229 pState->expert.bVerbose = 1;
18250 pState->expert.pExpert = sqlite3_expert_new(pState->db, &zErr);
18251 if( pState->expert.pExpert==0 ){
18256 pState->expert.pExpert, EXPERT_CONFIG_SAMPLE, iSample
20657 ShellState *pState, /* Current shell tool state */
20661 sqlite3 *db = pState->db; /* Database handle to query "main" db of */
20662 FILE *out = pState->out; /* Stream to write non-error output to */
20833 ShellState *pState, /* Current shell tool state */
20840 return lintFkeyIndexes(pState, azArg, nArg);
21583 ShellState *pState, /* Current shell tool state */
21595 cmd.p = pState;
21596 cmd.db = pState->db;
21600 eDbType = pState->openMode;
21622 utf8_printf(pState->out, "-- open database '%s'%s\n", cmd.zFile,
21664 arUsage(pState->out);
21682 if( cmd.db!=pState->db ){
21700 ShellState *pState = (ShellState*)pCtx;
21701 utf8_printf(pState->out, "%s;\n", zSql);
21708 ** on stream pState->out.
21710 static int recoverDatabaseCmd(ShellState *pState, int nArg, char **azArg){
21745 showHelp(pState->out, azArg[0]);
21751 pState->db, "main", recoverSqlCb, (void*)pState