Lines Matching defs:status
1092 ** about the status of a lock, or to break stale locks. The SQLite
3326 ** SQLite provides these two interfaces for reporting on the status
6667 ** If another thread changes the autocommit status of the database
8590 ** These interfaces return the current status of an [sqlite3_str] object.
8622 ** ^These interfaces are used to retrieve runtime status information
8626 ** are of the form [status parameters | SQLITE_STATUS_...].)^
8656 ** KEYWORDS: {status parameters}
8658 ** These integer constants designate various run-time status parameters
8719 ** New status parameters may be added from time to time.
8736 ** ^This interface is used to retrieve runtime status information
8943 ** then the value returned by this statement status code is undefined.
10327 ** The "iScanStatusOp" parameter determines which status information to return.
19471 int bMemstat; /* True to enable memory status */
22390 /************** Begin file status.c ******************************************/
22407 /************** Include vdbeInt.h in the middle of status.c ******************/
23119 /************** Continuing where we left off in status.c *********************/
23122 ** Variables in which to record status information.
23153 /* The "wsdStat" macro will resolve to the status information
23168 ** Return the current value of a status parameter. The caller must
23181 ** Add N to the value of a status record. The caller must hold the
23185 ** The value of N is added to the current status value and the high-water
23234 ** Query status information.
23302 ** Query status information for a single database connection
23305 sqlite3 *db, /* The database connection whose status is desired */
23502 /************** End of status.c **********************************************/
25951 /* If memory status is enabled, then the malloc.c wrapper will already
37891 ** field that tells us its internal lock status. cnt==0 means the
50515 ** Check the existence and status of a file.
65415 volatile WalCkptInfo *pInfo; /* The checkpoint status information */
89725 ** Return the value of a status counter for a prepared statement
90007 ** Return status data for a single loop within query pStmt.
108557 int *prRhsHasNull, /* Register holding NULL status. See notes */
132135 int (*status)(int,int*,int*,int);
132480 #define sqlite3_status sqlite3_api->status
133693 /* 54 */ "status",
207627 UErrorCode status = U_ZERO_ERROR;
207647 pExpr = uregex_open(zPattern, -1, 0, 0, &status);
207649 if( U_SUCCESS(status) ){
207654 icuFunctionError(p, "uregex_open", status);
207660 uregex_setText(pExpr, zString, -1, &status);
207661 if( !U_SUCCESS(status) ){
207662 icuFunctionError(p, "uregex_setText", status);
207667 res = uregex_matches(pExpr, 0, &status);
207668 if( !U_SUCCESS(status) ){
207669 icuFunctionError(p, "uregex_matches", status);
207678 uregex_setText(pExpr, 0, 0, &status);
207717 UErrorCode status;
207744 status = U_ZERO_ERROR;
207746 nOut = 2*u_strToUpper(zOutput,nOut/2,zInput,nInput/2,zLocale,&status);
207748 nOut = 2*u_strToLower(zOutput,nOut/2,zInput,nInput/2,zLocale,&status);
207751 if( U_SUCCESS(status) ){
207753 }else if( status==U_BUFFER_OVERFLOW_ERROR ){
207757 icuFunctionError(p, bToUpper ? "u_strToUpper" : "u_strToLower", status);
207817 UErrorCode status = U_ZERO_ERROR;
207832 pUCollator = ucol_open(zLocale, &status);
207833 if( !U_SUCCESS(status) ){
207834 icuFunctionError(p, "ucol_open", status);
208011 UErrorCode status = U_ZERO_ERROR;
208058 pCsr->pIter = ubrk_open(UBRK_WORD, p->zLocale, pCsr->aChar, iOut, &status);
208059 if( !U_SUCCESS(status) ){
208120 UErrorCode status = U_ZERO_ERROR;
208133 &status /* Output success/failure */