Lines Matching refs:expired

8264 ** then the BLOB handle is marked as "expired".
8268 ** an expired BLOB handle fail with a return code of [SQLITE_ABORT].
8377 ** ^An attempt to read from an expired [BLOB handle] fails with an
8418 ** ^An attempt to write to an expired [BLOB handle] fails with an
8420 ** before the [BLOB handle] expired are not rolled back by the
8422 ** have been overwritten by the statement that expired the BLOB handle
21410 bft expired:2; /* 1: recompile VM immediately 2: when convenient */
80791 p->expired = 0;
81685 if( p->runOnlyOnce ) p->expired = 1;
81686 }else if( p->rc && p->expired ){
81687 /* The expired flag was set on the VDBE before the first call
83409 ** as expired.
83411 ** An expired statement means that recompilation of the statement is
83421 ** Internally, this function just sets the Vdbe.expired flag on all
83428 p->expired = iCode+1;
83657 return p==0 || p->expired;
83788 p->expired = 1;
84282 if( p->pc<0 && p->expired ){
84414 assert( v->expired==0 );
84992 p->expired = 1;
85276 pTo->expired = 1;
85280 pFrom->expired = 1;
89552 p->expired = 1;
89630 p->expired = 0;
89747 if( p->expired==1 ){
92307 p->expired = 0;
93294 ** Cause precompiled statements to expire. When an expired statement
93299 ** If P1 is 0, then all SQL statements become expired. If P1 is non-zero,
93300 ** then only the currently executing statement is expired.
93302 ** If P2 is 0, then SQL statements are expired immediately. If P2 is 1,
93313 p->expired = pOp->p2+1;
93689 p->expired = 0;
125489 int (*expired)(sqlite3_stmt*);
125814 #define sqlite3_expired sqlite3_api->expired