Lines Matching refs:cur

204 		phpdbg_oplog_list *cur = PHPDBG_G(oplog_list);  in PHP_MSHUTDOWN_FUNCTION()  local
206 phpdbg_oplog_list *prev = cur->prev; in PHP_MSHUTDOWN_FUNCTION()
207 efree(cur); in PHP_MSHUTDOWN_FUNCTION()
208 cur = prev; in PHP_MSHUTDOWN_FUNCTION()
209 } while (cur != NULL); in PHP_MSHUTDOWN_FUNCTION()
445 zend_op *cur = op_array->opcodes + op_array->num_args + !!(op_array->fn_flags & ZEND_ACC_VARIADIC); in phpdbg_oplog_fill_executable() local
459 for (; cur < end; cur++) { in phpdbg_oplog_fill_executable()
460 uint8_t opcode = cur->opcode; in phpdbg_oplog_fill_executable()
466 insert_idx = cur - op_array->opcodes; in phpdbg_oplog_fill_executable()
468 insert_idx = cur->lineno; in phpdbg_oplog_fill_executable()
471 if (opcode == ZEND_NEW && cur[1].opcode == ZEND_DO_FCALL) { in phpdbg_oplog_fill_executable()
472 cur++; in phpdbg_oplog_fill_executable()
590 phpdbg_oplog_entry *cur; in PHP_FUNCTION() local
607 cur = PHPDBG_G(oplog_list)->start.next; in PHP_FUNCTION()
638 if (cur->filename != last_file) { in PHP_FUNCTION()
639 last_file = cur->filename; in PHP_FUNCTION()
644 if (cur->function_name == NULL) { in PHP_FUNCTION()
649 } else if (cur->function_name != last_function || cur->scope != last_scope) { in PHP_FUNCTION()
651 last_function = cur->function_name; in PHP_FUNCTION()
652 last_scope = cur->scope; in PHP_FUNCTION()
664 insert_idx = cur->op - cur->opcodes; in PHP_FUNCTION()
666 if (phpdbg_is_ignored_opcode(cur->op->opcode)) { in PHP_FUNCTION()
670 insert_idx = cur->op->lineno; in PHP_FUNCTION()
682 } while ((cur = cur->next)); in PHP_FUNCTION()