Lines Matching refs:flags

328 			PHPDBG_G(flags) |= PHPDBG_HAS_PENDING_FILE_BP;  in phpdbg_set_breakpoint_file()
332 PHPDBG_G(flags) |= PHPDBG_HAS_FILE_BP; in phpdbg_set_breakpoint_file()
357 PHPDBG_G(flags) |= PHPDBG_HAS_FILE_BP; in phpdbg_resolve_pending_file_break_ex()
378 PHPDBG_G(flags) &= ~PHPDBG_HAS_PENDING_FILE_BP; in phpdbg_resolve_pending_file_break_ex()
418 PHPDBG_G(flags) |= PHPDBG_HAS_SYM_BP; in phpdbg_set_breakpoint_symbol()
458 PHPDBG_G(flags) |= PHPDBG_HAS_METHOD_BP; in phpdbg_set_breakpoint_method()
484 PHPDBG_G(flags) |= PHPDBG_HAS_OPLINE_BP; in phpdbg_set_breakpoint_opline()
529 PHPDBG_G(flags) |= PHPDBG_HAS_OPLINE_BP; in phpdbg_resolve_op_array_break()
684 PHPDBG_G(flags) |= PHPDBG_HAS_METHOD_OPLINE_BP; in phpdbg_set_breakpoint_method_opline()
732 PHPDBG_G(flags) |= PHPDBG_HAS_FUNCTION_OPLINE_BP; in phpdbg_set_breakpoint_function_opline()
778 PHPDBG_G(flags) |= PHPDBG_HAS_FILE_OPLINE_BP; in phpdbg_set_breakpoint_file_opline()
800 PHPDBG_G(flags) |= PHPDBG_HAS_OPCODE_BP; in phpdbg_set_breakpoint_opcode()
811 PHPDBG_G(flags) |= PHPDBG_HAS_OPLINE_BP; in phpdbg_set_breakpoint_opline_ex()
891 PHPDBG_G(flags) |= PHPDBG_HAS_COND_BP; in phpdbg_create_conditional_break()
1121 PHPDBG_G(flags) |= PHPDBG_IN_COND_BP; in phpdbg_find_conditional_breakpoint()
1132 PHPDBG_G(flags) &= ~PHPDBG_IN_COND_BP; in phpdbg_find_conditional_breakpoint()
1146 if (!(PHPDBG_G(flags) & PHPDBG_IS_BP_ENABLED)) { in phpdbg_find_breakpoint()
1151 if (!(PHPDBG_G(flags) & PHPDBG_IN_EVAL) && in phpdbg_find_breakpoint()
1152 (PHPDBG_G(flags) & PHPDBG_HAS_COND_BP) && in phpdbg_find_breakpoint()
1157 …if ((PHPDBG_G(flags) & PHPDBG_HAS_FILE_BP) && (base = phpdbg_find_breakpoint_file(&execute_data->f… in phpdbg_find_breakpoint()
1161 if (PHPDBG_G(flags) & (PHPDBG_HAS_METHOD_BP|PHPDBG_HAS_SYM_BP)) { in phpdbg_find_breakpoint()
1171 …if ((PHPDBG_G(flags) & PHPDBG_HAS_OPLINE_BP) && (base = phpdbg_find_breakpoint_opline((phpdbg_opli… in phpdbg_find_breakpoint()
1175 …if ((PHPDBG_G(flags) & PHPDBG_HAS_OPCODE_BP) && (base = phpdbg_find_breakpoint_opcode(execute_data… in phpdbg_find_breakpoint()
1209 PHPDBG_G(flags) &= ~(1<<(brake->type+1)); in phpdbg_delete_breakpoint()
1216 PHPDBG_G(flags) &= ~(1<<(brake->type+1)); in phpdbg_delete_breakpoint()
1226 PHPDBG_G(flags) &= PHPDBG_HAS_OPLINE_BP; in phpdbg_delete_breakpoint()
1268 PHPDBG_G(flags) &= ~PHPDBG_BP_MASK; in phpdbg_clear_breakpoints()
1415 PHPDBG_G(flags) |= PHPDBG_IS_BP_ENABLED; in phpdbg_enable_breakpoints()
1419 PHPDBG_G(flags) &= ~PHPDBG_IS_BP_ENABLED; in phpdbg_disable_breakpoints()
1449 case PHPDBG_BREAK_SYM: if ((PHPDBG_G(flags) & PHPDBG_HAS_SYM_BP)) { in phpdbg_print_breakpoints()
1461 case PHPDBG_BREAK_METHOD: if ((PHPDBG_G(flags) & PHPDBG_HAS_METHOD_BP)) { in phpdbg_print_breakpoints()
1477 case PHPDBG_BREAK_FILE: if ((PHPDBG_G(flags) & PHPDBG_HAS_FILE_BP)) { in phpdbg_print_breakpoints()
1491 } if ((PHPDBG_G(flags) & PHPDBG_HAS_PENDING_FILE_BP)) { in phpdbg_print_breakpoints()
1507 case PHPDBG_BREAK_OPLINE: if ((PHPDBG_G(flags) & PHPDBG_HAS_OPLINE_BP)) { in phpdbg_print_breakpoints()
1547 case PHPDBG_BREAK_METHOD_OPLINE: if ((PHPDBG_G(flags) & PHPDBG_HAS_METHOD_OPLINE_BP)) { in phpdbg_print_breakpoints()
1565 case PHPDBG_BREAK_FUNCTION_OPLINE: if ((PHPDBG_G(flags) & PHPDBG_HAS_FUNCTION_OPLINE_BP)) { in phpdbg_print_breakpoints()
1581 case PHPDBG_BREAK_FILE_OPLINE: if ((PHPDBG_G(flags) & PHPDBG_HAS_FILE_OPLINE_BP)) { in phpdbg_print_breakpoints()
1597 case PHPDBG_BREAK_COND: if ((PHPDBG_G(flags) & PHPDBG_HAS_COND_BP)) { in phpdbg_print_breakpoints()
1653 case PHPDBG_BREAK_OPCODE: if (PHPDBG_G(flags) & PHPDBG_HAS_OPCODE_BP) { in phpdbg_print_breakpoints()