Lines Matching refs:testctrl
18981 ".testctrl CMD ... Run various sqlite3_test_control() operations",
18982 " Run \".testctrl\" with no arguments for details",
24774 if( c=='t' && n>=8 && cli_strncmp(azArg[0], "testctrl", n)==0 ){
24804 int testctrl = -1;
24824 utf8_printf(p->out, " .testctrl %s %s\n",
24831 /* convert testctrl text option to value. allow any unique prefix
24836 if( testctrl<0 ){
24837 testctrl = aCtrl[i].ctrlCode;
24841 "Use \".testctrl --help\" for help\n", zCmd);
24847 if( testctrl<0 ){
24849 "Use \".testctrl --help\" for help\n", zCmd);
24852 "line %d: \".testctrl %s\" may not be used in safe mode\n",
24856 switch(testctrl){
24862 rc2 = sqlite3_test_control(testctrl, p->db, opt);
24872 rc2 = sqlite3_test_control(testctrl);
24873 isOk = testctrl==SQLITE_TESTCTRL_BYTEORDER ? 1 : 3;
24881 rc2 = sqlite3_test_control(testctrl, opt);
24902 rc2 = sqlite3_test_control(testctrl, ii, db);
24912 rc2 = sqlite3_test_control(testctrl, opt);
24922 rc2 = sqlite3_test_control(testctrl, opt);
24929 rc2 = sqlite3_test_control(testctrl, p->db);
24935 rc2 = sqlite3_test_control(testctrl, p->db,
24945 rc2 = sqlite3_test_control(testctrl, p->db, &x);
24954 sqlite3_test_control(testctrl, p->out);
24965 sqlite3_test_control(testctrl, id, &val);
24969 sqlite3_test_control(testctrl, -id, &rc2);
24975 rc2 = sqlite3_test_control(testctrl, -id, &val);
24990 rc2 = sqlite3_test_control(testctrl, p->db, opt);
24997 utf8_printf(p->out, "Usage: .testctrl %s %s\n", zCmd,aCtrl[iCtrl].zUsage);