Lines Matching refs:class_table

426 	HashTable class_breaks, *class_table;  in phpdbg_set_breakpoint_method()  local
439 …if (!(class_table = zend_hash_str_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD], class_lcname, class… in phpdbg_set_breakpoint_method()
441class_table = zend_hash_str_update_mem(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD], class_lcname, class_len… in phpdbg_set_breakpoint_method()
444 if (!zend_hash_str_exists(class_table, func_lcname, func_len)) { in phpdbg_set_breakpoint_method()
455 …zend_hash_str_update_mem(class_table, func_lcname, func_len, &new_break, sizeof(phpdbg_breakmethod… in phpdbg_set_breakpoint_method()
459 PHPDBG_BREAK_MAPPING(new_break.id, class_table); in phpdbg_set_breakpoint_method()
596 …if (!(ce = zend_hash_str_find_ptr(EG(class_table), zend_str_tolower_dup(new_break->class_name, new… in phpdbg_resolve_opline_break()
631 HashTable class_breaks, *class_table; in phpdbg_set_breakpoint_method_opline() local
655 …if (!(class_table = zend_hash_str_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD_OPLINE], new_break.cl… in phpdbg_set_breakpoint_method_opline()
657class_table = zend_hash_str_update_mem(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD_OPLINE], new_break.class_… in phpdbg_set_breakpoint_method_opline()
660 …if (!(method_table = zend_hash_str_find_ptr(class_table, new_break.func_name, new_break.func_len))… in phpdbg_set_breakpoint_method_opline()
662 …method_table = zend_hash_str_update_mem(class_table, new_break.func_name, new_break.func_len, &met… in phpdbg_set_breakpoint_method_opline()
949 HashTable *class_table; in phpdbg_find_breakpoint_method() local
953 if ((class_table = zend_hash_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD], class_lcname))) { in phpdbg_find_breakpoint_method()
956 brake = zend_hash_find_ptr(class_table, lcname); in phpdbg_find_breakpoint_method()
1428 HashTable *class_table; in phpdbg_print_breakpoints() local
1432 ZEND_HASH_FOREACH_PTR(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD], class_table) { in phpdbg_print_breakpoints()
1435 ZEND_HASH_FOREACH_PTR(class_table, brake) { in phpdbg_print_breakpoints()
1514 HashTable *class_table, *method_table; in phpdbg_print_breakpoints() local
1518 ZEND_HASH_FOREACH_PTR(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD_OPLINE], class_table) { in phpdbg_print_breakpoints()
1519 ZEND_HASH_FOREACH_PTR(class_table, method_table) { in phpdbg_print_breakpoints()