Home
last modified time | relevance | path

Searched refs:aCounter (Results 1 – 5 of 5) sorted by relevance

/sqlite-3.40.0/src/
H A Dtest_mutex.c52 int aCounter[MAX_MUTEXES]; /* Number of grabs of each type of mutex */ member
133 g.aCounter[p->eType]++; in counterMutexEnter()
144 g.aCounter[p->eType]++; in counterMutexTry()
280 Tcl_ListObjAppendElement(interp, pRet, Tcl_NewIntObj(g.aCounter[ii])); in test_read_mutex_counters()
305 g.aCounter[ii] = 0; in test_clear_mutex_counters()
H A DvdbeInt.h472 u32 aCounter[9]; /* Counters used by sqlite3_stmt_status() */ member
H A Dvdbeapi.c1831 || (op!=SQLITE_STMTSTATUS_MEMUSED && (op<0||op>=ArraySize(pVdbe->aCounter))) in sqlite3_stmt_status()
1849 v = pVdbe->aCounter[op]; in sqlite3_stmt_status()
1850 if( resetFlag ) pVdbe->aCounter[op] = 0; in sqlite3_stmt_status()
H A Dvdbe.c749 u32 iPrior = p->aCounter[SQLITE_STMTSTATUS_VM_STEP]; in sqlite3VdbeExec()
6102 p->aCounter[SQLITE_STMTSTATUS_SORT]++; in sqlite3VdbeExec()
6247 p->aCounter[pOp->p5]++; in sqlite3VdbeExec()
8520 p->aCounter[SQLITE_STMTSTATUS_FILTER_HIT]++; in sqlite3VdbeExec()
8523 p->aCounter[SQLITE_STMTSTATUS_FILTER_MISS]++; in sqlite3VdbeExec()
8622 p->aCounter[SQLITE_STMTSTATUS_RUN]++; in sqlite3VdbeExec()
8830 p->aCounter[SQLITE_STMTSTATUS_VM_STEP] += (int)nVmStep; in sqlite3VdbeExec()
H A Dvdbeaux.c150 memcpy(pB->aCounter, pA->aCounter, sizeof(pB->aCounter)); in sqlite3VdbeSwap()
151 pB->aCounter[SQLITE_STMTSTATUS_REPREPARE]++; in sqlite3VdbeSwap()