ZEND_ACC_INTERACTIVE   73 Zend/zend_compile.c 		if ((CG(active_op_array)->fn_flags & ZEND_ACC_INTERACTIVE) && CG(active_op_array)->run_time_cache) { \
ZEND_ACC_INTERACTIVE   84 Zend/zend_compile.c 		if ((CG(active_op_array)->fn_flags & ZEND_ACC_INTERACTIVE) && CG(active_op_array)->run_time_cache) { \
ZEND_ACC_INTERACTIVE  177 Zend/zend_compile.c 	CG(context).opcodes_size = (CG(active_op_array)->fn_flags & ZEND_ACC_INTERACTIVE) ? INITIAL_INTERACTIVE_OP_ARRAY_SIZE : INITIAL_OP_ARRAY_SIZE;
ZEND_ACC_INTERACTIVE   39 Zend/zend_compile.h #define INC_BPC(op_array)	if (op_array->fn_flags & ZEND_ACC_INTERACTIVE) { (CG(context).backpatch_count++); }
ZEND_ACC_INTERACTIVE   40 Zend/zend_compile.h #define DEC_BPC(op_array)	if (op_array->fn_flags & ZEND_ACC_INTERACTIVE) { (CG(context).backpatch_count--); }
ZEND_ACC_INTERACTIVE   41 Zend/zend_compile.h #define HANDLE_INTERACTIVE()  if (CG(active_op_array)->fn_flags & ZEND_ACC_INTERACTIVE) { execute_new_code(TSRMLS_C); }
ZEND_ACC_INTERACTIVE 1667 Zend/zend_execute.c 	EX(opline) = UNEXPECTED((op_array->fn_flags & ZEND_ACC_INTERACTIVE) != 0) && EG(start_op) ? EG(start_op) : op_array->opcodes;
ZEND_ACC_INTERACTIVE 1250 Zend/zend_execute_API.c 	if (!(CG(active_op_array)->fn_flags & ZEND_ACC_INTERACTIVE)
ZEND_ACC_INTERACTIVE   97 Zend/zend_opcode.c 	op_array->fn_flags = CG(interactive)?ZEND_ACC_INTERACTIVE:0;
ZEND_ACC_INTERACTIVE  433 Zend/zend_opcode.c 		if (op_array->fn_flags & ZEND_ACC_INTERACTIVE) {
ZEND_ACC_INTERACTIVE  737 Zend/zend_opcode.c 	if (!(op_array->fn_flags & ZEND_ACC_INTERACTIVE) && CG(context).vars_size != op_array->last_var) {
ZEND_ACC_INTERACTIVE  741 Zend/zend_opcode.c 	if (!(op_array->fn_flags & ZEND_ACC_INTERACTIVE) && CG(context).opcodes_size != op_array->last) {
ZEND_ACC_INTERACTIVE  745 Zend/zend_opcode.c 	if (!(op_array->fn_flags & ZEND_ACC_INTERACTIVE) && CG(context).literals_size != op_array->last_literal) {
ZEND_ACC_INTERACTIVE  357 ext/opcache/Optimizer/zend_optimizer.c 	    (op_array->fn_flags & ZEND_ACC_INTERACTIVE)) {