Home | History | Annotate | Download | only in dist

Lines Matching defs:expired

6028 ** then the BLOB handle is marked as "expired".
6032 ** an expired BLOB handle fail with a return code of [SQLITE_ABORT].
6137 ** ^An attempt to read from an expired [BLOB handle] fails with an
6178 ** ^An attempt to write to an expired [BLOB handle] fails with an
6180 ** before the [BLOB handle] expired are not rolled back by the
6182 ** have been overwritten by the statement that expired the BLOB handle
14848 bft expired:1; /* True if the VM needs to be recompiled */
66508 p->expired = 0;
67403 if( p->runOnlyOnce ) p->expired = 1;
67404 }else if( p->rc && p->expired ){
67405 /* The expired flag was set on the VDBE before the first call
68919 ** as expired.
68921 ** An expired statement means that recompilation of the statement is
68930 p->expired = 1;
69023 return p==0 || p->expired;
69116 p->expired = 1;
69465 if( p->pc<=0 && p->expired ){
69577 assert( v->expired==0 );
70169 p->expired = 1;
70428 pTo->expired = 1;
70431 pFrom->expired = 1;
73977 p->expired = 1;
74049 p->expired = 0;
74147 if( p->expired ){
76815 expired statement
76820 ** If P1 is 0, then all SQL statements become expired. If P1 is non-zero,
76821 ** then only the currently executing statement is expired.
76827 p->expired = 1;
77148 p->expired = 0;
101974 int (*expired)(sqlite3_stmt*);
102217 #define sqlite3_expired sqlite3_api->expired