Lines Matching refs:func_len

439 	size_t func_len = strlen(func_name);  in phpdbg_set_breakpoint_method()  local
447 func_lcname = zend_str_tolower_dup(func_name, func_len); in phpdbg_set_breakpoint_method()
455 if (!zend_hash_str_exists(class_table, func_lcname, func_len)) { in phpdbg_set_breakpoint_method()
463 new_break.func_name = estrndup(func_name, func_len); in phpdbg_set_breakpoint_method()
464 new_break.func_len = 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()
613 …nc_table, zend_str_tolower_dup(new_break->func_name, new_break->func_len), new_break->func_len))) { in phpdbg_resolve_opline_break()
646 new_break.func_len = strlen(method); in phpdbg_set_breakpoint_method_opline()
647 new_break.func_name = estrndup(method, new_break.func_len); 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()
698 new_break.func_len = strlen(function); in phpdbg_set_breakpoint_function_opline()
699 new_break.func_name = estrndup(function, new_break.func_len); in phpdbg_set_breakpoint_function_opline()
718 …_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_FUNCTION_OPLINE], new_break.func_name, new_break.func_len))) { in phpdbg_set_breakpoint_function_opline()
720 …DBG_G(bp)[PHPDBG_BREAK_FUNCTION_OPLINE], new_break.func_name, new_break.func_len, &func_breaks, si… in phpdbg_set_breakpoint_function_opline()
744 new_break.func_len = 0; in phpdbg_set_breakpoint_file_opline()