Home | History | Annotate | Download | only in orig

Lines Matching defs:sqlite3_status

1961 **   <li> [sqlite3_status()]
6356 ** ^The sqlite3_status() routine returns SQLITE_OK on success and a
6368 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
6376 ** that can be returned by [sqlite3_status()].
6393 ** *pHighwater parameter to [sqlite3_status()] is of interest.
6419 ** *pHighwater parameter to [sqlite3_status()] is of interest.
6443 ** *pHighwater parameter to [sqlite3_status()] is of interest.
6484 ** See also: [sqlite3_status()] and [sqlite3_stmt_status()].
6594 ** See also: [sqlite3_status()] and [sqlite3_db_status()].
12823 ** This module implements the sqlite3_status() interface and related
13371 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){
16725 ** The sqlite3_status() logic tracks the maximum values of n and M so
18806 sqlite3_status(SQLITE_STATUS_MEMORY_USED, &n, &mx, 0);
18819 sqlite3_status(SQLITE_STATUS_MEMORY_USED, &n, &mx, resetFlag);
91390 #define sqlite3_status sqlite3_api->status
91740 sqlite3_status,