Lines Matching refs:class_table

438 	HashTable class_breaks, *class_table;  in phpdbg_set_breakpoint_method()  local
451 …if (!(class_table = zend_hash_str_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD], class_lcname, class… in phpdbg_set_breakpoint_method()
453class_table = zend_hash_str_update_mem(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD], class_lcname, class_len… in phpdbg_set_breakpoint_method()
456 if (!zend_hash_str_exists(class_table, func_lcname, func_len)) { in phpdbg_set_breakpoint_method()
467 …zend_hash_str_update_mem(class_table, func_lcname, func_len, &new_break, sizeof(phpdbg_breakmethod… in phpdbg_set_breakpoint_method()
471 PHPDBG_BREAK_MAPPING(new_break.id, class_table); in phpdbg_set_breakpoint_method()
608 …if (!(ce = zend_hash_str_find_ptr(EG(class_table), zend_str_tolower_dup(new_break->class_name, new… in phpdbg_resolve_opline_break()
643 HashTable class_breaks, *class_table; in phpdbg_set_breakpoint_method_opline() local
667 …if (!(class_table = zend_hash_str_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD_OPLINE], new_break.cl… in phpdbg_set_breakpoint_method_opline()
669class_table = zend_hash_str_update_mem(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD_OPLINE], new_break.class_… in phpdbg_set_breakpoint_method_opline()
672 …if (!(method_table = zend_hash_str_find_ptr(class_table, new_break.func_name, new_break.func_len))… in phpdbg_set_breakpoint_method_opline()
674 …method_table = zend_hash_str_update_mem(class_table, new_break.func_name, new_break.func_len, &met… in phpdbg_set_breakpoint_method_opline()
984 HashTable *class_table; in phpdbg_find_breakpoint_method() local
988 if ((class_table = zend_hash_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD], class_lcname))) { in phpdbg_find_breakpoint_method()
991 brake = zend_hash_find_ptr(class_table, lcname); in phpdbg_find_breakpoint_method()
1463 HashTable *class_table; in phpdbg_print_breakpoints() local
1467 ZEND_HASH_FOREACH_PTR(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD], class_table) { in phpdbg_print_breakpoints()
1470 ZEND_HASH_FOREACH_PTR(class_table, brake) { in phpdbg_print_breakpoints()
1549 HashTable *class_table, *method_table; in phpdbg_print_breakpoints() local
1553 ZEND_HASH_FOREACH_PTR(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD_OPLINE], class_table) { in phpdbg_print_breakpoints()
1554 ZEND_HASH_FOREACH_PTR(class_table, method_table) { in phpdbg_print_breakpoints()