name_length        64 Zend/zend.c    static int (*zend_get_configuration_directive_p)(const char *name, uint name_length, zval *contents);
name_length      1004 Zend/zend.c    ZEND_API int zend_get_configuration_directive(const char *name, uint name_length, zval *contents) /* {{{ */
name_length      1007 Zend/zend.c    		return zend_get_configuration_directive_p(name, name_length, contents);
name_length       481 Zend/zend.h    	zend_uint name_length;
name_length       553 Zend/zend.h    	int (*get_configuration_directive)(const char *name, uint name_length, zval *contents);
name_length       738 Zend/zend.h    ZEND_API int zend_get_configuration_directive(const char *name, uint name_length, zval *contents);
name_length       254 Zend/zend_API.c 		*class_name_len = ce->name_length;
name_length      2511 Zend/zend_API.c 	char *lowercase_name = emalloc(orig_class_entry->name_length + 1);
name_length      2524 Zend/zend_API.c 	zend_str_tolower_copy(lowercase_name, orig_class_entry->name, class_entry->name_length);
name_length      2525 Zend/zend_API.c 	lowercase_name = (char*)zend_new_interned_string(lowercase_name, class_entry->name_length + 1, 1 TSRMLS_CC);
name_length      2526 Zend/zend_API.c 	hash = str_hash(lowercase_name, class_entry->name_length);
name_length      2527 Zend/zend_API.c 	zend_hash_quick_update(CG(class_table), lowercase_name, class_entry->name_length+1, hash, &class_entry, sizeof(zend_class_entry *), NULL);
name_length      2608 Zend/zend_API.c ZEND_API int zend_set_hash_symbol(zval *symbol, const char *name, int name_length, zend_bool is_ref, int num_symbol_tables, ...) /* {{{ */
name_length      2620 Zend/zend_API.c 		zend_hash_update(symbol_table, name, name_length + 1, &symbol, sizeof(zval *), NULL);
name_length      3058 Zend/zend_API.c 					*callable_name_len = fcc->calling_scope->name_length + Z_STRLEN_P(callable) + sizeof("::") - 1;
name_length      3060 Zend/zend_API.c 					memcpy(ptr, fcc->calling_scope->name, fcc->calling_scope->name_length);
name_length      3061 Zend/zend_API.c 					ptr += fcc->calling_scope->name_length;
name_length      3138 Zend/zend_API.c 							*callable_name_len = fcc->calling_scope->name_length + Z_STRLEN_PP(method) + sizeof("::") - 1;
name_length      3140 Zend/zend_API.c 							memcpy(ptr, fcc->calling_scope->name, fcc->calling_scope->name_length);
name_length      3141 Zend/zend_API.c 							ptr += fcc->calling_scope->name_length;
name_length      3191 Zend/zend_API.c 					*callable_name_len = ce->name_length + sizeof("::__invoke") - 1;
name_length      3193 Zend/zend_API.c 					memcpy(*callable_name, ce->name, ce->name_length);
name_length      3194 Zend/zend_API.c 					memcpy((*callable_name) + ce->name_length, "::__invoke", sizeof("::__invoke"));
name_length      3425 Zend/zend_API.c ZEND_API int zend_declare_property_ex(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type, const char *doc_comment, int doc_comment_len TSRMLS_DC) /* {{{ */
name_length      3429 Zend/zend_API.c 	ulong h = zend_get_hash_value(name, name_length+1);
name_length      3435 Zend/zend_API.c 		if (zend_hash_quick_find(&ce->properties_info, name, name_length + 1, h, (void**)&property_info_ptr) == SUCCESS &&
name_length      3439 Zend/zend_API.c 			zend_hash_quick_del(&ce->properties_info, name, name_length + 1, h);
name_length      3449 Zend/zend_API.c 		if (zend_hash_quick_find(&ce->properties_info, name, name_length + 1, h, (void**)&property_info_ptr) == SUCCESS &&
name_length      3453 Zend/zend_API.c 			zend_hash_quick_del(&ce->properties_info, name, name_length + 1, h);
name_length      3476 Zend/zend_API.c 				zend_mangle_property_name(&priv_name, &priv_name_length, ce->name, ce->name_length, name, name_length, ce->type & ZEND_INTERNAL_CLASS);
name_length      3478 Zend/zend_API.c 				property_info.name_length = priv_name_length;
name_length      3485 Zend/zend_API.c 				zend_mangle_property_name(&prot_name, &prot_name_length, "*", 1, name, name_length, ce->type & ZEND_INTERNAL_CLASS);
name_length      3487 Zend/zend_API.c 				property_info.name_length = prot_name_length;
name_length      3494 Zend/zend_API.c 				property_info.name = ce->type & ZEND_INTERNAL_CLASS ? zend_strndup(name, name_length) : estrndup(name, name_length);
name_length      3496 Zend/zend_API.c 			property_info.name_length = name_length;
name_length      3500 Zend/zend_API.c 	interned_name = zend_new_interned_string(property_info.name, property_info.name_length+1, 0 TSRMLS_CC);
name_length      3511 Zend/zend_API.c 	property_info.h = (access_type & ZEND_ACC_PUBLIC) ? h : zend_get_hash_value(property_info.name, property_info.name_length+1);
name_length      3518 Zend/zend_API.c 	zend_hash_quick_update(&ce->properties_info, name, name_length+1, h, &property_info, sizeof(zend_property_info), NULL);
name_length      3524 Zend/zend_API.c ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type TSRMLS_DC) /* {{{ */
name_length      3526 Zend/zend_API.c 	return zend_declare_property_ex(ce, name, name_length, property, access_type, NULL, 0 TSRMLS_CC);
name_length      3530 Zend/zend_API.c ZEND_API int zend_declare_property_null(zend_class_entry *ce, const char *name, int name_length, int access_type TSRMLS_DC) /* {{{ */
name_length      3540 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
name_length      3544 Zend/zend_API.c ZEND_API int zend_declare_property_bool(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC) /* {{{ */
name_length      3555 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
name_length      3559 Zend/zend_API.c ZEND_API int zend_declare_property_long(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC) /* {{{ */
name_length      3570 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
name_length      3574 Zend/zend_API.c ZEND_API int zend_declare_property_double(zend_class_entry *ce, const char *name, int name_length, double value, int access_type TSRMLS_DC) /* {{{ */
name_length      3585 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
name_length      3589 Zend/zend_API.c ZEND_API int zend_declare_property_string(zend_class_entry *ce, const char *name, int name_length, const char *value, int access_type TSRMLS_DC) /* {{{ */
name_length      3602 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
name_length      3606 Zend/zend_API.c ZEND_API int zend_declare_property_stringl(zend_class_entry *ce, const char *name, int name_length, const char *value, int value_len, int access_type TSRMLS_DC) /* {{{ */
name_length      3618 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
name_length      3622 Zend/zend_API.c ZEND_API int zend_declare_class_constant(zend_class_entry *ce, const char *name, size_t name_length, zval *value TSRMLS_DC) /* {{{ */
name_length      3624 Zend/zend_API.c 	return zend_hash_update(&ce->constants_table, name, name_length+1, &value, sizeof(zval *), NULL);
name_length      3628 Zend/zend_API.c ZEND_API int zend_declare_class_constant_null(zend_class_entry *ce, const char *name, size_t name_length TSRMLS_DC) /* {{{ */
name_length      3639 Zend/zend_API.c 	return zend_declare_class_constant(ce, name, name_length, constant TSRMLS_CC);
name_length      3643 Zend/zend_API.c ZEND_API int zend_declare_class_constant_long(zend_class_entry *ce, const char *name, size_t name_length, long value TSRMLS_DC) /* {{{ */
name_length      3654 Zend/zend_API.c 	return zend_declare_class_constant(ce, name, name_length, constant TSRMLS_CC);
name_length      3658 Zend/zend_API.c ZEND_API int zend_declare_class_constant_bool(zend_class_entry *ce, const char *name, size_t name_length, zend_bool value TSRMLS_DC) /* {{{ */
name_length      3669 Zend/zend_API.c 	return zend_declare_class_constant(ce, name, name_length, constant TSRMLS_CC);
name_length      3673 Zend/zend_API.c ZEND_API int zend_declare_class_constant_double(zend_class_entry *ce, const char *name, size_t name_length, double value TSRMLS_DC) /* {{{ */
name_length      3684 Zend/zend_API.c 	return zend_declare_class_constant(ce, name, name_length, constant TSRMLS_CC);
name_length      3688 Zend/zend_API.c ZEND_API int zend_declare_class_constant_stringl(zend_class_entry *ce, const char *name, size_t name_length, const char *value, size_t value_length TSRMLS_DC) /* {{{ */
name_length      3700 Zend/zend_API.c 	return zend_declare_class_constant(ce, name, name_length, constant TSRMLS_CC);
name_length      3704 Zend/zend_API.c ZEND_API int zend_declare_class_constant_string(zend_class_entry *ce, const char *name, size_t name_length, const char *value TSRMLS_DC) /* {{{ */
name_length      3706 Zend/zend_API.c 	return zend_declare_class_constant_stringl(ce, name, name_length, value, strlen(value) TSRMLS_CC);
name_length      3710 Zend/zend_API.c ZEND_API void zend_update_property(zend_class_entry *scope, zval *object, const char *name, int name_length, zval *value TSRMLS_DC) /* {{{ */
name_length      3726 Zend/zend_API.c 	ZVAL_STRINGL(property, name, name_length, 1);
name_length      3734 Zend/zend_API.c ZEND_API void zend_update_property_null(zend_class_entry *scope, zval *object, const char *name, int name_length TSRMLS_DC) /* {{{ */
name_length      3742 Zend/zend_API.c 	zend_update_property(scope, object, name, name_length, tmp TSRMLS_CC);
name_length      3746 Zend/zend_API.c ZEND_API void zend_update_property_bool(zend_class_entry *scope, zval *object, const char *name, int name_length, long value TSRMLS_DC) /* {{{ */
name_length      3754 Zend/zend_API.c 	zend_update_property(scope, object, name, name_length, tmp TSRMLS_CC);
name_length      3758 Zend/zend_API.c ZEND_API void zend_update_property_long(zend_class_entry *scope, zval *object, const char *name, int name_length, long value TSRMLS_DC) /* {{{ */
name_length      3766 Zend/zend_API.c 	zend_update_property(scope, object, name, name_length, tmp TSRMLS_CC);
name_length      3770 Zend/zend_API.c ZEND_API void zend_update_property_double(zend_class_entry *scope, zval *object, const char *name, int name_length, double value TSRMLS_DC) /* {{{ */
name_length      3778 Zend/zend_API.c 	zend_update_property(scope, object, name, name_length, tmp TSRMLS_CC);
name_length      3782 Zend/zend_API.c ZEND_API void zend_update_property_string(zend_class_entry *scope, zval *object, const char *name, int name_length, const char *value TSRMLS_DC) /* {{{ */
name_length      3790 Zend/zend_API.c 	zend_update_property(scope, object, name, name_length, tmp TSRMLS_CC);
name_length      3794 Zend/zend_API.c ZEND_API void zend_update_property_stringl(zend_class_entry *scope, zval *object, const char *name, int name_length, const char *value, int value_len TSRMLS_DC) /* {{{ */
name_length      3802 Zend/zend_API.c 	zend_update_property(scope, object, name, name_length, tmp TSRMLS_CC);
name_length      3806 Zend/zend_API.c ZEND_API int zend_update_static_property(zend_class_entry *scope, const char *name, int name_length, zval *value TSRMLS_DC) /* {{{ */
name_length      3812 Zend/zend_API.c 	property = zend_std_get_static_property(scope, name, name_length, 0, NULL TSRMLS_CC);
name_length      3843 Zend/zend_API.c ZEND_API int zend_update_static_property_null(zend_class_entry *scope, const char *name, int name_length TSRMLS_DC) /* {{{ */
name_length      3851 Zend/zend_API.c 	return zend_update_static_property(scope, name, name_length, tmp TSRMLS_CC);
name_length      3855 Zend/zend_API.c ZEND_API int zend_update_static_property_bool(zend_class_entry *scope, const char *name, int name_length, long value TSRMLS_DC) /* {{{ */
name_length      3863 Zend/zend_API.c 	return zend_update_static_property(scope, name, name_length, tmp TSRMLS_CC);
name_length      3867 Zend/zend_API.c ZEND_API int zend_update_static_property_long(zend_class_entry *scope, const char *name, int name_length, long value TSRMLS_DC) /* {{{ */
name_length      3875 Zend/zend_API.c 	return zend_update_static_property(scope, name, name_length, tmp TSRMLS_CC);
name_length      3879 Zend/zend_API.c ZEND_API int zend_update_static_property_double(zend_class_entry *scope, const char *name, int name_length, double value TSRMLS_DC) /* {{{ */
name_length      3887 Zend/zend_API.c 	return zend_update_static_property(scope, name, name_length, tmp TSRMLS_CC);
name_length      3891 Zend/zend_API.c ZEND_API int zend_update_static_property_string(zend_class_entry *scope, const char *name, int name_length, const char *value TSRMLS_DC) /* {{{ */
name_length      3899 Zend/zend_API.c 	return zend_update_static_property(scope, name, name_length, tmp TSRMLS_CC);
name_length      3903 Zend/zend_API.c ZEND_API int zend_update_static_property_stringl(zend_class_entry *scope, const char *name, int name_length, const char *value, int value_len TSRMLS_DC) /* {{{ */
name_length      3911 Zend/zend_API.c 	return zend_update_static_property(scope, name, name_length, tmp TSRMLS_CC);
name_length      3915 Zend/zend_API.c ZEND_API zval *zend_read_property(zend_class_entry *scope, zval *object, const char *name, int name_length, zend_bool silent TSRMLS_DC) /* {{{ */
name_length      3931 Zend/zend_API.c 	ZVAL_STRINGL(property, name, name_length, 1);
name_length      3940 Zend/zend_API.c ZEND_API zval *zend_read_static_property(zend_class_entry *scope, const char *name, int name_length, zend_bool silent TSRMLS_DC) /* {{{ */
name_length      3946 Zend/zend_API.c 	property = zend_std_get_static_property(scope, name, name_length, silent, NULL TSRMLS_CC);
name_length       179 Zend/zend_API.h 		class_container.name_length = _len;						\
name_length       308 Zend/zend_API.h ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type TSRMLS_DC);
name_length       309 Zend/zend_API.h ZEND_API int zend_declare_property_ex(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type, const char *doc_comment, int doc_comment_len TSRMLS_DC);
name_length       310 Zend/zend_API.h ZEND_API int zend_declare_property_null(zend_class_entry *ce, const char *name, int name_length, int access_type TSRMLS_DC);
name_length       311 Zend/zend_API.h ZEND_API int zend_declare_property_bool(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC);
name_length       312 Zend/zend_API.h ZEND_API int zend_declare_property_long(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC);
name_length       313 Zend/zend_API.h ZEND_API int zend_declare_property_double(zend_class_entry *ce, const char *name, int name_length, double value, int access_type TSRMLS_DC);
name_length       314 Zend/zend_API.h ZEND_API int zend_declare_property_string(zend_class_entry *ce, const char *name, int name_length, const char *value, int access_type TSRMLS_DC);
name_length       315 Zend/zend_API.h ZEND_API int zend_declare_property_stringl(zend_class_entry *ce, const char *name, int name_length, const char *value, int value_len, int access_type TSRMLS_DC);
name_length       317 Zend/zend_API.h ZEND_API int zend_declare_class_constant(zend_class_entry *ce, const char *name, size_t name_length, zval *value TSRMLS_DC);
name_length       318 Zend/zend_API.h ZEND_API int zend_declare_class_constant_null(zend_class_entry *ce, const char *name, size_t name_length TSRMLS_DC);
name_length       319 Zend/zend_API.h ZEND_API int zend_declare_class_constant_long(zend_class_entry *ce, const char *name, size_t name_length, long value TSRMLS_DC);
name_length       320 Zend/zend_API.h ZEND_API int zend_declare_class_constant_bool(zend_class_entry *ce, const char *name, size_t name_length, zend_bool value TSRMLS_DC);
name_length       321 Zend/zend_API.h ZEND_API int zend_declare_class_constant_double(zend_class_entry *ce, const char *name, size_t name_length, double value TSRMLS_DC);
name_length       322 Zend/zend_API.h ZEND_API int zend_declare_class_constant_stringl(zend_class_entry *ce, const char *name, size_t name_length, const char *value, size_t value_length TSRMLS_DC);
name_length       323 Zend/zend_API.h ZEND_API int zend_declare_class_constant_string(zend_class_entry *ce, const char *name, size_t name_length, const char *value TSRMLS_DC);
name_length       326 Zend/zend_API.h ZEND_API void zend_update_property(zend_class_entry *scope, zval *object, const char *name, int name_length, zval *value TSRMLS_DC);
name_length       327 Zend/zend_API.h ZEND_API void zend_update_property_null(zend_class_entry *scope, zval *object, const char *name, int name_length TSRMLS_DC);
name_length       328 Zend/zend_API.h ZEND_API void zend_update_property_bool(zend_class_entry *scope, zval *object, const char *name, int name_length, long value TSRMLS_DC);
name_length       329 Zend/zend_API.h ZEND_API void zend_update_property_long(zend_class_entry *scope, zval *object, const char *name, int name_length, long value TSRMLS_DC);
name_length       330 Zend/zend_API.h ZEND_API void zend_update_property_double(zend_class_entry *scope, zval *object, const char *name, int name_length, double value TSRMLS_DC);
name_length       331 Zend/zend_API.h ZEND_API void zend_update_property_string(zend_class_entry *scope, zval *object, const char *name, int name_length, const char *value TSRMLS_DC);
name_length       332 Zend/zend_API.h ZEND_API void zend_update_property_stringl(zend_class_entry *scope, zval *object, const char *name, int name_length, const char *value, int value_length TSRMLS_DC);
name_length       334 Zend/zend_API.h ZEND_API int zend_update_static_property(zend_class_entry *scope, const char *name, int name_length, zval *value TSRMLS_DC);
name_length       335 Zend/zend_API.h ZEND_API int zend_update_static_property_null(zend_class_entry *scope, const char *name, int name_length TSRMLS_DC);
name_length       336 Zend/zend_API.h ZEND_API int zend_update_static_property_bool(zend_class_entry *scope, const char *name, int name_length, long value TSRMLS_DC);
name_length       337 Zend/zend_API.h ZEND_API int zend_update_static_property_long(zend_class_entry *scope, const char *name, int name_length, long value TSRMLS_DC);
name_length       338 Zend/zend_API.h ZEND_API int zend_update_static_property_double(zend_class_entry *scope, const char *name, int name_length, double value TSRMLS_DC);
name_length       339 Zend/zend_API.h ZEND_API int zend_update_static_property_string(zend_class_entry *scope, const char *name, int name_length, const char *value TSRMLS_DC);
name_length       340 Zend/zend_API.h ZEND_API int zend_update_static_property_stringl(zend_class_entry *scope, const char *name, int name_length, const char *value, int value_length TSRMLS_DC);
name_length       342 Zend/zend_API.h ZEND_API zval *zend_read_property(zend_class_entry *scope, zval *object, const char *name, int name_length, zend_bool silent TSRMLS_DC);
name_length       344 Zend/zend_API.h ZEND_API zval *zend_read_static_property(zend_class_entry *scope, const char *name, int name_length, zend_bool silent TSRMLS_DC);
name_length       515 Zend/zend_API.h ZEND_API int zend_set_hash_symbol(zval *symbol, const char *name, int name_length, zend_bool is_ref, int num_symbol_tables, ...);
name_length       698 Zend/zend_API.h #define ZEND_SET_SYMBOL_WITH_LENGTH(symtable, name, name_length, var, _refcount, _is_ref)				\
name_length       702 Zend/zend_API.h 		if (zend_hash_find(symtable, (name), (name_length), (void **) &orig_var)==SUCCESS				\
name_length       718 Zend/zend_API.h 			zend_hash_update(symtable, (name), (name_length), &(var), sizeof(zval *), NULL);			\
name_length       726 Zend/zend_API.h #define ZEND_SET_GLOBAL_VAR_WITH_LENGTH(name, name_length, var, _refcount, _is_ref)	\
name_length       727 Zend/zend_API.h 	ZEND_SET_SYMBOL_WITH_LENGTH(&EG(symbol_table), name, name_length, var, _refcount, _is_ref)
name_length       764 Zend/zend_builtin_functions.c 			RETURN_STRINGL(EG(scope)->name, EG(scope)->name_length, 1);
name_length       787 Zend/zend_builtin_functions.c 		RETURN_STRINGL(EG(called_scope)->name, EG(called_scope)->name_length, 1);
name_length       803 Zend/zend_builtin_functions.c 	zend_uint name_length;
name_length       812 Zend/zend_builtin_functions.c 			RETURN_STRINGL(ce->parent->name, ce->parent->name_length, 1);
name_length       820 Zend/zend_builtin_functions.c 			&& Z_OBJ_HT_P(arg)->get_class_name(arg, &name, &name_length, 1 TSRMLS_CC) == SUCCESS) {
name_length       821 Zend/zend_builtin_functions.c 			RETURN_STRINGL(name, name_length, 0);
name_length       834 Zend/zend_builtin_functions.c 		RETURN_STRINGL(ce->parent->name, ce->parent->name_length, 1);
name_length      1661 Zend/zend_builtin_functions.c 		    (ce->name_length != hash_key->nKeyLength - 1 || 
name_length      1662 Zend/zend_builtin_functions.c 		     !same_name(hash_key->arKey, ce->name, ce->name_length))) {
name_length      1665 Zend/zend_builtin_functions.c 			add_next_index_stringl(array, ce->name, ce->name_length, 1);
name_length       114 Zend/zend_compile.c 	property_info->name = str_estrndup(property_info->name, property_info->name_length);
name_length       123 Zend/zend_compile.c 	property_info->name = str_strndup(property_info->name, property_info->name_length);
name_length       142 Zend/zend_compile.c static void build_runtime_defined_function_key(zval *result, const char *name, int name_length TSRMLS_DC) /* {{{ */
name_length       156 Zend/zend_compile.c 	Z_STRLEN_P(result) = 1+name_length+strlen(filename)+char_pos_len;
name_length      1641 Zend/zend_compile.c 			class_lcname = do_alloca(CG(active_class_entry)->name_length + 1, use_heap);
name_length      1642 Zend/zend_compile.c 			zend_str_tolower_copy(class_lcname, CG(active_class_entry)->name, CG(active_class_entry)->name_length);
name_length      1645 Zend/zend_compile.c 			if ((CG(active_class_entry)->name_length == name_len) && ((CG(active_class_entry)->ce_flags & ZEND_ACC_TRAIT) != ZEND_ACC_TRAIT) && (!memcmp(class_lcname, lcname, name_len))) {
name_length      2231 Zend/zend_compile.c 			ZVAL_STRINGL(&class_name->u.constant, CG(active_class_entry)->name, CG(active_class_entry)->name_length, 1);
name_length      3190 Zend/zend_compile.c 		lc_class_name = zend_str_tolower_dup(ce->name, ce->name_length);
name_length      3191 Zend/zend_compile.c 		if (!zend_hash_exists(&ce->function_table, lc_class_name, ce->name_length+1)) {
name_length      3192 Zend/zend_compile.c 			lc_parent_class_name = zend_str_tolower_dup(ce->parent->name, ce->parent->name_length);
name_length      3193 Zend/zend_compile.c 			if (!zend_hash_exists(&ce->function_table, lc_parent_class_name, ce->parent->name_length+1) &&
name_length      3194 Zend/zend_compile.c 					zend_hash_find(&ce->parent->function_table, lc_parent_class_name, ce->parent->name_length+1, (void **)&function)==SUCCESS) {
name_length      3197 Zend/zend_compile.c 					zend_hash_update(&ce->function_table, lc_parent_class_name, ce->parent->name_length+1, function, sizeof(zend_function), (void**)&new_function);
name_length      3308 Zend/zend_compile.c 				fe_class_name_len = proto->common.scope->name_length;
name_length      3311 Zend/zend_compile.c 				fe_class_name_len = fe->common.scope->name_length;
name_length      3319 Zend/zend_compile.c 				proto_class_name_len = proto->common.scope->parent->name_length;
name_length      3322 Zend/zend_compile.c 				proto_class_name_len = proto->common.scope->name_length;
name_length      3385 Zend/zend_compile.c 		memcpy(offset, fptr->common.scope->name, fptr->common.scope->name_length);
name_length      3386 Zend/zend_compile.c 		offset += fptr->common.scope->name_length;
name_length      3410 Zend/zend_compile.c 					class_name_len = fptr->common.scope->name_length;
name_length      3413 Zend/zend_compile.c 					class_name_len = fptr->common.scope->parent->name_length;
name_length      4006 Zend/zend_compile.c 	} else if (ce->name_length + 1 == mname_len) {
name_length      4007 Zend/zend_compile.c 		char *lowercase_name = emalloc(ce->name_length + 1);
name_length      4008 Zend/zend_compile.c 		zend_str_tolower_copy(lowercase_name, ce->name, ce->name_length);
name_length      4009 Zend/zend_compile.c 		lowercase_name = (char*)zend_new_interned_string(lowercase_name, ce->name_length + 1, 1 TSRMLS_CC);
name_length      4262 Zend/zend_compile.c 					zend_uint name_length = strlen(class_name);
name_length      4264 Zend/zend_compile.c 					if (!(cur_precedence->exclude_from_classes[j] = zend_fetch_class(class_name, name_length, ZEND_FETCH_CLASS_TRAIT |ZEND_FETCH_CLASS_NO_AUTOLOAD TSRMLS_CC))) {
name_length      4440 Zend/zend_compile.c 				prop_name_length = property_info->name_length;
name_length      4443 Zend/zend_compile.c 				zend_unmangle_property_name_ex(property_info->name, property_info->name_length,
name_length      5176 Zend/zend_compile.c 	new_class_entry->name_length = Z_STRLEN(class_name->u.constant);
name_length      5202 Zend/zend_compile.c 	build_runtime_defined_function_key(&key, lcname, new_class_entry->name_length TSRMLS_CC);
name_length      5220 Zend/zend_compile.c 	LITERAL_STRINGL(opline->op2, lcname, new_class_entry->name_length, 0);
name_length       226 Zend/zend_compile.h 	int name_length;
name_length       231 Zend/zend_constants.c 			const_name_len = sizeof("\0__CLASS__") + EG(scope)->name_length;
name_length       234 Zend/zend_constants.c 			zend_str_tolower_copy(const_name + sizeof("\0__CLASS__")-1, EG(scope)->name, EG(scope)->name_length);
name_length       238 Zend/zend_constants.c 				Z_STRVAL((**c).value) = estrndup(EG(scope)->name, EG(scope)->name_length);
name_length       239 Zend/zend_constants.c 				Z_STRLEN((**c).value) = EG(scope)->name_length;
name_length        64 Zend/zend_execute.h ZEND_API int zend_lookup_class(const char *name, int name_length, zend_class_entry ***ce TSRMLS_DC);
name_length        65 Zend/zend_execute.h ZEND_API int zend_lookup_class_ex(const char *name, int name_length, const zend_literal *key, int use_autoload, zend_class_entry ***ce TSRMLS_DC);
name_length       903 Zend/zend_execute_API.c ZEND_API int zend_lookup_class_ex(const char *name, int name_length, const zend_literal *key, int use_autoload, zend_class_entry ***ce TSRMLS_DC) /* {{{ */
name_length       923 Zend/zend_execute_API.c 		if (name == NULL || !name_length) {
name_length       927 Zend/zend_execute_API.c 		lc_free = lc_name = do_alloca(name_length + 1, use_heap);
name_length       928 Zend/zend_execute_API.c 		zend_str_tolower_copy(lc_name, name, name_length);
name_length       929 Zend/zend_execute_API.c 		lc_length = name_length + 1;
name_length       957 Zend/zend_execute_API.c 	if (strspn(name, "0123456789_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\177\200\201\202\203\204\205\206\207\210\211\212\213\214\215\216\217\220\221\222\223\224\225\226\227\230\231\232\233\234\235\236\237\240\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257\260\261\262\263\264\265\266\267\270\271\272\273\274\275\276\277\300\301\302\303\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373\374\375\376\377\\") != name_length) {
name_length       981 Zend/zend_execute_API.c 		ZVAL_STRINGL(class_name_ptr, name+1, name_length-1, 1);
name_length       983 Zend/zend_execute_API.c 		ZVAL_STRINGL(class_name_ptr, name, name_length, 1);
name_length      1028 Zend/zend_execute_API.c ZEND_API int zend_lookup_class(const char *name, int name_length, zend_class_entry ***ce TSRMLS_DC) /* {{{ */
name_length      1030 Zend/zend_execute_API.c 	return zend_lookup_class_ex(name, name_length, NULL, 1, ce TSRMLS_CC);
name_length       201 Zend/zend_ini.c 		if (zend_hash_add(directives, p->name, p->name_length, (void*)p, sizeof(zend_ini_entry), (void **) &hashed_ini_entry) == FAILURE) {
name_length       206 Zend/zend_ini.c 		if ((zend_get_configuration_directive(p->name, p->name_length, &default_value)) == SUCCESS) {
name_length       247 Zend/zend_ini.c ZEND_API int zend_alter_ini_entry(char *name, uint name_length, char *new_value, uint new_value_length, int modify_type, int stage) /* {{{ */
name_length       251 Zend/zend_ini.c 	return zend_alter_ini_entry_ex(name, name_length, new_value, new_value_length, modify_type, stage, 0 TSRMLS_CC);
name_length       255 Zend/zend_ini.c ZEND_API int zend_alter_ini_entry_ex(char *name, uint name_length, char *new_value, uint new_value_length, int modify_type, int stage, int force_change TSRMLS_DC) /* {{{ */
name_length       262 Zend/zend_ini.c 	if (zend_hash_find(EG(ini_directives), name, name_length, (void **) &ini_entry) == FAILURE) {
name_length       288 Zend/zend_ini.c 		zend_hash_add(EG(modified_ini_directives), name, name_length, &ini_entry, sizeof(zend_ini_entry*), NULL);
name_length       309 Zend/zend_ini.c ZEND_API int zend_restore_ini_entry(char *name, uint name_length, int stage) /* {{{ */
name_length       314 Zend/zend_ini.c 	if (zend_hash_find(EG(ini_directives), name, name_length, (void **) &ini_entry) == FAILURE ||
name_length       321 Zend/zend_ini.c 			zend_hash_del(EG(modified_ini_directives), name, name_length);
name_length       331 Zend/zend_ini.c ZEND_API int zend_ini_register_displayer(char *name, uint name_length, void (*displayer)(zend_ini_entry *ini_entry, int type)) /* {{{ */
name_length       335 Zend/zend_ini.c 	if (zend_hash_find(registered_zend_ini_directives, name, name_length, (void **) &ini_entry) == FAILURE) {
name_length       348 Zend/zend_ini.c ZEND_API long zend_ini_long(char *name, uint name_length, int orig) /* {{{ */
name_length       353 Zend/zend_ini.c 	if (zend_hash_find(EG(ini_directives), name, name_length, (void **) &ini_entry) == SUCCESS) {
name_length       365 Zend/zend_ini.c ZEND_API double zend_ini_double(char *name, uint name_length, int orig) /* {{{ */
name_length       370 Zend/zend_ini.c 	if (zend_hash_find(EG(ini_directives), name, name_length, (void **) &ini_entry) == SUCCESS) {
name_length       382 Zend/zend_ini.c ZEND_API char *zend_ini_string_ex(char *name, uint name_length, int orig, zend_bool *exists) /* {{{ */
name_length       387 Zend/zend_ini.c 	if (zend_hash_find(EG(ini_directives), name, name_length, (void **) &ini_entry) == SUCCESS) {
name_length       406 Zend/zend_ini.c ZEND_API char *zend_ini_string(char *name, uint name_length, int orig) /* {{{ */
name_length       411 Zend/zend_ini.c 	return_value = zend_ini_string_ex(name, name_length, orig, &exists);
name_length        67 Zend/zend_ini.h 	uint name_length;
name_length        97 Zend/zend_ini.h ZEND_API int zend_alter_ini_entry(char *name, uint name_length, char *new_value, uint new_value_length, int modify_type, int stage);
name_length        98 Zend/zend_ini.h ZEND_API int zend_alter_ini_entry_ex(char *name, uint name_length, char *new_value, uint new_value_length, int modify_type, int stage, int force_change TSRMLS_DC);
name_length        99 Zend/zend_ini.h ZEND_API int zend_restore_ini_entry(char *name, uint name_length, int stage);
name_length       102 Zend/zend_ini.h ZEND_API long zend_ini_long(char *name, uint name_length, int orig);
name_length       103 Zend/zend_ini.h ZEND_API double zend_ini_double(char *name, uint name_length, int orig);
name_length       104 Zend/zend_ini.h ZEND_API char *zend_ini_string(char *name, uint name_length, int orig);
name_length       105 Zend/zend_ini.h ZEND_API char *zend_ini_string_ex(char *name, uint name_length, int orig, zend_bool *exists);
name_length       107 Zend/zend_ini.h ZEND_API int zend_ini_register_displayer(char *name, uint name_length, void (*displayer)(zend_ini_entry *ini_entry, int type));
name_length      4423 Zend/zend_language_scanner.c 		ZVAL_STRINGL(zendlval, ce->name, ce->name_length, 1);
name_length      4470 Zend/zend_language_scanner.c 			ZVAL_STRINGL(zendlval, ce->name, ce->name_length, 1);
name_length        83 Zend/zend_object_handlers.c 					zend_hash_quick_add(zobj->properties, prop_info->name, prop_info->name_length+1, prop_info->h, (void**)&zobj->properties_table[prop_info->offset], sizeof(zval*), (void**)&zobj->properties_table[prop_info->offset]);
name_length        96 Zend/zend_object_handlers.c 						zend_hash_quick_add(zobj->properties, prop_info->name, prop_info->name_length+1, prop_info->h, (void**)&zobj->properties_table[prop_info->offset], sizeof(zval*), (void**)&zobj->properties_table[prop_info->offset]);
name_length       377 Zend/zend_object_handlers.c 		EG(std_property_info).name_length = Z_STRLEN_P(member);
name_length       427 Zend/zend_object_handlers.c 		info.name_length = Z_STRLEN_P(member);
name_length       431 Zend/zend_object_handlers.c 		zend_unmangle_property_name(property_info->name, property_info->name_length, &class_name, &prop_name);
name_length       435 Zend/zend_object_handlers.c 			info.name_length = strlen(prop_name);
name_length       436 Zend/zend_object_handlers.c 			info.h = zend_get_hash_value(info.name, info.name_length+1);
name_length       443 Zend/zend_object_handlers.c 	} else if (zend_hash_quick_find(zobj->guards, property_info->name, property_info->name_length+1, property_info->h, (void **) pguard) == SUCCESS) {
name_length       450 Zend/zend_object_handlers.c 	return zend_hash_quick_add(zobj->guards, property_info->name, property_info->name_length+1, property_info->h, (void**)&stub, sizeof(stub), (void**) pguard);
name_length       490 Zend/zend_object_handlers.c 	          UNEXPECTED(zend_hash_quick_find(zobj->properties, property_info->name, property_info->name_length+1, property_info->h, (void **) &retval) == FAILURE)))) {
name_length       583 Zend/zend_object_handlers.c 	          EXPECTED(zend_hash_quick_find(zobj->properties, property_info->name, property_info->name_length+1, property_info->h, (void **) &variable_ptr) == SUCCESS)))) {
name_length       641 Zend/zend_object_handlers.c 						zend_hash_quick_update(zobj->properties, property_info->name, property_info->name_length+1, property_info->h, &value, sizeof(zval *), (void**)&zobj->properties_table[property_info->offset]);
name_length       647 Zend/zend_object_handlers.c 				zend_hash_quick_update(zobj->properties, property_info->name, property_info->name_length+1, property_info->h, &value, sizeof(zval *), NULL);
name_length       779 Zend/zend_object_handlers.c 	          UNEXPECTED(zend_hash_quick_find(zobj->properties, property_info->name, property_info->name_length+1, property_info->h, (void **) &retval) == FAILURE)))) {
name_length       799 Zend/zend_object_handlers.c 					zend_hash_quick_update(zobj->properties, property_info->name, property_info->name_length+1, property_info->h, &new_zval, sizeof(zval *), (void**)&zobj->properties_table[property_info->offset]);
name_length       806 Zend/zend_object_handlers.c 				zend_hash_quick_update(zobj->properties, property_info->name, property_info->name_length+1, property_info->h, &new_zval, sizeof(zval *), (void **) &retval);
name_length       855 Zend/zend_object_handlers.c 	           UNEXPECTED(zend_hash_quick_del(zobj->properties, property_info->name, property_info->name_length+1, property_info->h) == FAILURE)) {
name_length      1196 Zend/zend_object_handlers.c 	if (function_name_strlen == ce->name_length && ce->constructor) {
name_length      1197 Zend/zend_object_handlers.c 		lc_class_name = zend_str_tolower_dup(ce->name, ce->name_length);
name_length      1462 Zend/zend_object_handlers.c 	          UNEXPECTED(zend_hash_quick_find(zobj->properties, property_info->name, property_info->name_length+1, property_info->h, (void **) &value) == FAILURE)))) {
name_length      1547 Zend/zend_object_handlers.c 	*class_name_len = ce->name_length;
name_length      1548 Zend/zend_object_handlers.c 	*class_name = estrndup(ce->name, ce->name_length);
name_length       196 Zend/zend_objects.c 					if (zend_hash_quick_find(new_object->properties, prop_info->name, prop_info->name_length+1, prop_info->h, (void**)&new_object->properties_table[prop_info->offset]) == FAILURE) {
name_length      3780 Zend/zend_vm_def.h 			ZVAL_STRINGL(&EX_T(opline->result.var).tmp_var, ce->name, ce->name_length, 1);
name_length      4040 Zend/zend_vm_execute.h 			ZVAL_STRINGL(&EX_T(opline->result.var).tmp_var, ce->name, ce->name_length, 1);
name_length      16011 Zend/zend_vm_execute.h 			ZVAL_STRINGL(&EX_T(opline->result.var).tmp_var, ce->name, ce->name_length, 1);
name_length      25662 Zend/zend_vm_execute.h 			ZVAL_STRINGL(&EX_T(opline->result.var).tmp_var, ce->name, ce->name_length, 1);
name_length       450 ext/com_dotnet/com_handlers.c 	*class_name = estrndup(obj->ce->name, obj->ce->name_length);
name_length       451 ext/com_dotnet/com_handlers.c 	*class_name_len = obj->ce->name_length;
name_length       348 ext/com_dotnet/com_saproxy.c 	*class_name = estrndup(php_com_saproxy_class_entry->name, php_com_saproxy_class_entry->name_length);
name_length       349 ext/com_dotnet/com_saproxy.c 	*class_name_len = php_com_saproxy_class_entry->name_length;
name_length       216 ext/dom/php_dom.c 			return zend_hash_update(doc_props->classmap, basece->name, basece->name_length + 1, &ce, sizeof(zend_class_entry *), NULL);
name_length       218 ext/dom/php_dom.c 			zend_hash_del(doc_props->classmap, basece->name, basece->name_length + 1);
name_length       232 ext/dom/php_dom.c 			if (zend_hash_find(doc_props->classmap, basece->name, basece->name_length + 1,  (void**) &ce) == SUCCESS) {
name_length       687 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_domstringlist_prop_handlers, sizeof(dom_domstringlist_prop_handlers), NULL);
name_length       693 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_namelist_prop_handlers, sizeof(dom_namelist_prop_handlers), NULL);
name_length       699 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_domimplementationlist_prop_handlers, sizeof(dom_domimplementationlist_prop_handlers), NULL);
name_length       723 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_node_prop_handlers, sizeof(dom_node_prop_handlers), NULL);
name_length       736 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_namespace_node_prop_handlers, sizeof(dom_namespace_node_prop_handlers), NULL);
name_length       739 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_node_prop_handlers, sizeof(dom_node_prop_handlers), NULL);
name_length       764 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_document_prop_handlers, sizeof(dom_document_prop_handlers), NULL);
name_length       774 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_nodelist_prop_handlers, sizeof(dom_nodelist_prop_handlers), NULL);
name_length       784 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_namednodemap_prop_handlers, sizeof(dom_namednodemap_prop_handlers), NULL);
name_length       792 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_characterdata_prop_handlers, sizeof(dom_characterdata_prop_handlers), NULL);
name_length       803 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_attr_prop_handlers, sizeof(dom_attr_prop_handlers), NULL);
name_length       811 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_element_prop_handlers, sizeof(dom_element_prop_handlers), NULL);
name_length       818 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_text_prop_handlers, sizeof(dom_text_prop_handlers), NULL);
name_length       821 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_characterdata_prop_handlers, sizeof(dom_typeinfo_prop_handlers), NULL);
name_length       828 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_typeinfo_prop_handlers, sizeof(dom_typeinfo_prop_handlers), NULL);
name_length       840 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_domerror_prop_handlers, sizeof(dom_domerror_prop_handlers), NULL);
name_length       851 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_domlocator_prop_handlers, sizeof(dom_domlocator_prop_handlers), NULL);
name_length       855 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_text_prop_handlers, sizeof(dom_documenttype_prop_handlers), NULL);
name_length       867 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_documenttype_prop_handlers, sizeof(dom_documenttype_prop_handlers), NULL);
name_length       875 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_notation_prop_handlers, sizeof(dom_notation_prop_handlers), NULL);
name_length       888 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_entity_prop_handlers, sizeof(dom_entity_prop_handlers), NULL);
name_length       891 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_node_prop_handlers, sizeof(dom_entity_prop_handlers), NULL);
name_length       899 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_processinginstruction_prop_handlers, sizeof(dom_processinginstruction_prop_handlers), NULL);
name_length       910 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_xpath_prop_handlers, sizeof(dom_xpath_prop_handlers), NULL);
name_length      1163 ext/dom/php_dom.c 	zend_hash_find(&classes, base_class->name, base_class->name_length + 1, (void **) &intern->prop_handler);
name_length      1166 ext/libxml/libxml.c 	return zend_hash_add(&php_libxml_exports, ce->name, ce->name_length + 1, &export_hnd, sizeof(export_hnd), NULL);
name_length      1180 ext/libxml/libxml.c 		if (zend_hash_find(&php_libxml_exports, ce->name, ce->name_length + 1, (void **) &export_hnd)  == SUCCESS) {
name_length        56 ext/mysqli/mysqli.c 		zend_declare_property_null((a), (b)[i].name, (b)[i].name_length, ZEND_ACC_PUBLIC TSRMLS_CC); \
name_length       505 ext/mysqli/mysqli.c 	zend_hash_find(&classes, mysqli_base_class->name, mysqli_base_class->name_length + 1,
name_length       655 ext/mysqli/mysqli.c 	zend_hash_add(&classes, ce->name, ce->name_length+1, &mysqli_driver_properties, sizeof(mysqli_driver_properties), NULL);
name_length       663 ext/mysqli/mysqli.c 	zend_hash_add(&classes, ce->name, ce->name_length+1, &mysqli_link_properties, sizeof(mysqli_link_properties), NULL);
name_length       671 ext/mysqli/mysqli.c 	zend_hash_add(&classes, ce->name, ce->name_length+1, &mysqli_warning_properties, sizeof(mysqli_warning_properties), NULL);
name_length       681 ext/mysqli/mysqli.c 	zend_hash_add(&classes, ce->name, ce->name_length+1, &mysqli_result_properties, sizeof(mysqli_result_properties), NULL);
name_length       688 ext/mysqli/mysqli.c 	zend_hash_add(&classes, ce->name, ce->name_length+1, &mysqli_stmt_properties, sizeof(mysqli_stmt_properties), NULL);
name_length       953 ext/mysqlnd/mysqlnd_result.c 												   field->name_length + 1,
name_length      1208 ext/mysqlnd/mysqlnd_result.c 										   meta->fields[i].name_length + 1,
name_length      1309 ext/mysqlnd/mysqlnd_result.c 										   meta->fields[i].name_length + 1,
name_length       184 ext/mysqlnd/mysqlnd_result_meta.c 										   field_packet->metadata->name_length + 1,
name_length       191 ext/mysqlnd/mysqlnd_result_meta.c 										field_packet->metadata->name_length + 1);
name_length        84 ext/mysqlnd/mysqlnd_structs.h 	unsigned int name_length;
name_length      1178 ext/mysqlnd/mysqlnd_wireprotocol.c 	STRUCT_OFFSET(MYSQLND_FIELD, name_length),
name_length      1349 ext/mysqlnd/mysqlnd_wireprotocol.c 		len = meta->name_length;
name_length       419 ext/opcache/ZendAccelerator.c 			ce->name = accel_new_interned_string(ce->name, ce->name_length + 1, 0 TSRMLS_CC);
name_length       431 ext/opcache/ZendAccelerator.c 				info->name = accel_new_interned_string(info->name, info->name_length + 1, 0 TSRMLS_CC);
name_length       641 ext/opcache/zend_accelerator_util_funcs.c 		prop_info->name = interned_estrndup(prop_info->name, prop_info->name_length);
name_length       754 ext/opcache/zend_accelerator_util_funcs.c 	ce->name = interned_estrndup(ce->name, ce->name_length);
name_length       472 ext/opcache/zend_persist.c 	zend_accel_store_interned_string(prop->name, prop->name_length + 1);
name_length       493 ext/opcache/zend_persist.c 		zend_accel_store_interned_string(ce->name, ce->name_length + 1);
name_length       255 ext/opcache/zend_persist_calc.c 	ADD_INTERNED_STRING(prop->name, prop->name_length + 1);
name_length       269 ext/opcache/zend_persist_calc.c 		ADD_INTERNED_STRING(ce->name, ce->name_length + 1);
name_length        53 ext/phar/phar.c 	if (entry->name_length == 14) {
name_length        74 ext/phar/phar.c 		if (entry->name_length == 14) {
name_length        83 ext/phar/phar.c 	if (entry->name_length == 14) {
name_length       991 ext/reflection/php_reflection.c 		zend_unmangle_property_name(prop->name, prop->name_length, &class_name, (const char**)&prop_name);
name_length      1044 ext/reflection/php_reflection.c 		if (!zend_binary_strcasecmp((*pce)->name, (*pce)->name_length, hash_key->arKey, hash_key->nKeyLength-1)) {
name_length      1230 ext/reflection/php_reflection.c 	ZVAL_STRINGL(name, ce->name, ce->name_length, 1);
name_length      1336 ext/reflection/php_reflection.c 	ZVAL_STRINGL(classname, method->common.scope->name, method->common.scope->name_length, 1);
name_length      1357 ext/reflection/php_reflection.c 	zend_unmangle_property_name(prop->name, prop->name_length, &class_name, &prop_name);
name_length      1379 ext/reflection/php_reflection.c 	ZVAL_STRINGL(classname, prop->ce->name, prop->ce->name_length, 1);
name_length      2811 ext/reflection/php_reflection.c 	ZVAL_STRINGL(classname, mptr->common.scope->name, mptr->common.scope->name_length, 1);
name_length      3383 ext/reflection/php_reflection.c 		ZVAL_STRINGL(classname, Z_OBJCE_P(argument)->name, Z_OBJCE_P(argument)->name_length, 1);
name_length      3400 ext/reflection/php_reflection.c 		ZVAL_STRINGL(classname, (*ce)->name, (*ce)->name_length, 1);
name_length      3933 ext/reflection/php_reflection.c 			property_info_tmp.name_length = name_len;
name_length      4465 ext/reflection/php_reflection.c 			add_assoc_zval_ex(return_value, ce->interfaces[i]->name, ce->interfaces[i]->name_length + 1, interface);
name_length      4488 ext/reflection/php_reflection.c 		add_next_index_stringl(return_value, ce->interfaces[i]->name, ce->interfaces[i]->name_length, 1);
name_length      4512 ext/reflection/php_reflection.c 		add_assoc_zval_ex(return_value, ce->traits[i]->name, ce->traits[i]->name_length + 1, trait);
name_length      4533 ext/reflection/php_reflection.c 		add_next_index_stringl(return_value, ce->traits[i]->name, ce->traits[i]->name_length, 1);
name_length      4911 ext/reflection/php_reflection.c 		zend_unmangle_property_name(property_info->name, property_info->name_length, &class_name, &prop_name);
name_length      4912 ext/reflection/php_reflection.c 		ZVAL_STRINGL(classname, property_info->ce->name, property_info->ce->name_length, 1);
name_length      4915 ext/reflection/php_reflection.c 		ZVAL_STRINGL(classname, ce->name, ce->name_length, 1);
name_length      4925 ext/reflection/php_reflection.c 		reference->prop.name_length = Z_STRLEN_P(propname);
name_length      5073 ext/reflection/php_reflection.c 		zend_unmangle_property_name(ref->prop.name, ref->prop.name_length, &class_name, &prop_name);
name_length      5148 ext/reflection/php_reflection.c 		zend_unmangle_property_name(ref->prop.name, ref->prop.name_length, &class_name, &prop_name);
name_length      5170 ext/reflection/php_reflection.c 	if (zend_unmangle_property_name(ref->prop.name, ref->prop.name_length, &class_name, &prop_name) != SUCCESS) {
name_length      5438 ext/reflection/php_reflection.c 		if (zend_binary_strcasecmp((*pce)->name, (*pce)->name_length, hash_key->arKey, hash_key->nKeyLength-1)) {
name_length      5445 ext/reflection/php_reflection.c 			nlen = (*pce)->name_length;
name_length       107 ext/snmp/php_snmp.h 	size_t name_length;
name_length       117 ext/snmp/php_snmp.h 	size_t name_length;
name_length       105 ext/snmp/snmp.c 		php_snmp_add_property((a), (b)[i].name, (b)[i].name_length, \
name_length       565 ext/snmp/snmp.c 		if (snprint_value(buf, buflen, vars->name, vars->name_length, vars) == -1) {
name_length       727 ext/snmp/snmp.c 		memmove((char *)root, (char *)(objid_query->vars[0].name), (objid_query->vars[0].name_length) * sizeof(oid));
name_length       728 ext/snmp/snmp.c 		rootlen = objid_query->vars[0].name_length;
name_length       754 ext/snmp/snmp.c 			snmp_add_null_var(pdu, objid_query->vars[0].name, objid_query->vars[0].name_length);
name_length       770 ext/snmp/snmp.c 					if ((snmp_errno = snmp_add_var(pdu, objid_query->vars[objid_query->offset].name, objid_query->vars[objid_query->offset].name_length, objid_query->vars[objid_query->offset].type, objid_query->vars[objid_query->offset].value))) {
name_length       771 ext/snmp/snmp.c 						snprint_objid(buf, sizeof(buf), objid_query->vars[objid_query->offset].name, objid_query->vars[objid_query->offset].name_length);
name_length       779 ext/snmp/snmp.c 					snmp_add_null_var(pdu, objid_query->vars[objid_query->offset].name, objid_query->vars[objid_query->offset].name_length);
name_length       812 ext/snmp/snmp.c 						snprint_objid(buf, sizeof(buf), vars->name, vars->name_length);
name_length       813 ext/snmp/snmp.c 						snprint_value(buf2, sizeof(buf2), vars->name, vars->name_length, vars);
name_length       819 ext/snmp/snmp.c 						(vars->name_length < rootlen || memcmp(root, vars->name, rootlen * sizeof(oid)))) { /* not part of this subtree */
name_length       844 ext/snmp/snmp.c 								if (objid_query->vars[count].name_length == vars->name_length && snmp_oid_compare(objid_query->vars[count].name, objid_query->vars[count].name_length, vars->name, vars->name_length) == 0) {
name_length       846 ext/snmp/snmp.c 									objid_query->vars[count].name_length = 0; /* mark this name as used */
name_length       853 ext/snmp/snmp.c 								snprint_objid(buf2, sizeof(buf2), vars->name, vars->name_length);
name_length       857 ext/snmp/snmp.c 							snprint_objid(buf2, sizeof(buf2), vars->name, vars->name_length);
name_length       858 ext/snmp/snmp.c 							if (rootlen <= vars->name_length && snmp_oid_compare(root, rootlen, vars->name, rootlen) == 0) {
name_length       861 ext/snmp/snmp.c 								while(count < vars->name_length){
name_length       870 ext/snmp/snmp.c 							snprint_objid(buf2, sizeof(buf2), vars->name, vars->name_length);
name_length       882 ext/snmp/snmp.c 						if (objid_query->oid_increasing_check == TRUE && snmp_oid_compare(objid_query->vars[0].name, objid_query->vars[0].name_length, vars->name, vars->name_length) >= 0) {
name_length       883 ext/snmp/snmp.c 							snprint_objid(buf2, sizeof(buf2), vars->name, vars->name_length);
name_length       887 ext/snmp/snmp.c 							memmove((char *)(objid_query->vars[0].name), (char *)vars->name, vars->name_length * sizeof(oid));
name_length       888 ext/snmp/snmp.c 							objid_query->vars[0].name_length = vars->name_length;
name_length       916 ext/snmp/snmp.c 						snprint_objid(buf, sizeof(buf), vars->name, vars->name_length);
name_length      1095 ext/snmp/snmp.c 		objid_query->vars[0].name_length = MAX_NAME_LEN;
name_length      1097 ext/snmp/snmp.c 			if (!snmp_parse_oid(objid_query->vars[0].oid, objid_query->vars[0].name, &(objid_query->vars[0].name_length))) {
name_length      1104 ext/snmp/snmp.c 			objid_query->vars[0].name_length = sizeof(objid_mib) / sizeof(oid);
name_length      1108 ext/snmp/snmp.c 			objid_query->vars[objid_query->offset].name_length = MAX_OID_LEN;
name_length      1109 ext/snmp/snmp.c 			if (!snmp_parse_oid(objid_query->vars[objid_query->offset].oid, objid_query->vars[objid_query->offset].name, &(objid_query->vars[objid_query->offset].name_length))) {
name_length      1962 ext/snmp/snmp.c void php_snmp_add_property(HashTable *h, const char *name, size_t name_length, php_snmp_read_t read_func, php_snmp_write_t write_func TSRMLS_DC)
name_length      1967 ext/snmp/snmp.c 	p.name_length = name_length;
name_length      1970 ext/snmp/snmp.c 	zend_hash_add(h, (char *)name, name_length + 1, &p, sizeof(php_snmp_prop_handler), NULL);
name_length       484 ext/soap/php_encoding.c 				    ce->name_length == Z_STRLEN_PP(tmp) &&
name_length       485 ext/soap/php_encoding.c 				    zend_binary_strncasecmp(ce->name, ce->name_length, Z_STRVAL_PP(tmp), ce->name_length, ce->name_length) == 0 &&
name_length      1259 ext/soap/php_encoding.c 			if (property_info && zend_hash_quick_exists(Z_OBJPROP_P(object), property_info->name, property_info->name_length+1, property_info->h)) {
name_length       791 ext/soap/soap.c 	int name_length;
name_length       793 ext/soap/soap.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zs", &data, &name, &name_length) == FAILURE) {
name_length       796 ext/soap/soap.c 	if (name_length == 0) {
name_length       801 ext/soap/soap.c 	add_property_stringl(this_ptr, "param_name", name, name_length, 1);
name_length        83 ext/spl/spl_functions.c 		size_t len = pce->name_length;
name_length        88 ext/spl/spl_functions.c 			ZVAL_STRINGL(tmp, pce->name, pce->name_length, 1);
name_length       140 ext/spl/spl_functions.c 	zend_mangle_property_name(&rv, name_len, ce->name, ce->name_length, prop_name, prop_len, 0);
name_length      1365 ext/standard/array.c 				if (var_exists && var_name_len == sizeof("this")-1  && !strcmp(var_name, "this") && EG(scope) && EG(scope)->name_length != 0) {
name_length      5354 ext/standard/basic_functions.c 			add_assoc_zval_ex(ini_array, ini_entry->name, ini_entry->name_length, option);
name_length       195 ext/standard/info.c static void php_print_gpcse_array(char *name, uint name_length TSRMLS_DC)
name_length       202 ext/standard/info.c 	zend_is_auto_global(name, name_length TSRMLS_CC);
name_length       204 ext/standard/info.c 	if (zend_hash_find(&EG(symbol_table), name, name_length+1, (void **) &data)!=FAILURE
name_length       675 ext/standard/var.c 						zend_mangle_property_name(&priv_name, &prop_name_length, ce->name, ce->name_length, Z_STRVAL_PP(name), Z_STRLEN_PP(name), ce->type & ZEND_INTERNAL_CLASS);
name_length       778 ext/standard/var.c 						smart_str_append_long(buf, (int)Z_OBJCE_P(struc)->name_length);
name_length       780 ext/standard/var.c 						smart_str_appendl(buf, Z_OBJCE_P(struc)->name, Z_OBJCE_P(struc)->name_length);
name_length      1464 main/main.c    static int php_get_configuration_directive_for_zend(const char *name, uint name_length, zval *contents)
name_length      1466 main/main.c    	zval *retval = cfg_get_entry(name, name_length);
name_length       132 main/php_ini.c 		PHPWRITE(ini_entry->name, ini_entry->name_length - 1);
name_length       139 main/php_ini.c 		PHPWRITE(ini_entry->name, ini_entry->name_length - 1);
name_length       880 main/php_ini.c PHPAPI zval *cfg_get_entry(const char *name, uint name_length)
name_length       884 main/php_ini.c 	if (zend_hash_find(&configuration_hash, name, name_length, (void **) &tmp) == SUCCESS) {
name_length        31 main/php_ini.h PHPAPI zval *cfg_get_entry(const char *name, uint name_length);
name_length        26 sapi/fpm/fpm/fpm_php.c static int fpm_php_zend_ini_alter_master(char *name, int name_length, char *new_value, int new_value_length, int mode, int stage TSRMLS_DC) /* {{{ */
name_length        31 sapi/fpm/fpm/fpm_php.c 	if (zend_hash_find(EG(ini_directives), name, name_length, (void **) &ini_entry) == FAILURE) {
name_length       405 sapi/phpdbg/phpdbg_bp.c 	    zend_hash_find(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD_OPLINE], op_array->scope->name, op_array->scope->name_length, (void **)&func_table) == FAILURE) {
name_length       846 sapi/phpdbg/phpdbg_bp.c 		ops->scope->name_length, (void**)&class_table) == SUCCESS) {
name_length       940 sapi/phpdbg/phpdbg_bp.c 					size_t lengths[2] = {strlen(param->method.class), ops->scope->name_length};
name_length       324 sapi/phpdbg/phpdbg_utils.c PHPDBG_API const phpdbg_color_t *phpdbg_get_color(const char *name, size_t name_length TSRMLS_DC) /* {{{ */
name_length       329 sapi/phpdbg/phpdbg_utils.c 		if (name_length == color->name_length &&
name_length       330 sapi/phpdbg/phpdbg_utils.c 			memcmp(name, color->name, name_length) == SUCCESS) {
name_length       332 sapi/phpdbg/phpdbg_utils.c 				"phpdbg_get_color(%s, %lu): %s", name, name_length, color->code);
name_length       339 sapi/phpdbg/phpdbg_utils.c 		"phpdbg_get_color(%s, %lu): failed", name, name_length);
name_length       349 sapi/phpdbg/phpdbg_utils.c PHPDBG_API void phpdbg_set_color_ex(int element, const char *name, size_t name_length TSRMLS_DC) /* {{{ */
name_length       351 sapi/phpdbg/phpdbg_utils.c 	const phpdbg_color_t *color = phpdbg_get_color(name, name_length TSRMLS_CC);
name_length       367 sapi/phpdbg/phpdbg_utils.c 		if (len == element->name_length) {
name_length       102 sapi/phpdbg/phpdbg_utils.h 	size_t      name_length;
name_length       108 sapi/phpdbg/phpdbg_utils.h 	size_t		name_length;
name_length       112 sapi/phpdbg/phpdbg_utils.h PHPDBG_API const phpdbg_color_t *phpdbg_get_color(const char *name, size_t name_length TSRMLS_DC);
name_length       114 sapi/phpdbg/phpdbg_utils.h PHPDBG_API void phpdbg_set_color_ex(int element, const char *name, size_t name_length TSRMLS_DC);