brake 145 sapi/phpdbg/phpdbg.c static void php_phpdbg_destroy_bp_file(zval *brake) /* {{{ */ brake 147 sapi/phpdbg/phpdbg.c zend_hash_destroy(Z_ARRVAL_P(brake)); brake 148 sapi/phpdbg/phpdbg.c efree(Z_ARRVAL_P(brake)); brake 151 sapi/phpdbg/phpdbg.c static void php_phpdbg_destroy_bp_symbol(zval *brake) /* {{{ */ brake 153 sapi/phpdbg/phpdbg.c efree((char *) ((phpdbg_breaksymbol_t *) Z_PTR_P(brake))->symbol); brake 154 sapi/phpdbg/phpdbg.c efree(Z_PTR_P(brake)); brake 157 sapi/phpdbg/phpdbg.c static void php_phpdbg_destroy_bp_opcode(zval *brake) /* {{{ */ brake 159 sapi/phpdbg/phpdbg.c efree((char *) ((phpdbg_breakop_t *) Z_PTR_P(brake))->name); brake 160 sapi/phpdbg/phpdbg.c efree(Z_PTR_P(brake)); brake 163 sapi/phpdbg/phpdbg.c static void php_phpdbg_destroy_bp_opline(zval *brake) /* {{{ */ brake 165 sapi/phpdbg/phpdbg.c efree(Z_PTR_P(brake)); brake 168 sapi/phpdbg/phpdbg.c static void php_phpdbg_destroy_bp_methods(zval *brake) /* {{{ */ brake 170 sapi/phpdbg/phpdbg.c zend_hash_destroy(Z_ARRVAL_P(brake)); brake 171 sapi/phpdbg/phpdbg.c efree(Z_ARRVAL_P(brake)); brake 176 sapi/phpdbg/phpdbg.c phpdbg_breakcond_t *brake = (phpdbg_breakcond_t *) Z_PTR_P(data); brake 178 sapi/phpdbg/phpdbg.c if (brake->ops) { brake 179 sapi/phpdbg/phpdbg.c destroy_op_array(brake->ops); brake 180 sapi/phpdbg/phpdbg.c efree(brake->ops); brake 182 sapi/phpdbg/phpdbg.c efree((char*) brake->code); brake 183 sapi/phpdbg/phpdbg.c efree(brake); brake 102 sapi/phpdbg/phpdbg_bp.c phpdbg_breakbase_t *brake; brake 104 sapi/phpdbg/phpdbg_bp.c ZEND_HASH_FOREACH_PTR(table, brake) { brake 105 sapi/phpdbg/phpdbg_bp.c brake->hits = 0; brake 130 sapi/phpdbg/phpdbg_bp.c phpdbg_breakbase_t *brake; brake 132 sapi/phpdbg/phpdbg_bp.c ZEND_HASH_FOREACH_PTR(table, brake) { brake 133 sapi/phpdbg/phpdbg_bp.c if (brake->id == id) { brake 136 sapi/phpdbg/phpdbg_bp.c switch (brake->type) { brake 140 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakfile_t*)brake)->filename, brake 141 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakfile_t*)brake)->line); brake 147 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breaksymbol_t*)brake)->symbol); brake 153 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakmethod_t*)brake)->class_name, brake 154 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakmethod_t*)brake)->func_name); brake 160 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->class_name, brake 161 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->func_name, brake 162 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->opline_num); brake 168 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->func_name, brake 169 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->opline_num); brake 175 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->class_name, brake 176 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->opline_num); brake 182 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakop_t*)brake)->name); brake 186 sapi/phpdbg/phpdbg_bp.c phpdbg_breakcond_t *conditional = (phpdbg_breakcond_t*) brake; brake 330 sapi/phpdbg/phpdbg_bp.c phpdbg_breakfile_t *brake, new_brake; brake 341 sapi/phpdbg/phpdbg_bp.c ZEND_HASH_FOREACH_PTR(fileht, brake) { brake 342 sapi/phpdbg/phpdbg_bp.c new_brake = *brake; brake 344 sapi/phpdbg/phpdbg_bp.c PHPDBG_BREAK_UNMAPPING(brake->id); brake 346 sapi/phpdbg/phpdbg_bp.c if (zend_hash_index_add_mem(master, brake->line, &new_brake, sizeof(phpdbg_breakfile_t))) { brake 347 sapi/phpdbg/phpdbg_bp.c PHPDBG_BREAK_MAPPING(brake->id, master); brake 476 sapi/phpdbg/phpdbg_bp.c PHPDBG_API int phpdbg_resolve_op_array_break(phpdbg_breakopline_t *brake, zend_op_array *op_array) /* {{{ */ brake 479 sapi/phpdbg/phpdbg_bp.c if (op_array->last <= brake->opline_num) { brake 480 sapi/phpdbg/phpdbg_bp.c if (brake->class_name == NULL) { brake 481 sapi/phpdbg/phpdbg_bp.c phpdbg_error("breakpoint", "type=\"maxoplines\" add=\"fail\" maxoplinenum=\"%d\" function=\"%s\" usedoplinenum=\"%ld\"", "There are only %d oplines in function %s (breaking at opline %ld impossible)", op_array->last, brake->func_name, brake->opline_num); brake 482 sapi/phpdbg/phpdbg_bp.c } else if (brake->func_name == NULL) { brake 483 sapi/phpdbg/phpdbg_bp.c phpdbg_error("breakpoint", "type=\"maxoplines\" add=\"fail\" maxoplinenum=\"%d\" file=\"%s\" usedoplinenum=\"%ld\"", "There are only %d oplines in file %s (breaking at opline %ld impossible)", op_array->last, brake->class_name, brake->opline_num); brake 485 sapi/phpdbg/phpdbg_bp.c phpdbg_error("breakpoint", "type=\"maxoplines\" add=\"fail\" maxoplinenum=\"%d\" method=\"%s::%s\" usedoplinenum=\"%ld\"", "There are only %d oplines in method %s::%s (breaking at opline %ld impossible)", op_array->last, brake->class_name, brake->func_name, brake->opline_num); brake 493 sapi/phpdbg/phpdbg_bp.c opline_break.id = brake->id; brake 494 sapi/phpdbg/phpdbg_bp.c opline_break.opline = brake->opline = (zend_ulong)(op_array->opcodes + brake->opline_num); brake 496 sapi/phpdbg/phpdbg_bp.c opline_break.base = brake; brake 516 sapi/phpdbg/phpdbg_bp.c phpdbg_breakopline_t *brake; brake 530 sapi/phpdbg/phpdbg_bp.c ZEND_HASH_FOREACH_PTR(oplines_table, brake) { brake 531 sapi/phpdbg/phpdbg_bp.c if (phpdbg_resolve_op_array_break(brake, op_array) == SUCCESS) { brake 539 sapi/phpdbg/phpdbg_bp.c brake->class_name ? brake->class_name : "", brake 540 sapi/phpdbg/phpdbg_bp.c brake->class_name && brake->func_name ? "::" : "", brake 541 sapi/phpdbg/phpdbg_bp.c brake->func_name ? brake->func_name : "", brake 542 sapi/phpdbg/phpdbg_bp.c brake->opline_num, brake 802 sapi/phpdbg/phpdbg_bp.c static inline void phpdbg_create_conditional_break(phpdbg_breakcond_t *brake, const phpdbg_param_t *param, const char *expr, size_t expr_len, zend_ulong hash) /* {{{ */ brake 838 sapi/phpdbg/phpdbg_bp.c brake = zend_hash_index_update_mem(&PHPDBG_G(bp)[PHPDBG_BREAK_COND], hash, &new_break, sizeof(phpdbg_breakcond_t)); brake 840 sapi/phpdbg/phpdbg_bp.c phpdbg_notice("breakpoint", "id=\"%d\" expression=\"%s\" ptr=\"%p\"", "Conditional breakpoint #%d added %s/%p", brake->id, brake->code, brake->ops); brake 888 sapi/phpdbg/phpdbg_bp.c phpdbg_breakbase_t *brake; brake 907 sapi/phpdbg/phpdbg_bp.c if (EG(current_execute_data) && (brake = zend_hash_index_find_ptr(breaks, EG(current_execute_data)->opline->lineno))) { brake 908 sapi/phpdbg/phpdbg_bp.c return brake; brake 930 sapi/phpdbg/phpdbg_bp.c phpdbg_breakbase_t *brake; brake 933 sapi/phpdbg/phpdbg_bp.c brake = zend_hash_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_SYM], fname); brake 936 sapi/phpdbg/phpdbg_bp.c return brake; brake 945 sapi/phpdbg/phpdbg_bp.c phpdbg_breakbase_t *brake = NULL; brake 951 sapi/phpdbg/phpdbg_bp.c brake = zend_hash_find_ptr(class_table, lcname); brake 957 sapi/phpdbg/phpdbg_bp.c return brake; brake 962 sapi/phpdbg/phpdbg_bp.c phpdbg_breakline_t *brake; brake 964 sapi/phpdbg/phpdbg_bp.c if ((brake = zend_hash_index_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], (zend_ulong) opline)) && brake->base) { brake 965 sapi/phpdbg/phpdbg_bp.c return (phpdbg_breakbase_t *)brake->base; brake 968 sapi/phpdbg/phpdbg_bp.c return (phpdbg_breakbase_t *) brake; brake 1152 sapi/phpdbg/phpdbg_bp.c phpdbg_breakbase_t *brake; brake 1156 sapi/phpdbg/phpdbg_bp.c if ((brake = phpdbg_find_breakbase_ex(num, &table, &numkey, &strkey))) { brake 1157 sapi/phpdbg/phpdbg_bp.c int type = brake->type; brake 1165 sapi/phpdbg/phpdbg_bp.c name = estrdup(brake->name); brake 1168 sapi/phpdbg/phpdbg_bp.c PHPDBG_G(flags) &= ~(1<<(brake->type+1)); brake 1175 sapi/phpdbg/phpdbg_bp.c PHPDBG_G(flags) &= ~(1<<(brake->type+1)); brake 1187 sapi/phpdbg/phpdbg_bp.c zend_hash_index_del(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], ((phpdbg_breakopline_t *) brake)->opline); brake 1232 sapi/phpdbg/phpdbg_bp.c PHPDBG_API void phpdbg_hit_breakpoint(phpdbg_breakbase_t *brake, zend_bool output) /* {{{ */ brake 1234 sapi/phpdbg/phpdbg_bp.c brake->hits++; brake 1237 sapi/phpdbg/phpdbg_bp.c phpdbg_print_breakpoint(brake); brake 1241 sapi/phpdbg/phpdbg_bp.c PHPDBG_API void phpdbg_print_breakpoint(phpdbg_breakbase_t *brake) /* {{{ */ brake 1243 sapi/phpdbg/phpdbg_bp.c if (!brake) brake 1246 sapi/phpdbg/phpdbg_bp.c switch (brake->type) { brake 1249 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakfile_t*)brake)->id, brake 1250 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakfile_t*)brake)->filename, brake 1251 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakfile_t*)brake)->line, brake 1252 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakfile_t*)brake)->hits); brake 1257 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breaksymbol_t*)brake)->id, brake 1258 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breaksymbol_t*)brake)->symbol, brake 1261 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakfile_t*)brake)->hits); brake 1266 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakline_t*)brake)->id, brake 1267 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakline_t*)brake)->opline, brake 1270 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakline_t*)brake)->hits); brake 1275 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->id, brake 1276 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->class_name, brake 1277 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->func_name, brake 1278 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->opline_num, brake 1281 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->hits); brake 1286 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->id, brake 1287 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->func_name, brake 1288 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->opline_num, brake 1291 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->hits); brake 1296 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->id, brake 1297 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->opline_num, brake 1300 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakopline_t*)brake)->hits); brake 1305 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakop_t*)brake)->id, brake 1306 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakop_t*)brake)->name, brake 1309 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakop_t*)brake)->hits); brake 1314 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakmethod_t*)brake)->id, brake 1315 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakmethod_t*)brake)->class_name, brake 1316 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakmethod_t*)brake)->func_name, brake 1319 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakmethod_t*)brake)->hits); brake 1323 sapi/phpdbg/phpdbg_bp.c if (((phpdbg_breakcond_t*)brake)->paramed) { brake 1326 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakcond_t*)brake)->id, brake 1327 sapi/phpdbg/phpdbg_bp.c phpdbg_param_tostring(&((phpdbg_breakcond_t*)brake)->param, ¶m), brake 1328 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakcond_t*)brake)->code, brake 1331 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakcond_t*)brake)->hits); brake 1336 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakcond_t*)brake)->id, brake 1337 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakcond_t*)brake)->code, brake 1340 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakcond_t*)brake)->hits); brake 1356 sapi/phpdbg/phpdbg_bp.c phpdbg_breakbase_t *brake = phpdbg_find_breakbase(id); brake 1358 sapi/phpdbg/phpdbg_bp.c if (brake) { brake 1359 sapi/phpdbg/phpdbg_bp.c brake->disabled = 0; brake 1365 sapi/phpdbg/phpdbg_bp.c phpdbg_breakbase_t *brake = phpdbg_find_breakbase(id); brake 1367 sapi/phpdbg/phpdbg_bp.c if (brake) { brake 1368 sapi/phpdbg/phpdbg_bp.c brake->disabled = 1; brake 1393 sapi/phpdbg/phpdbg_bp.c phpdbg_breakbase_t *brake; brake 1395 sapi/phpdbg/phpdbg_bp.c ZEND_HASH_FOREACH_KEY_PTR(*table, *numkey, *strkey, brake) { brake 1396 sapi/phpdbg/phpdbg_bp.c if (brake->id == id) { brake 1397 sapi/phpdbg/phpdbg_bp.c return brake; brake 1411 sapi/phpdbg/phpdbg_bp.c phpdbg_breaksymbol_t *brake; brake 1415 sapi/phpdbg/phpdbg_bp.c ZEND_HASH_FOREACH_PTR(&PHPDBG_G(bp)[PHPDBG_BREAK_SYM], brake) { brake 1417 sapi/phpdbg/phpdbg_bp.c brake->id, brake->symbol, brake 1418 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakbase_t *) brake)->disabled ? " [disabled]" : ""); brake 1428 sapi/phpdbg/phpdbg_bp.c phpdbg_breakmethod_t *brake; brake 1430 sapi/phpdbg/phpdbg_bp.c ZEND_HASH_FOREACH_PTR(class_table, brake) { brake 1432 sapi/phpdbg/phpdbg_bp.c brake->id, brake->class_name, brake->func_name, brake 1433 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakbase_t *) brake)->disabled ? " [disabled]" : ""); brake 1444 sapi/phpdbg/phpdbg_bp.c phpdbg_breakfile_t *brake; brake 1446 sapi/phpdbg/phpdbg_bp.c ZEND_HASH_FOREACH_PTR(points, brake) { brake 1448 sapi/phpdbg/phpdbg_bp.c brake->id, brake->filename, brake->line, brake 1449 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakbase_t *) brake)->disabled ? " [disabled]" : ""); brake 1458 sapi/phpdbg/phpdbg_bp.c phpdbg_breakfile_t *brake; brake 1460 sapi/phpdbg/phpdbg_bp.c ZEND_HASH_FOREACH_PTR(points, brake) { brake 1462 sapi/phpdbg/phpdbg_bp.c brake->id, brake->filename, brake->line, brake 1463 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakbase_t *) brake)->disabled ? " [disabled]" : ""); brake 1469 sapi/phpdbg/phpdbg_bp.c phpdbg_breakline_t *brake; brake 1473 sapi/phpdbg/phpdbg_bp.c ZEND_HASH_FOREACH_PTR(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], brake) { brake 1475 sapi/phpdbg/phpdbg_bp.c switch (brake->type) { brake 1486 sapi/phpdbg/phpdbg_bp.c if (brake->type == PHPDBG_BREAK_METHOD_OPLINE) { brake 1488 sapi/phpdbg/phpdbg_bp.c } else if (brake->type == PHPDBG_BREAK_FUNCTION_OPLINE) { brake 1490 sapi/phpdbg/phpdbg_bp.c } else if (brake->type == PHPDBG_BREAK_FILE_OPLINE) { brake 1495 sapi/phpdbg/phpdbg_bp.c brake->id, brake->opline, type, brake 1496 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakbase_t *) brake)->disabled ? " [disabled]" : ""); brake 1501 sapi/phpdbg/phpdbg_bp.c brake->id, brake->opline, brake 1502 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakbase_t *) brake)->disabled ? " [disabled]" : ""); brake 1515 sapi/phpdbg/phpdbg_bp.c phpdbg_breakopline_t *brake; brake 1517 sapi/phpdbg/phpdbg_bp.c ZEND_HASH_FOREACH_PTR(method_table, brake) { brake 1519 sapi/phpdbg/phpdbg_bp.c brake->id, brake->class_name, brake->func_name, brake->opline_num, brake 1520 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakbase_t *) brake)->disabled ? " [disabled]" : ""); brake 1532 sapi/phpdbg/phpdbg_bp.c phpdbg_breakopline_t *brake; brake 1534 sapi/phpdbg/phpdbg_bp.c ZEND_HASH_FOREACH_PTR(function_table, brake) { brake 1536 sapi/phpdbg/phpdbg_bp.c brake->id, brake->func_name, brake->opline_num, brake 1537 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakbase_t *) brake)->disabled ? " [disabled]" : ""); brake 1548 sapi/phpdbg/phpdbg_bp.c phpdbg_breakopline_t *brake; brake 1550 sapi/phpdbg/phpdbg_bp.c ZEND_HASH_FOREACH_PTR(file_table, brake) { brake 1552 sapi/phpdbg/phpdbg_bp.c brake->id, brake->class_name, brake->opline_num, brake 1553 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakbase_t *) brake)->disabled ? " [disabled]" : ""); brake 1559 sapi/phpdbg/phpdbg_bp.c phpdbg_breakcond_t *brake; brake 1563 sapi/phpdbg/phpdbg_bp.c ZEND_HASH_FOREACH_PTR(&PHPDBG_G(bp)[PHPDBG_BREAK_COND], brake) { brake 1564 sapi/phpdbg/phpdbg_bp.c if (brake->paramed) { brake 1565 sapi/phpdbg/phpdbg_bp.c switch (brake->param.type) { brake 1568 sapi/phpdbg/phpdbg_bp.c brake->id, brake->param.str, brake->code, brake 1569 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakbase_t *) brake)->disabled ? " [disabled]" : ""); brake 1574 sapi/phpdbg/phpdbg_bp.c brake->id, brake->param.str, brake->param.num, brake->code, brake 1575 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakbase_t *) brake)->disabled ? " [disabled]" : ""); brake 1580 sapi/phpdbg/phpdbg_bp.c brake->id, brake->param.method.class, brake->param.method.name, brake->code, brake 1581 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakbase_t*)brake)->disabled ? " [disabled]" : ""); brake 1586 sapi/phpdbg/phpdbg_bp.c brake->id, brake->param.method.class, brake->param.method.name, brake->param.num, brake->code, brake 1587 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakbase_t *) brake)->disabled ? " [disabled]" : ""); brake 1592 sapi/phpdbg/phpdbg_bp.c brake->id, brake->param.file.name, brake->param.file.line, brake->code, brake 1593 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakbase_t *) brake)->disabled ? " [disabled]" : ""); brake 1598 sapi/phpdbg/phpdbg_bp.c brake->id, brake->param.addr, brake->code, brake 1599 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakbase_t *) brake)->disabled ? " [disabled]" : ""); brake 1608 sapi/phpdbg/phpdbg_bp.c brake->id, brake->code, brake 1609 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakbase_t *) brake)->disabled ? " [disabled]" : ""); brake 1615 sapi/phpdbg/phpdbg_bp.c phpdbg_breakop_t *brake; brake 1619 sapi/phpdbg/phpdbg_bp.c ZEND_HASH_FOREACH_PTR(&PHPDBG_G(bp)[PHPDBG_BREAK_OPCODE], brake) { brake 1621 sapi/phpdbg/phpdbg_bp.c brake->id, brake->name, brake 1622 sapi/phpdbg/phpdbg_bp.c ((phpdbg_breakbase_t *) brake)->disabled ? " [disabled]" : ""); brake 122 sapi/phpdbg/phpdbg_bp.h PHPDBG_API int phpdbg_resolve_op_array_break(phpdbg_breakopline_t *brake, zend_op_array *op_array); brake 144 sapi/phpdbg/phpdbg_bp.h PHPDBG_API void phpdbg_hit_breakpoint(phpdbg_breakbase_t* brake, zend_bool output); brake 146 sapi/phpdbg/phpdbg_bp.h PHPDBG_API void phpdbg_print_breakpoint(phpdbg_breakbase_t* brake); brake 1608 sapi/phpdbg/phpdbg_prompt.c phpdbg_breakbase_t *brake; brake 1611 sapi/phpdbg/phpdbg_prompt.c && (brake = phpdbg_find_breakpoint(execute_data)) brake 1612 sapi/phpdbg/phpdbg_prompt.c && (brake->type != PHPDBG_BREAK_FILE || execute_data->opline->lineno != PHPDBG_G(last_line))) { brake 1613 sapi/phpdbg/phpdbg_prompt.c phpdbg_hit_breakpoint(brake, 1); brake 108 sapi/phpdbg/phpdbg_set.c phpdbg_breakbase_t *brake = phpdbg_find_breakbase(param->num); brake 109 sapi/phpdbg/phpdbg_set.c if (brake) { brake 110 sapi/phpdbg/phpdbg_set.c phpdbg_writeln("setbreak", "id=\"%ld\" active=\"%s\"", "Breakpoint #%ld %s", param->num, brake->disabled ? "off" : "on");