PHPDBG_BREAK_FILE_OPLINE  155 sapi/phpdbg/phpdbg.c 	zend_hash_init(&PHPDBG_G(bp)[PHPDBG_BREAK_FILE_OPLINE], 8, NULL, php_phpdbg_destroy_bp_methods, 0);
PHPDBG_BREAK_FILE_OPLINE  174 sapi/phpdbg/phpdbg.c 	zend_hash_destroy(&PHPDBG_G(bp)[PHPDBG_BREAK_FILE_OPLINE]);
PHPDBG_BREAK_FILE_OPLINE  330 sapi/phpdbg/phpdbg.c 	zend_hash_clean(&PHPDBG_G(bp)[PHPDBG_BREAK_FILE_OPLINE]);
PHPDBG_BREAK_FILE_OPLINE  171 sapi/phpdbg/phpdbg_bp.c 						case PHPDBG_BREAK_FILE_OPLINE: {
PHPDBG_BREAK_FILE_OPLINE  387 sapi/phpdbg/phpdbg_bp.c 		opline_break.type = PHPDBG_BREAK_FILE_OPLINE;
PHPDBG_BREAK_FILE_OPLINE  410 sapi/phpdbg/phpdbg_bp.c 		if (zend_hash_find(&PHPDBG_G(bp)[PHPDBG_BREAK_FILE_OPLINE], op_array->filename, strlen(op_array->filename), (void **)&oplines_table) == FAILURE) {
PHPDBG_BREAK_FILE_OPLINE  613 sapi/phpdbg/phpdbg_bp.c 	PHPDBG_BREAK_INIT(new_break, PHPDBG_BREAK_FILE_OPLINE);
PHPDBG_BREAK_FILE_OPLINE  634 sapi/phpdbg/phpdbg_bp.c 	if (zend_hash_find(&PHPDBG_G(bp)[PHPDBG_BREAK_FILE_OPLINE], new_break.class_name, new_break.class_len, (void **)&file_table) == FAILURE) {
PHPDBG_BREAK_FILE_OPLINE  637 sapi/phpdbg/phpdbg_bp.c 			&PHPDBG_G(bp)[PHPDBG_BREAK_FILE_OPLINE],
PHPDBG_BREAK_FILE_OPLINE 1121 sapi/phpdbg/phpdbg_bp.c 			case PHPDBG_BREAK_FILE_OPLINE:
PHPDBG_BREAK_FILE_OPLINE 1165 sapi/phpdbg/phpdbg_bp.c 	zend_hash_clean(&PHPDBG_G(bp)[PHPDBG_BREAK_FILE_OPLINE]);
PHPDBG_BREAK_FILE_OPLINE 1238 sapi/phpdbg/phpdbg_bp.c 		case PHPDBG_BREAK_FILE_OPLINE: {
PHPDBG_BREAK_FILE_OPLINE 1432 sapi/phpdbg/phpdbg_bp.c 					case PHPDBG_BREAK_FILE_OPLINE:
PHPDBG_BREAK_FILE_OPLINE 1436 sapi/phpdbg/phpdbg_bp.c 									brake->type == PHPDBG_BREAK_FILE_OPLINE?"file":
PHPDBG_BREAK_FILE_OPLINE 1517 sapi/phpdbg/phpdbg_bp.c 		case PHPDBG_BREAK_FILE_OPLINE: if ((PHPDBG_G(flags) & PHPDBG_HAS_FILE_OPLINE_BP)) {
PHPDBG_BREAK_FILE_OPLINE 1526 sapi/phpdbg/phpdbg_bp.c 			for (zend_hash_internal_pointer_reset_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_FILE_OPLINE], &position[0]);
PHPDBG_BREAK_FILE_OPLINE 1527 sapi/phpdbg/phpdbg_bp.c 			     zend_hash_get_current_data_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_FILE_OPLINE], (void**) &file_table, &position[0]) == SUCCESS;
PHPDBG_BREAK_FILE_OPLINE 1528 sapi/phpdbg/phpdbg_bp.c 			     zend_hash_move_forward_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_FILE_OPLINE], &position[0])) {
PHPDBG_BREAK_FILE_OPLINE 1530 sapi/phpdbg/phpdbg_bp.c 				if (zend_hash_get_current_key_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_FILE_OPLINE],
PHPDBG_BREAK_FILE_OPLINE   51 sapi/phpdbg/phpdbg_info.c 	phpdbg_print_breakpoints(PHPDBG_BREAK_FILE_OPLINE TSRMLS_CC);
PHPDBG_BREAK_FILE_OPLINE  943 sapi/phpdbg/phpdbg_prompt.c 	phpdbg_writeln("File oplines\t\t\t%d", zend_hash_num_elements(&PHPDBG_G(bp)[PHPDBG_BREAK_FILE_OPLINE]));