PHPDBG_BREAK_OPLINE  156 sapi/phpdbg/phpdbg.c 	zend_hash_init(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], 8, NULL, NULL, 0);
PHPDBG_BREAK_OPLINE  175 sapi/phpdbg/phpdbg.c 	zend_hash_destroy(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]);
PHPDBG_BREAK_OPLINE  331 sapi/phpdbg/phpdbg.c 	zend_hash_clean(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]);
PHPDBG_BREAK_OPLINE  340 sapi/phpdbg/phpdbg_bp.c 	if (!zend_hash_index_exists(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], opline)) {
PHPDBG_BREAK_OPLINE  345 sapi/phpdbg/phpdbg_bp.c 		PHPDBG_BREAK_INIT(new_break, PHPDBG_BREAK_OPLINE);
PHPDBG_BREAK_OPLINE  350 sapi/phpdbg/phpdbg_bp.c 		zend_hash_index_update(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], opline,
PHPDBG_BREAK_OPLINE  355 sapi/phpdbg/phpdbg_bp.c 		PHPDBG_BREAK_MAPPING(new_break.id, &PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]);
PHPDBG_BREAK_OPLINE  392 sapi/phpdbg/phpdbg_bp.c 	zend_hash_index_update(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], opline_break.opline, &opline_break, sizeof(phpdbg_breakline_t), NULL);
PHPDBG_BREAK_OPLINE  423 sapi/phpdbg/phpdbg_bp.c 			zend_hash_internal_pointer_end(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]);
PHPDBG_BREAK_OPLINE  424 sapi/phpdbg/phpdbg_bp.c 			zend_hash_get_current_data(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], (void **)&opline_break);
PHPDBG_BREAK_OPLINE  683 sapi/phpdbg/phpdbg_bp.c 	if (!zend_hash_index_exists(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], (zend_ulong) opline)) {
PHPDBG_BREAK_OPLINE  688 sapi/phpdbg/phpdbg_bp.c 		PHPDBG_BREAK_INIT(new_break, PHPDBG_BREAK_OPLINE);
PHPDBG_BREAK_OPLINE  692 sapi/phpdbg/phpdbg_bp.c 		zend_hash_index_update(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE],
PHPDBG_BREAK_OPLINE  697 sapi/phpdbg/phpdbg_bp.c 		PHPDBG_BREAK_MAPPING(new_break.id, &PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]);
PHPDBG_BREAK_OPLINE  868 sapi/phpdbg/phpdbg_bp.c 	if (zend_hash_index_find(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE],
PHPDBG_BREAK_OPLINE 1125 sapi/phpdbg/phpdbg_bp.c 				if (zend_hash_num_elements(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]) == 1) {
PHPDBG_BREAK_OPLINE 1128 sapi/phpdbg/phpdbg_bp.c 				zend_hash_index_del(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], ((phpdbg_breakopline_t*)brake)->opline);
PHPDBG_BREAK_OPLINE 1163 sapi/phpdbg/phpdbg_bp.c 	zend_hash_clean(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]);
PHPDBG_BREAK_OPLINE 1209 sapi/phpdbg/phpdbg_bp.c 		case PHPDBG_BREAK_OPLINE: {
PHPDBG_BREAK_OPLINE 1421 sapi/phpdbg/phpdbg_bp.c 		case PHPDBG_BREAK_OPLINE: if ((PHPDBG_G(flags) & PHPDBG_HAS_OPLINE_BP)) {
PHPDBG_BREAK_OPLINE 1427 sapi/phpdbg/phpdbg_bp.c 			for (zend_hash_internal_pointer_reset_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], &position);
PHPDBG_BREAK_OPLINE 1428 sapi/phpdbg/phpdbg_bp.c 			     zend_hash_get_current_data_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], (void**) &brake, &position) == SUCCESS;
PHPDBG_BREAK_OPLINE 1429 sapi/phpdbg/phpdbg_bp.c 			     zend_hash_move_forward_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], &position)) {
PHPDBG_BREAK_OPLINE   50 sapi/phpdbg/phpdbg_info.c 	phpdbg_print_breakpoints(PHPDBG_BREAK_OPLINE TSRMLS_CC);
PHPDBG_BREAK_OPLINE  942 sapi/phpdbg/phpdbg_prompt.c 	phpdbg_writeln("Oplines\t\t\t%d", zend_hash_num_elements(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]));