Lines Matching refs:func_len

442 	size_t func_len = strlen(func_name);  in phpdbg_set_breakpoint_method()  local
450 func_lcname = zend_str_tolower_dup(func_name, func_len); in phpdbg_set_breakpoint_method()
458 if (!zend_hash_str_exists(class_table, func_lcname, func_len)) { in phpdbg_set_breakpoint_method()
466 new_break.func_name = estrndup(func_name, func_len); in phpdbg_set_breakpoint_method()
467 new_break.func_len = func_len; in phpdbg_set_breakpoint_method()
469 …zend_hash_str_update_mem(class_table, func_lcname, func_len, &new_break, sizeof(phpdbg_breakmethod… in phpdbg_set_breakpoint_method()
616 …nc_table, zend_str_tolower_dup(new_break->func_name, new_break->func_len), new_break->func_len))) { in phpdbg_resolve_opline_break()
649 new_break.func_len = strlen(method); in phpdbg_set_breakpoint_method_opline()
650 new_break.func_name = estrndup(method, new_break.func_len); in phpdbg_set_breakpoint_method_opline()
674 …if (!(method_table = zend_hash_str_find_ptr(class_table, new_break.func_name, new_break.func_len))… in phpdbg_set_breakpoint_method_opline()
676 …method_table = zend_hash_str_update_mem(class_table, new_break.func_name, new_break.func_len, &met… in phpdbg_set_breakpoint_method_opline()
701 new_break.func_len = strlen(function); in phpdbg_set_breakpoint_function_opline()
702 new_break.func_name = estrndup(function, new_break.func_len); in phpdbg_set_breakpoint_function_opline()
721 …_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_FUNCTION_OPLINE], new_break.func_name, new_break.func_len))) { in phpdbg_set_breakpoint_function_opline()
723 …DBG_G(bp)[PHPDBG_BREAK_FUNCTION_OPLINE], new_break.func_name, new_break.func_len, &func_breaks, si… in phpdbg_set_breakpoint_function_opline()
747 new_break.func_len = 0; in phpdbg_set_breakpoint_file_opline()