Lines Matching refs:class_name_len

1889 	cur_arg_info->class_name_len = 0;  in zend_do_receive_arg()
1920 cur_arg_info->class_name_len = class_type->u.constant.value.str.len; in zend_do_receive_arg()
3174 fe_class_name_len = fe->common.arg_info[i].class_name_len; in zend_do_perform_implementation_check()
3185 proto_class_name_len = proto->common.arg_info[i].class_name_len; in zend_do_perform_implementation_check()
3274 zend_uint class_name_len; in zend_get_function_declaration() local
3277 class_name_len = fptr->common.scope->name_length; in zend_get_function_declaration()
3280 class_name_len = fptr->common.scope->parent->name_length; in zend_get_function_declaration()
3283 class_name_len = arg_info->class_name_len; in zend_get_function_declaration()
3285 REALLOC_BUF_IF_EXCEED(buf, offset, length, class_name_len); in zend_get_function_declaration()
3286 memcpy(offset, class_name, class_name_len); in zend_get_function_declaration()
3287 offset += class_name_len; in zend_get_function_declaration()
5260 int class_name_len; in zend_unmangle_property_name_ex() local
5280 class_name_len = zend_strnlen(mangled_property + 1, --len - 1) + 1; in zend_unmangle_property_name_ex()
5281 if (class_name_len >= len || mangled_property[class_name_len]!=0) { in zend_unmangle_property_name_ex()
5290 *prop_name = (*class_name) + class_name_len; in zend_unmangle_property_name_ex()
5292 *prop_len = len - class_name_len; in zend_unmangle_property_name_ex()
6888 int zend_get_class_fetch_type(const char *class_name, uint class_name_len) /* {{{ */ in zend_get_class_fetch_type() argument
6890 if ((class_name_len == sizeof("self")-1) && in zend_get_class_fetch_type()
6893 } else if ((class_name_len == sizeof("parent")-1) && in zend_get_class_fetch_type()
6896 } else if ((class_name_len == sizeof("static")-1) && in zend_get_class_fetch_type()