• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/sqlite-3.6.22/

Lines Matching defs:deferred

4335 ** to modify the database connection must be deferred until after the
4395 ** to modify the database connection must be deferred until after the
8372 i64 nDeferredCons; /* Net deferred constraints this transaction. */
8523 i64 nDeferredCons; /* Number of deferred fk violations */
8808 u8 isDeferred; /* True if constraint checking is deferred till COMMIT */
17511 i64 movetoTarget; /* Argument to the deferred sqlite3BtreeMoveto() */
22135 ** to close() the file descriptor is deferred until all of the locks clear.
22240 ** locks, the close is deferred until all locks clear by adding the
23110 ** was deferred because of outstanding locks.
25847 ** this reason, the division that implements of proxy locking is deferred
35283 ** of the journal file is deferred until there is an actual need to
49086 ** database handles deferred constraint counter to the value it had when
49125 ** committed. If there are outstanding deferred foreign key constraint
49133 SQLITE_PRIVATE int sqlite3VdbeCheckFk(Vdbe *p, int deferred){
49135 if( (deferred && db->nDeferredCons>0) || (!deferred && p->nFkConstraint>0) ){
49241 ** or hit an 'OR FAIL' constraint and there are no deferred foreign
54780 ** too. If it is a ROLLBACK TO, then set the number of deferred
54934 /* Store the current value of the database handles deferred constraint
55515 ** This is actually a deferred seek. Nothing actually happens until
57175 ** (deferred foreign key constraints). Otherwise, if P1 is zero, the
57194 ** is zero (the one that counts deferred constraint violations). If P1 is
63936 ** the dallocation is deferred until the column cache line that uses
72558 ** Foreign keys in SQLite come in two flavours: deferred and immediate.
72561 ** deferred foreign key constraint is violated, no action is taken
72574 ** * When a commit fails due to a deferred foreign key constraint,
72842 ** INSERT deferred Increment the "deferred constraint counter".
72844 ** DELETE deferred Decrement the "deferred constraint counter".
72967 ** deferred, when a row is inserted into the same table. When generating
72983 ** DELETE deferred Increment the "deferred constraint counter".
72987 ** INSERT deferred Decrement the "deferred constraint counter".
73000 int nIncr /* Amount to increment deferred counter by */
73082 ** clause. If the constraint is not deferred, throw an exception for
73083 ** each row found. Otherwise, for deferred constraints, increment the
73084 ** deferred constraint counter by nIncr for each row selected. */
73148 ** (b) The table is the child table of a deferred FK constraint and it is
73149 ** determined at runtime that there are outstanding deferred FK
73164 /* Search for a deferred foreign key constraint for which this table
73167 ** the entire DELETE if there are no outstanding deferred constraints
73347 ** deferred trigger. That's what RESTRICT means. To defer checking
73718 ** classified as either immediate or deferred.
85639 ** the disconnect is deferred until all locks have been removed.
95944 /* Any deferred constraint violations have now been resolved. */