Lines Matching refs:pState

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