Home | History | Annotate | Download | only in dist

Lines Matching full:parg

465 static void shellLog(void *pArg, int iErrCode, const char *zMsg){
466 struct callback_data *p = (struct callback_data*)pArg;
650 static int shell_callback(void *pArg, int nArg, char **azArg, char **azCol, int *aiType){
652 struct callback_data *p = (struct callback_data*)pArg;
831 static int callback(void *pArg, int nArg, char **azArg, char **azCol){
833 return shell_callback(pArg, nArg, azArg, azCol, NULL);
970 struct callback_data *pArg, /* Pointer to struct callback_data */
976 if( pArg && pArg->out ){
980 fprintf(pArg->out, "Memory Used: %d (max %d) bytes\n", iCur, iHiwtr);
983 fprintf(pArg->out, "Number of Allocations: %d (max %d)\n", iCur, iHiwtr);
988 ** fprintf(pArg->out, "Number of Pcache Pages Used: %d (max %d) pages\n", iCur, iHiwtr);
992 fprintf(pArg->out, "Number of Pcache Overflow Bytes: %d (max %d) bytes\n", iCur, iHiwtr);
997 ** fprintf(pArg->out, "Number of Scratch Allocations Used: %d (max %d)\n", iCur, iHiwtr);
1001 fprintf(pArg->out, "Number of Scratch Overflow Bytes: %d (max %d) bytes\n", iCur, iHiwtr);
1004 fprintf(pArg->out, "Largest Allocation: %d bytes\n", iHiwtr);
1007 fprintf(pArg->out, "Largest Pcache Allocation: %d bytes\n", iHiwtr);
1010 fprintf(pArg->out, "Largest Scratch Allocation: %d bytes\n", iHiwtr);
1014 fprintf(pArg->out, "Deepest Parser Stack: %d (max %d)\n", iCur, iHiwtr);
1018 if( pArg && pArg->out && db ){
1021 fprintf(pArg->out, "Lookaside Slots Used: %d (max %d)\n", iCur, iHiwtr);
1024 fprintf(pArg->out, "Pager Heap Usage: %d bytes\n", iCur);
1027 fprintf(pArg->out, "Schema Heap Usage: %d bytes\n", iCur);
1030 fprintf(pArg->out, "Statement Heap/Lookaside Usage: %d bytes\n", iCur);
1033 if( pArg && pArg->out && db && pArg->pStmt ){
1034 iCur = sqlite3_stmt_status(pArg->pStmt, SQLITE_STMTSTATUS_FULLSCAN_STEP, bReset);
1035 fprintf(pArg->out, "Fullscan Steps: %d\n", iCur);
1036 iCur = sqlite3_stmt_status(pArg->pStmt, SQLITE_STMTSTATUS_SORT, bReset);
1037 fprintf(pArg->out, "Sort Operations: %d\n", iCur);
1038 iCur = sqlite3_stmt_status(pArg->pStmt, SQLITE_STMTSTATUS_AUTOINDEX, bReset);
1039 fprintf(pArg->out, "Autoindex Inserts: %d\n", iCur);
1059 struct callback_data *pArg, /* Pointer to struct callback_data */
1085 if( pArg ){
1086 pArg->pStmt = pStmt;
1087 pArg->cnt = 0;
1091 if( pArg && pArg->echoOn ){
1093 fprintf(pArg->out, "%s\n", zStmtSql ? zStmtSql : zSql);
1133 if( xCallback(pArg, nCol, azVals, azCols, aiTypes) ){
1150 if( pArg && pArg->statsOn ){
1151 display_stats(db, pArg, 0);
1166 if( pArg ){
1167 pArg->pStmt = NULL;
1182 static int dump_callback(void *pArg, int nArg, char **azArg, char **azCol){
1188 struct callback_data *p = (struct callback_data *)pArg;