Lines Matching defs:OP_Halt
15971 /* Error message codes for OP_Halt */
16081 #define OP_Halt 70
83225 ** * OP_Halt with P1=SQLITE_CONSTRAINT and P2=OE_Abort.
83262 || ((opcode==OP_Halt || opcode==OP_HaltIfNull)
83448 ** to detect invalid escapes out of a subroutine. The OP_Halt opcode
83508 sqlite3VdbeAddOp4(v, OP_Halt, SQLITE_INTERNAL, OE_Abort, 0, zErr, 0);
91438 /* Fall through into OP_Halt */
91472 case OP_Halt: {
91494 ** currently being halted. If the p2 instruction of this OP_Halt
99530 {OP_Halt, 0, 0, 0}, /* 5 */
110672 v, OP_Halt, SQLITE_OK, OE_Ignore, 0, pExpr->u.zToken,0);
117647 sqlite3VdbeAddOp0(v, OP_Halt);
117751 ** * The final OP_Halt is not appended and other initialization
122783 ** Code an OP_Halt that causes the vdbe to return an SQLITE_CONSTRAINT
122802 sqlite3VdbeAddOp4(v, OP_Halt, errCode, onError, 0, p4, p4type);
122807 ** Code an OP_Halt due to UNIQUE or PRIMARY KEY constraint violation.
122843 ** Code an OP_Halt due to non-unique rowid.
131752 sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_OK, 0);
134600 sqlite3VdbeAddOp0(v, OP_Halt);
135037 { OP_Halt, SQLITE_OK, OE_Abort, 0}, /* 3 */
136286 { OP_Halt, 0, 0, 0}, /* 4 */
147578 ** OP_Halt inserted at the end of the program. */
147593 /* Insert an OP_Halt at the end of the sub-program. */
147597 sqlite3VdbeAddOp0(v, OP_Halt);
149487 sqlite3VdbeAddOp4(v, OP_Halt, SQLITE_CORRUPT, OE_Abort, 0,
164639 sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_ERROR, OE_Abort);