Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:OP_Halt

8040 #define OP_Halt                                 6
57472 ** * OP_Halt with P1=SQLITE_CONSTRAINT and P2=OE_Abort.
57499 || ((opcode==OP_Halt || opcode==OP_HaltIfNull)
62424 ** close the program with a final OP_Halt and to set up the callbacks
63120 /* Fall through into OP_Halt */
63142 case OP_Halt: {
63152 ** currently being halted. If the p2 instruction of this OP_Halt
64163 ** OP_Halt, or OP_ResultRow. Typically the OP_Permutation should occur
68578 {OP_Halt, 0, 0, 0}, /* 11 */
73580 v, OP_Halt, SQLITE_OK, OE_Ignore, 0, pExpr->u.zToken,0);
76981 sqlite3VdbeAddOp0(v, OP_Halt);
77062 ** this way, the final OP_Halt is not appended and other initialization
80420 ** Code an OP_Halt that causes the vdbe to return an SQLITE_CONSTRAINT
80429 sqlite3VdbeAddOp4(v, OP_Halt, SQLITE_CONSTRAINT, onError, 0, p4, p4type);
85094 sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_INTERNAL, OE_Abort);
86305 sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_OK, 0);
88171 { OP_Halt, SQLITE_OK, OE_Abort, 0}, /* 3 */
88643 sqlite3VdbeAddOp2(v, OP_Halt, 0, 0);
88690 sqlite3VdbeAddOp2(v, OP_Halt, 0, 0);
88710 { OP_Halt, 0, 0, 0},
88737 sqlite3VdbeAddOp2(v, OP_Halt, 0, 0);
95453 ** OP_Halt inserted at the end of the program. */
95468 /* Insert an OP_Halt at the end of the sub-program. */
95472 sqlite3VdbeAddOp0(v, OP_Halt);