name_length      2741 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      2755 Zend/zend_API.c 		zend_hash_str_update(symbol_table, name, name_length, symbol);
name_length      3683 Zend/zend_API.c ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, size_t name_length, zval *property, int access_type) /* {{{ */
name_length      3685 Zend/zend_API.c 	zend_string *key = zend_string_init(name, name_length, ce->type & ZEND_INTERNAL_CLASS);
name_length      3692 Zend/zend_API.c ZEND_API int zend_declare_property_null(zend_class_entry *ce, const char *name, size_t name_length, int access_type) /* {{{ */
name_length      3697 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, &property, access_type);
name_length      3701 Zend/zend_API.c ZEND_API int zend_declare_property_bool(zend_class_entry *ce, const char *name, size_t name_length, zend_long value, int access_type) /* {{{ */
name_length      3706 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, &property, access_type);
name_length      3710 Zend/zend_API.c ZEND_API int zend_declare_property_long(zend_class_entry *ce, const char *name, size_t name_length, zend_long value, int access_type) /* {{{ */
name_length      3715 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, &property, access_type);
name_length      3719 Zend/zend_API.c ZEND_API int zend_declare_property_double(zend_class_entry *ce, const char *name, size_t name_length, double value, int access_type) /* {{{ */
name_length      3724 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, &property, access_type);
name_length      3728 Zend/zend_API.c ZEND_API int zend_declare_property_string(zend_class_entry *ce, const char *name, size_t name_length, const char *value, int access_type) /* {{{ */
name_length      3733 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, &property, access_type);
name_length      3737 Zend/zend_API.c ZEND_API int zend_declare_property_stringl(zend_class_entry *ce, const char *name, size_t name_length, const char *value, size_t value_len, int access_type) /* {{{ */
name_length      3742 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, &property, access_type);
name_length      3746 Zend/zend_API.c ZEND_API int zend_declare_class_constant(zend_class_entry *ce, const char *name, size_t name_length, zval *value) /* {{{ */
name_length      3751 Zend/zend_API.c 	return zend_hash_str_update(&ce->constants_table, name, name_length, value) ?
name_length      3756 Zend/zend_API.c ZEND_API int zend_declare_class_constant_null(zend_class_entry *ce, const char *name, size_t name_length) /* {{{ */
name_length      3761 Zend/zend_API.c 	return zend_declare_class_constant(ce, name, name_length, &constant);
name_length      3765 Zend/zend_API.c ZEND_API int zend_declare_class_constant_long(zend_class_entry *ce, const char *name, size_t name_length, zend_long value) /* {{{ */
name_length      3770 Zend/zend_API.c 	return zend_declare_class_constant(ce, name, name_length, &constant);
name_length      3774 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) /* {{{ */
name_length      3779 Zend/zend_API.c 	return zend_declare_class_constant(ce, name, name_length, &constant);
name_length      3783 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) /* {{{ */
name_length      3788 Zend/zend_API.c 	return zend_declare_class_constant(ce, name, name_length, &constant);
name_length      3792 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) /* {{{ */
name_length      3797 Zend/zend_API.c 	return zend_declare_class_constant(ce, name, name_length, &constant);
name_length      3801 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) /* {{{ */
name_length      3803 Zend/zend_API.c 	return zend_declare_class_constant_stringl(ce, name, name_length, value, strlen(value));
name_length      3824 Zend/zend_API.c ZEND_API void zend_update_property(zend_class_entry *scope, zval *object, const char *name, size_t name_length, zval *value) /* {{{ */
name_length      3834 Zend/zend_API.c 	ZVAL_STRINGL(&property, name, name_length);
name_length      3842 Zend/zend_API.c ZEND_API void zend_update_property_null(zend_class_entry *scope, zval *object, const char *name, size_t name_length) /* {{{ */
name_length      3847 Zend/zend_API.c 	zend_update_property(scope, object, name, name_length, &tmp);
name_length      3851 Zend/zend_API.c ZEND_API void zend_update_property_bool(zend_class_entry *scope, zval *object, const char *name, size_t name_length, zend_long value) /* {{{ */
name_length      3856 Zend/zend_API.c 	zend_update_property(scope, object, name, name_length, &tmp);
name_length      3860 Zend/zend_API.c ZEND_API void zend_update_property_long(zend_class_entry *scope, zval *object, const char *name, size_t name_length, zend_long value) /* {{{ */
name_length      3865 Zend/zend_API.c 	zend_update_property(scope, object, name, name_length, &tmp);
name_length      3869 Zend/zend_API.c ZEND_API void zend_update_property_double(zend_class_entry *scope, zval *object, const char *name, size_t name_length, double value) /* {{{ */
name_length      3874 Zend/zend_API.c 	zend_update_property(scope, object, name, name_length, &tmp);
name_length      3878 Zend/zend_API.c ZEND_API void zend_update_property_str(zend_class_entry *scope, zval *object, const char *name, size_t name_length, zend_string *value) /* {{{ */
name_length      3883 Zend/zend_API.c 	zend_update_property(scope, object, name, name_length, &tmp);
name_length      3887 Zend/zend_API.c ZEND_API void zend_update_property_string(zend_class_entry *scope, zval *object, const char *name, size_t name_length, const char *value) /* {{{ */
name_length      3893 Zend/zend_API.c 	zend_update_property(scope, object, name, name_length, &tmp);
name_length      3897 Zend/zend_API.c ZEND_API void zend_update_property_stringl(zend_class_entry *scope, zval *object, const char *name, size_t name_length, const char *value, size_t value_len) /* {{{ */
name_length      3903 Zend/zend_API.c 	zend_update_property(scope, object, name, name_length, &tmp);
name_length      3907 Zend/zend_API.c ZEND_API int zend_update_static_property(zend_class_entry *scope, const char *name, size_t name_length, zval *value) /* {{{ */
name_length      3911 Zend/zend_API.c 	zend_string *key = zend_string_init(name, name_length, 0);
name_length      3946 Zend/zend_API.c ZEND_API int zend_update_static_property_null(zend_class_entry *scope, const char *name, size_t name_length) /* {{{ */
name_length      3951 Zend/zend_API.c 	return zend_update_static_property(scope, name, name_length, &tmp);
name_length      3955 Zend/zend_API.c ZEND_API int zend_update_static_property_bool(zend_class_entry *scope, const char *name, size_t name_length, zend_long value) /* {{{ */
name_length      3960 Zend/zend_API.c 	return zend_update_static_property(scope, name, name_length, &tmp);
name_length      3964 Zend/zend_API.c ZEND_API int zend_update_static_property_long(zend_class_entry *scope, const char *name, size_t name_length, zend_long value) /* {{{ */
name_length      3969 Zend/zend_API.c 	return zend_update_static_property(scope, name, name_length, &tmp);
name_length      3973 Zend/zend_API.c ZEND_API int zend_update_static_property_double(zend_class_entry *scope, const char *name, size_t name_length, double value) /* {{{ */
name_length      3978 Zend/zend_API.c 	return zend_update_static_property(scope, name, name_length, &tmp);
name_length      3982 Zend/zend_API.c ZEND_API int zend_update_static_property_string(zend_class_entry *scope, const char *name, size_t name_length, const char *value) /* {{{ */
name_length      3988 Zend/zend_API.c 	return zend_update_static_property(scope, name, name_length, &tmp);
name_length      3992 Zend/zend_API.c ZEND_API int zend_update_static_property_stringl(zend_class_entry *scope, const char *name, size_t name_length, const char *value, size_t value_len) /* {{{ */
name_length      3998 Zend/zend_API.c 	return zend_update_static_property(scope, name, name_length, &tmp);
name_length      4002 Zend/zend_API.c ZEND_API zval *zend_read_property(zend_class_entry *scope, zval *object, const char *name, size_t name_length, zend_bool silent, zval *rv) /* {{{ */
name_length      4013 Zend/zend_API.c 	ZVAL_STRINGL(&property, name, name_length);
name_length      4022 Zend/zend_API.c ZEND_API zval *zend_read_static_property(zend_class_entry *scope, const char *name, size_t name_length, zend_bool silent) /* {{{ */
name_length      4026 Zend/zend_API.c 	zend_string *key = zend_string_init(name, name_length, 0);
name_length       319 Zend/zend_API.h ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, size_t name_length, zval *property, int access_type);
name_length       320 Zend/zend_API.h ZEND_API int zend_declare_property_null(zend_class_entry *ce, const char *name, size_t name_length, int access_type);
name_length       321 Zend/zend_API.h ZEND_API int zend_declare_property_bool(zend_class_entry *ce, const char *name, size_t name_length, zend_long value, int access_type);
name_length       322 Zend/zend_API.h ZEND_API int zend_declare_property_long(zend_class_entry *ce, const char *name, size_t name_length, zend_long value, int access_type);
name_length       323 Zend/zend_API.h ZEND_API int zend_declare_property_double(zend_class_entry *ce, const char *name, size_t name_length, double value, int access_type);
name_length       324 Zend/zend_API.h ZEND_API int zend_declare_property_string(zend_class_entry *ce, const char *name, size_t name_length, const char *value, int access_type);
name_length       325 Zend/zend_API.h ZEND_API int zend_declare_property_stringl(zend_class_entry *ce, const char *name, size_t name_length, const char *value, size_t value_len, int access_type);
name_length       327 Zend/zend_API.h ZEND_API int zend_declare_class_constant(zend_class_entry *ce, const char *name, size_t name_length, zval *value);
name_length       328 Zend/zend_API.h ZEND_API int zend_declare_class_constant_null(zend_class_entry *ce, const char *name, size_t name_length);
name_length       329 Zend/zend_API.h ZEND_API int zend_declare_class_constant_long(zend_class_entry *ce, const char *name, size_t name_length, zend_long value);
name_length       330 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);
name_length       331 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);
name_length       332 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);
name_length       333 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);
name_length       338 Zend/zend_API.h ZEND_API void zend_update_property(zend_class_entry *scope, zval *object, const char *name, size_t name_length, zval *value);
name_length       339 Zend/zend_API.h ZEND_API void zend_update_property_null(zend_class_entry *scope, zval *object, const char *name, size_t name_length);
name_length       340 Zend/zend_API.h ZEND_API void zend_update_property_bool(zend_class_entry *scope, zval *object, const char *name, size_t name_length, zend_long value);
name_length       341 Zend/zend_API.h ZEND_API void zend_update_property_long(zend_class_entry *scope, zval *object, const char *name, size_t name_length, zend_long value);
name_length       342 Zend/zend_API.h ZEND_API void zend_update_property_double(zend_class_entry *scope, zval *object, const char *name, size_t name_length, double value);
name_length       343 Zend/zend_API.h ZEND_API void zend_update_property_str(zend_class_entry *scope, zval *object, const char *name, size_t name_length, zend_string *value);
name_length       344 Zend/zend_API.h ZEND_API void zend_update_property_string(zend_class_entry *scope, zval *object, const char *name, size_t name_length, const char *value);
name_length       345 Zend/zend_API.h ZEND_API void zend_update_property_stringl(zend_class_entry *scope, zval *object, const char *name, size_t name_length, const char *value, size_t value_length);
name_length       347 Zend/zend_API.h ZEND_API int zend_update_static_property(zend_class_entry *scope, const char *name, size_t name_length, zval *value);
name_length       348 Zend/zend_API.h ZEND_API int zend_update_static_property_null(zend_class_entry *scope, const char *name, size_t name_length);
name_length       349 Zend/zend_API.h ZEND_API int zend_update_static_property_bool(zend_class_entry *scope, const char *name, size_t name_length, zend_long value);
name_length       350 Zend/zend_API.h ZEND_API int zend_update_static_property_long(zend_class_entry *scope, const char *name, size_t name_length, zend_long value);
name_length       351 Zend/zend_API.h ZEND_API int zend_update_static_property_double(zend_class_entry *scope, const char *name, size_t name_length, double value);
name_length       352 Zend/zend_API.h ZEND_API int zend_update_static_property_string(zend_class_entry *scope, const char *name, size_t name_length, const char *value);
name_length       353 Zend/zend_API.h ZEND_API int zend_update_static_property_stringl(zend_class_entry *scope, const char *name, size_t name_length, const char *value, size_t value_length);
name_length       355 Zend/zend_API.h ZEND_API zval *zend_read_property(zend_class_entry *scope, zval *object, const char *name, size_t name_length, zend_bool silent, zval *rv);
name_length       357 Zend/zend_API.h ZEND_API zval *zend_read_static_property(zend_class_entry *scope, const char *name, size_t name_length, zend_bool silent);
name_length       534 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       234 Zend/zend_ini.c 		p->name = zend_string_init(ini_entry->name, ini_entry->name_length, 1);
name_length       403 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       407 Zend/zend_ini.c 	ini_entry = zend_hash_str_find_ptr(registered_zend_ini_directives, name, name_length);
name_length       421 Zend/zend_ini.c ZEND_API zend_long zend_ini_long(char *name, uint name_length, int orig) /* {{{ */
name_length       425 Zend/zend_ini.c 	ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length);
name_length       438 Zend/zend_ini.c ZEND_API double zend_ini_double(char *name, uint name_length, int orig) /* {{{ */
name_length       442 Zend/zend_ini.c 	ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length);
name_length       455 Zend/zend_ini.c ZEND_API char *zend_ini_string_ex(char *name, uint name_length, int orig, zend_bool *exists) /* {{{ */
name_length       459 Zend/zend_ini.c 	ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length);
name_length       479 Zend/zend_ini.c ZEND_API char *zend_ini_string(char *name, uint name_length, int orig) /* {{{ */
name_length       484 Zend/zend_ini.c 	return_value = zend_ini_string_ex(name, name_length, orig, &exists);
name_length        43 Zend/zend_ini.h 	uint name_length;
name_length        84 Zend/zend_ini.h ZEND_API zend_long zend_ini_long(char *name, uint name_length, int orig);
name_length        85 Zend/zend_ini.h ZEND_API double zend_ini_double(char *name, uint name_length, int orig);
name_length        86 Zend/zend_ini.h ZEND_API char *zend_ini_string(char *name, uint name_length, int orig);
name_length        87 Zend/zend_ini.h ZEND_API char *zend_ini_string_ex(char *name, uint name_length, int orig, zend_bool *exists);
name_length        89 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      1158 ext/mysqli/mysqli_api.c 	add_property_stringl(value, "name",(field->name ? field->name : ""), field->name_length);
name_length       231 ext/mysqlnd/mysqlnd_result_meta.c 			new_fields[i].name_length = ZSTR_LEN(new_fields[i].sname);
name_length        85 ext/mysqlnd/mysqlnd_structs.h 	unsigned int name_length;
name_length      1214 ext/mysqlnd/mysqlnd_wireprotocol.c 	STRUCT_OFFSET(MYSQLND_FIELD, name_length),
name_length      1357 ext/mysqlnd/mysqlnd_wireprotocol.c 		meta->sname = zend_string_init(meta->name, meta->name_length, packet->persistent_alloc);
name_length      1362 ext/mysqlnd/mysqlnd_wireprotocol.c 	meta->name_length = ZSTR_LEN(meta->sname);
name_length       705 ext/pdo_mysql/mysql_statement.c 			cols[i].name = zend_string_init(S->fields[i].name, S->fields[i].name_length, 0);
name_length       112 ext/snmp/php_snmp.h 	size_t name_length;
name_length       122 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       564 ext/snmp/snmp.c 		if (snprint_value(buf, buflen, vars->name, vars->name_length, vars) == -1) {
name_length       723 ext/snmp/snmp.c 		memmove((char *)root, (char *)(objid_query->vars[0].name), (objid_query->vars[0].name_length) * sizeof(oid));
name_length       724 ext/snmp/snmp.c 		rootlen = objid_query->vars[0].name_length;
name_length       750 ext/snmp/snmp.c 			snmp_add_null_var(pdu, objid_query->vars[0].name, objid_query->vars[0].name_length);
name_length       766 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       767 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       775 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       808 ext/snmp/snmp.c 						snprint_objid(buf, sizeof(buf), vars->name, vars->name_length);
name_length       809 ext/snmp/snmp.c 						snprint_value(buf2, sizeof(buf2), vars->name, vars->name_length, vars);
name_length       815 ext/snmp/snmp.c 						(vars->name_length < rootlen || memcmp(root, vars->name, rootlen * sizeof(oid)))) { /* not part of this subtree */
name_length       840 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       842 ext/snmp/snmp.c 									objid_query->vars[count].name_length = 0; /* mark this name as used */
name_length       849 ext/snmp/snmp.c 								snprint_objid(buf2, sizeof(buf2), vars->name, vars->name_length);
name_length       853 ext/snmp/snmp.c 							snprint_objid(buf2, sizeof(buf2), vars->name, vars->name_length);
name_length       854 ext/snmp/snmp.c 							if (rootlen <= vars->name_length && snmp_oid_compare(root, rootlen, vars->name, rootlen) == 0) {
name_length       857 ext/snmp/snmp.c 								while(count < vars->name_length){
name_length       866 ext/snmp/snmp.c 							snprint_objid(buf2, sizeof(buf2), vars->name, vars->name_length);
name_length       876 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       877 ext/snmp/snmp.c 							snprint_objid(buf2, sizeof(buf2), vars->name, vars->name_length);
name_length       881 ext/snmp/snmp.c 							memmove((char *)(objid_query->vars[0].name), (char *)vars->name, vars->name_length * sizeof(oid));
name_length       882 ext/snmp/snmp.c 							objid_query->vars[0].name_length = vars->name_length;
name_length       910 ext/snmp/snmp.c 						snprint_objid(buf, sizeof(buf), vars->name, vars->name_length);
name_length      1085 ext/snmp/snmp.c 		objid_query->vars[0].name_length = MAX_NAME_LEN;
name_length      1087 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      1094 ext/snmp/snmp.c 			objid_query->vars[0].name_length = sizeof(objid_mib) / sizeof(oid);
name_length      1098 ext/snmp/snmp.c 			objid_query->vars[objid_query->offset].name_length = MAX_OID_LEN;
name_length      1099 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      1947 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)
name_length      1952 ext/snmp/snmp.c 	p.name_length = name_length;
name_length      1955 ext/snmp/snmp.c 	zend_hash_str_add_mem(h, (char *)name, name_length, &p, sizeof(php_snmp_prop_handler));
name_length       820 ext/soap/soap.c 	size_t name_length;
name_length       823 ext/soap/soap.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "zs", &data, &name, &name_length) == FAILURE) {
name_length       826 ext/soap/soap.c 	if (name_length == 0) {
name_length       832 ext/soap/soap.c 	add_property_stringl(this_ptr, "param_name", name, name_length);
name_length       194 ext/standard/info.c static void php_print_gpcse_array(char *name, uint name_length)
name_length       201 ext/standard/info.c 	key = zend_string_init(name, name_length, 0);
name_length       876 main/php_ini.c PHPAPI zval *cfg_get_entry(const char *name, size_t name_length)
name_length       878 main/php_ini.c 	return zend_hash_str_find(&configuration_hash, name, name_length);
name_length        32 main/php_ini.h PHPAPI zval *cfg_get_entry(const char *name, size_t 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) /* {{{ */
name_length        31 sapi/fpm/fpm/fpm_php.c 	if ((ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length)) == NULL) {
name_length       230 sapi/phpdbg/phpdbg_utils.c PHPDBG_API const phpdbg_color_t *phpdbg_get_color(const char *name, size_t name_length) /* {{{ */
name_length       235 sapi/phpdbg/phpdbg_utils.c 		if (name_length == color->name_length &&
name_length       236 sapi/phpdbg/phpdbg_utils.c 			memcmp(name, color->name, name_length) == SUCCESS) {
name_length       237 sapi/phpdbg/phpdbg_utils.c 			phpdbg_debug("phpdbg_get_color(%s, %lu): %s", name, name_length, color->code);
name_length       243 sapi/phpdbg/phpdbg_utils.c 	phpdbg_debug("phpdbg_get_color(%s, %lu): failed", name, name_length);
name_length       253 sapi/phpdbg/phpdbg_utils.c PHPDBG_API void phpdbg_set_color_ex(int element, const char *name, size_t name_length) /* {{{ */
name_length       255 sapi/phpdbg/phpdbg_utils.c 	const phpdbg_color_t *color = phpdbg_get_color(name, name_length);
name_length       271 sapi/phpdbg/phpdbg_utils.c 		if (len == element->name_length) {
name_length       381 sapi/phpdbg/phpdbg_utils.c int phpdbg_safe_class_lookup(const char *name, int name_length, zend_class_entry **ce) {
name_length       386 sapi/phpdbg/phpdbg_utils.c 		if (name == NULL || !name_length) {
name_length       390 sapi/phpdbg/phpdbg_utils.c 		lc_free = lc_name = emalloc(name_length + 1);
name_length       391 sapi/phpdbg/phpdbg_utils.c 		zend_str_tolower_copy(lc_name, name, name_length);
name_length       392 sapi/phpdbg/phpdbg_utils.c 		lc_length = name_length + 1;
name_length       402 sapi/phpdbg/phpdbg_utils.c 			phpdbg_error("signalsegv", "class=\"%.*s\"", "Could not fetch class %.*s, invalid data source", name_length, name);
name_length       407 sapi/phpdbg/phpdbg_utils.c 		zend_string *str_name = zend_string_init(name, name_length, 0);
name_length        56 sapi/phpdbg/phpdbg_utils.h 	size_t      name_length;
name_length        62 sapi/phpdbg/phpdbg_utils.h 	size_t		name_length;
name_length        66 sapi/phpdbg/phpdbg_utils.h PHPDBG_API const phpdbg_color_t *phpdbg_get_color(const char *name, size_t name_length);
name_length        68 sapi/phpdbg/phpdbg_utils.h PHPDBG_API void phpdbg_set_color_ex(int element, const char *name, size_t name_length);
name_length        84 sapi/phpdbg/phpdbg_utils.h int phpdbg_safe_class_lookup(const char *name, int name_length, zend_class_entry **ce);