PHPDBG_BREAK_OPLINE  201 sapi/phpdbg/phpdbg.c 	zend_hash_init(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], 8, NULL, php_phpdbg_destroy_bp_opline, 0);
PHPDBG_BREAK_OPLINE  221 sapi/phpdbg/phpdbg.c 	zend_hash_destroy(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]);
PHPDBG_BREAK_OPLINE  378 sapi/phpdbg/phpdbg.c 	zend_hash_clean(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]);
PHPDBG_BREAK_OPLINE  457 sapi/phpdbg/phpdbg_bp.c 	if (!zend_hash_index_exists(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], opline)) {
PHPDBG_BREAK_OPLINE  462 sapi/phpdbg/phpdbg_bp.c 		PHPDBG_BREAK_INIT(new_break, PHPDBG_BREAK_OPLINE);
PHPDBG_BREAK_OPLINE  467 sapi/phpdbg/phpdbg_bp.c 		zend_hash_index_update_mem(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], opline, &new_break, sizeof(phpdbg_breakline_t));
PHPDBG_BREAK_OPLINE  470 sapi/phpdbg/phpdbg_bp.c 		PHPDBG_BREAK_MAPPING(new_break.id, &PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]);
PHPDBG_BREAK_OPLINE  507 sapi/phpdbg/phpdbg_bp.c 	zend_hash_index_update_mem(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], opline_break.opline, &opline_break, sizeof(phpdbg_breakline_t));
PHPDBG_BREAK_OPLINE  534 sapi/phpdbg/phpdbg_bp.c 			zend_hash_internal_pointer_end(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]);
PHPDBG_BREAK_OPLINE  535 sapi/phpdbg/phpdbg_bp.c 			opline_break = zend_hash_get_current_data_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]);
PHPDBG_BREAK_OPLINE  784 sapi/phpdbg/phpdbg_bp.c 	if (!zend_hash_index_exists(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], (zend_ulong) opline)) {
PHPDBG_BREAK_OPLINE  789 sapi/phpdbg/phpdbg_bp.c 		PHPDBG_BREAK_INIT(new_break, PHPDBG_BREAK_OPLINE);
PHPDBG_BREAK_OPLINE  793 sapi/phpdbg/phpdbg_bp.c 		zend_hash_index_update_mem(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], (zend_ulong) opline, &new_break, sizeof(phpdbg_breakline_t));
PHPDBG_BREAK_OPLINE  796 sapi/phpdbg/phpdbg_bp.c 		PHPDBG_BREAK_MAPPING(new_break.id, &PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]);
PHPDBG_BREAK_OPLINE  964 sapi/phpdbg/phpdbg_bp.c 	if ((brake = zend_hash_index_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], (zend_ulong) opline)) && brake->base) {
PHPDBG_BREAK_OPLINE 1184 sapi/phpdbg/phpdbg_bp.c 				if (zend_hash_num_elements(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]) == 1) {
PHPDBG_BREAK_OPLINE 1187 sapi/phpdbg/phpdbg_bp.c 				zend_hash_index_del(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], ((phpdbg_breakopline_t *) brake)->opline);
PHPDBG_BREAK_OPLINE 1218 sapi/phpdbg/phpdbg_bp.c 	zend_hash_clean(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]);
PHPDBG_BREAK_OPLINE 1264 sapi/phpdbg/phpdbg_bp.c 		case PHPDBG_BREAK_OPLINE: {
PHPDBG_BREAK_OPLINE 1468 sapi/phpdbg/phpdbg_bp.c 		case PHPDBG_BREAK_OPLINE: if ((PHPDBG_G(flags) & PHPDBG_HAS_OPLINE_BP)) {
PHPDBG_BREAK_OPLINE 1473 sapi/phpdbg/phpdbg_bp.c 			ZEND_HASH_FOREACH_PTR(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], brake) {
PHPDBG_BREAK_OPLINE   52 sapi/phpdbg/phpdbg_info.c 	phpdbg_print_breakpoints(PHPDBG_BREAK_OPLINE);
PHPDBG_BREAK_OPLINE 1289 sapi/phpdbg/phpdbg_prompt.c 	phpdbg_writeln("clear", "oplines=\"%d\"", "Oplines           %d", zend_hash_num_elements(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]));