Home | History | Annotate | Download | only in orig

Lines Matching defs:sqlite3_status

1645 **   <li> [sqlite3_status()]
6302 ** ^The sqlite3_status() routine returns SQLITE_OK on success and a
6314 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
6322 ** that can be returned by [sqlite3_status()].
6339 ** *pHighwater parameter to [sqlite3_status()] is of interest.
6365 ** *pHighwater parameter to [sqlite3_status()] is of interest.
6389 ** *pHighwater parameter to [sqlite3_status()] is of interest.
6430 ** See also: [sqlite3_status()] and [sqlite3_stmt_status()].
6559 ** See also: [sqlite3_status()] and [sqlite3_db_status()].
13854 ** This module implements the sqlite3_status() interface and related
14414 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){
17840 ** The sqlite3_status() logic tracks the maximum values of n and M so
19964 sqlite3_status(SQLITE_STATUS_MEMORY_USED, &n, &mx, 0);
19977 sqlite3_status(SQLITE_STATUS_MEMORY_USED, &n, &mx, resetFlag);
97402 #define sqlite3_status sqlite3_api->status
97778 sqlite3_status,