Lines Matching refs:class_table

437 	HashTable class_breaks, *class_table;  in phpdbg_set_breakpoint_method()  local
450 …if (!(class_table = zend_hash_str_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD], class_lcname, class… in phpdbg_set_breakpoint_method()
452class_table = zend_hash_str_update_mem(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD], class_lcname, class_len… in phpdbg_set_breakpoint_method()
455 if (!zend_hash_str_exists(class_table, func_lcname, func_len)) { in phpdbg_set_breakpoint_method()
466 …zend_hash_str_update_mem(class_table, func_lcname, func_len, &new_break, sizeof(phpdbg_breakmethod… in phpdbg_set_breakpoint_method()
470 PHPDBG_BREAK_MAPPING(new_break.id, class_table); in phpdbg_set_breakpoint_method()
607 …if (!(ce = zend_hash_str_find_ptr(EG(class_table), zend_str_tolower_dup(new_break->class_name, new… in phpdbg_resolve_opline_break()
642 HashTable class_breaks, *class_table; in phpdbg_set_breakpoint_method_opline() local
666 …if (!(class_table = zend_hash_str_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD_OPLINE], new_break.cl… in phpdbg_set_breakpoint_method_opline()
668class_table = zend_hash_str_update_mem(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD_OPLINE], new_break.class_… in phpdbg_set_breakpoint_method_opline()
671 …if (!(method_table = zend_hash_str_find_ptr(class_table, new_break.func_name, new_break.func_len))… in phpdbg_set_breakpoint_method_opline()
673 …method_table = zend_hash_str_update_mem(class_table, new_break.func_name, new_break.func_len, &met… in phpdbg_set_breakpoint_method_opline()
985 HashTable *class_table; in phpdbg_find_breakpoint_method() local
989 if ((class_table = zend_hash_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD], class_lcname))) { in phpdbg_find_breakpoint_method()
992 brake = zend_hash_find_ptr(class_table, lcname); in phpdbg_find_breakpoint_method()
1462 HashTable *class_table; in phpdbg_print_breakpoints() local
1466 ZEND_HASH_MAP_FOREACH_PTR(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD], class_table) { in phpdbg_print_breakpoints()
1469 ZEND_HASH_MAP_FOREACH_PTR(class_table, brake) { in phpdbg_print_breakpoints()
1548 HashTable *class_table, *method_table; in phpdbg_print_breakpoints() local
1552 ZEND_HASH_MAP_FOREACH_PTR(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD_OPLINE], class_table) { in phpdbg_print_breakpoints()
1553 ZEND_HASH_MAP_FOREACH_PTR(class_table, method_table) { in phpdbg_print_breakpoints()