| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm_php.c | 26 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) /* {{{ */ argument 31 if (zend_hash_find(EG(ini_directives), name, name_length, (void **) &ini_entry) == FAILURE) {
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_ini.c | 201 if (zend_hash_add(directives, p->name, p->name_length, (void*)p, sizeof(zend_ini_entry), (void **) &hashed_ini_entry) == FAILURE) { 206 if ((zend_get_configuration_directive(p->name, p->name_length, &default_value)) == SUCCESS) { 247 ZEND_API int zend_alter_ini_entry(char *name, uint name_length, char *new_value, uint new_value_length, int modify_type, int stage) /* {{{ */ argument 251 return zend_alter_ini_entry_ex(name, name_length, new_value, new_value_length, modify_type, stage, 0 TSRMLS_CC); 255 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) /* {{{ */ argument 262 if (zend_hash_find(EG(ini_directives), name, name_length, (void **) &ini_entry) == FAILURE) { 288 zend_hash_add(EG(modified_ini_directives), name, name_length, &ini_entry, sizeof(zend_ini_entry*), NULL); local 309 ZEND_API int zend_restore_ini_entry(char *name, uint name_length, int stage) /* {{{ */ argument 314 if (zend_hash_find(EG(ini_directives), name, name_length, (void **) &ini_entry) == FAILURE || 321 zend_hash_del(EG(modified_ini_directives), name, name_length); local 331 zend_ini_register_displayer(char *name, uint name_length, void (*displayer)(zend_ini_entry *ini_entry, int type)) argument 348 zend_ini_long(char *name, uint name_length, int orig) argument 365 zend_ini_double(char *name, uint name_length, int orig) argument 382 zend_ini_string_ex(char *name, uint name_length, int orig, zend_bool *exists) argument 406 zend_ini_string(char *name, uint name_length, int orig) argument [all...] |
| H A D | zend.c | 67 static int (*zend_get_configuration_directive_p)(const char *name, uint name_length, zval *contents); 983 ZEND_API int zend_get_configuration_directive(const char *name, uint name_length, zval *contents) /* {{{ */ argument 986 return zend_get_configuration_directive_p(name, name_length, contents);
|
| H A D | zend_ini.h | 67 uint name_length; member in struct:_zend_ini_entry 97 ZEND_API int zend_alter_ini_entry(char *name, uint name_length, char *new_value, uint new_value_length, int modify_type, int stage); 98 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); 99 ZEND_API int zend_restore_ini_entry(char *name, uint name_length, int stage); 102 ZEND_API long zend_ini_long(char *name, uint name_length, int orig); 103 ZEND_API double zend_ini_double(char *name, uint name_length, int orig); 104 ZEND_API char *zend_ini_string(char *name, uint name_length, int orig); 105 ZEND_API char *zend_ini_string_ex(char *name, uint name_length, int orig, zend_bool *exists); 107 ZEND_API int zend_ini_register_displayer(char *name, uint name_length, void (*displayer)(zend_ini_entry *ini_entry, int type));
|
| H A D | zend.h | 479 zend_uint name_length; member in struct:_zend_class_entry 550 int (*get_configuration_directive)(const char *name, uint name_length, zval *contents); 729 ZEND_API int zend_get_configuration_directive(const char *name, uint name_length, zval *contents);
|
| H A D | zend_API.c | 254 *class_name_len = ce->name_length; 2495 char *lowercase_name = emalloc(orig_class_entry->name_length + 1); 2507 zend_str_tolower_copy(lowercase_name, orig_class_entry->name, class_entry->name_length); 2508 lowercase_name = (char*)zend_new_interned_string(lowercase_name, class_entry->name_length + 1, 1 TSRMLS_CC); 2510 zend_hash_quick_update(CG(class_table), lowercase_name, class_entry->name_length+1, INTERNED_HASH(lowercase_name), &class_entry, sizeof(zend_class_entry *), NULL); 2512 zend_hash_update(CG(class_table), lowercase_name, class_entry->name_length+1, &class_entry, sizeof(zend_class_entry *), NULL); 2589 ZEND_API int zend_set_hash_symbol(zval *symbol, const char *name, int name_length, zend_bool is_ref, int num_symbol_tables, ...) /* {{{ */ argument 2601 zend_hash_update(symbol_table, name, name_length + 1, &symbol, sizeof(zval *), NULL); 3042 *callable_name_len = fcc->calling_scope->name_length + Z_STRLEN_P(callable) + sizeof("::") - 1; 3044 memcpy(ptr, fcc->calling_scope->name, fcc->calling_scope->name_length); 3409 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) argument 3509 zend_declare_property(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type TSRMLS_DC) argument 3515 zend_declare_property_null(zend_class_entry *ce, const char *name, int name_length, int access_type TSRMLS_DC) argument 3529 zend_declare_property_bool(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC) argument 3544 zend_declare_property_long(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC) argument 3559 zend_declare_property_double(zend_class_entry *ce, const char *name, int name_length, double value, int access_type TSRMLS_DC) argument 3574 zend_declare_property_string(zend_class_entry *ce, const char *name, int name_length, const char *value, int access_type TSRMLS_DC) argument 3591 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) argument 3607 zend_declare_class_constant(zend_class_entry *ce, const char *name, size_t name_length, zval *value TSRMLS_DC) argument 3628 zend_declare_class_constant_long(zend_class_entry *ce, const char *name, size_t name_length, long value TSRMLS_DC) argument 3643 zend_declare_class_constant_bool(zend_class_entry *ce, const char *name, size_t name_length, zend_bool value TSRMLS_DC) argument 3658 zend_declare_class_constant_double(zend_class_entry *ce, const char *name, size_t name_length, double value TSRMLS_DC) argument 3673 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) argument 3689 zend_declare_class_constant_string(zend_class_entry *ce, const char *name, size_t name_length, const char *value TSRMLS_DC) argument 3695 zend_update_property(zend_class_entry *scope, zval *object, const char *name, int name_length, zval *value TSRMLS_DC) argument 3731 zend_update_property_bool(zend_class_entry *scope, zval *object, const char *name, int name_length, long value TSRMLS_DC) argument 3743 zend_update_property_long(zend_class_entry *scope, zval *object, const char *name, int name_length, long value TSRMLS_DC) argument 3755 zend_update_property_double(zend_class_entry *scope, zval *object, const char *name, int name_length, double value TSRMLS_DC) argument 3767 zend_update_property_string(zend_class_entry *scope, zval *object, const char *name, int name_length, const char *value TSRMLS_DC) argument 3779 zend_update_property_stringl(zend_class_entry *scope, zval *object, const char *name, int name_length, const char *value, int value_len TSRMLS_DC) argument 3791 zend_update_static_property(zend_class_entry *scope, const char *name, int name_length, zval *value TSRMLS_DC) argument 3840 zend_update_static_property_bool(zend_class_entry *scope, const char *name, int name_length, long value TSRMLS_DC) argument 3852 zend_update_static_property_long(zend_class_entry *scope, const char *name, int name_length, long value TSRMLS_DC) argument 3864 zend_update_static_property_double(zend_class_entry *scope, const char *name, int name_length, double value TSRMLS_DC) argument 3876 zend_update_static_property_string(zend_class_entry *scope, const char *name, int name_length, const char *value TSRMLS_DC) argument 3888 zend_update_static_property_stringl(zend_class_entry *scope, const char *name, int name_length, const char *value, int value_len TSRMLS_DC) argument 3900 zend_read_property(zend_class_entry *scope, zval *object, const char *name, int name_length, zend_bool silent TSRMLS_DC) argument 3925 zend_read_static_property(zend_class_entry *scope, const char *name, int name_length, zend_bool silent TSRMLS_DC) argument [all...] |
| H A D | zend_compile.h | 222 int name_length; member in struct:_zend_property_info
|
| H A D | zend_execute_API.c | 1015 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) /* {{{ */ argument 1035 if (name == NULL || !name_length) { 1039 lc_free = lc_name = do_alloca(name_length + 1, use_heap); 1040 zend_str_tolower_copy(lc_name, name, name_length); 1041 lc_length = name_length + 1; 1085 ZVAL_STRINGL(class_name_ptr, name+1, name_length-1, 1); 1087 ZVAL_STRINGL(class_name_ptr, name, name_length, 1); 1132 ZEND_API int zend_lookup_class(const char *name, int name_length, zend_class_entry ***ce TSRMLS_DC) /* {{{ */ argument 1134 return zend_lookup_class_ex(name, name_length, NULL, 1, ce TSRMLS_CC);
|
| H A D | zend_builtin_functions.c | 761 RETURN_STRINGL(EG(scope)->name, EG(scope)->name_length, 1); 784 RETURN_STRINGL(EG(called_scope)->name, EG(called_scope)->name_length, 1); 800 zend_uint name_length; local 809 RETURN_STRINGL(ce->parent->name, ce->parent->name_length, 1); 817 && Z_OBJ_HT_P(arg)->get_class_name(arg, &name, &name_length, 1 TSRMLS_CC) == SUCCESS) { 818 RETURN_STRINGL(name, name_length, 0); 831 RETURN_STRINGL(ce->parent->name, ce->parent->name_length, 1); 1658 (ce->name_length != hash_key->nKeyLength - 1 || 1659 !same_name(hash_key->arKey, ce->name, ce->name_length))) { 1662 add_next_index_stringl(array, ce->name, ce->name_length, [all...] |
| H A D | zend_compile.c | 111 property_info->name = estrndup(property_info->name, property_info->name_length); 122 property_info->name = zend_strndup(property_info->name, property_info->name_length); 142 static void build_runtime_defined_function_key(zval *result, const char *name, int name_length TSRMLS_DC) /* {{{ */ 156 result->value.str.len = 1+name_length+strlen(filename)+char_pos_len; 1632 class_lcname = do_alloca(CG(active_class_entry)->name_length + 1, use_heap); 1633 zend_str_tolower_copy(class_lcname, CG(active_class_entry)->name, CG(active_class_entry)->name_length); 1636 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))) { 2145 ZVAL_STRINGL(&class_name->u.constant, CG(active_class_entry)->name, CG(active_class_entry)->name_length, 1); 3072 lc_class_name = zend_str_tolower_dup(ce->name, ce->name_length); 3073 if (!zend_hash_exists(&ce->function_table, lc_class_name, ce->name_length 4117 zend_uint name_length = strlen(class_name); local [all...] |
| /PHP_TRUNK/ext/snmp/ |
| H A D | php_snmp.h | 107 size_t name_length; member in struct:_ptp_snmp_prop_handler 117 size_t name_length; member in struct:_snmpobjarg
|
| H A D | snmp.c | 105 php_snmp_add_property((a), (b)[i].name, (b)[i].name_length, \ 567 if (snprint_value(buf, buflen, vars->name, vars->name_length, vars) == -1) { 729 memmove((char *)root, (char *)(objid_query->vars[0].name), (objid_query->vars[0].name_length) * sizeof(oid)); 730 rootlen = objid_query->vars[0].name_length; 756 snmp_add_null_var(pdu, objid_query->vars[0].name, objid_query->vars[0].name_length); 772 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))) { 773 snprint_objid(buf, sizeof(buf), objid_query->vars[objid_query->offset].name, objid_query->vars[objid_query->offset].name_length); 781 snmp_add_null_var(pdu, objid_query->vars[objid_query->offset].name, objid_query->vars[objid_query->offset].name_length); 814 snprint_objid(buf, sizeof(buf), vars->name, vars->name_length); 815 snprint_value(buf2, sizeof(buf2), vars->name, vars->name_length, var 1958 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) argument [all...] |
| /PHP_TRUNK/main/ |
| H A D | php_ini.c | 132 PHPWRITE(ini_entry->name, ini_entry->name_length - 1); 139 PHPWRITE(ini_entry->name, ini_entry->name_length - 1); 857 PHPAPI zval *cfg_get_entry(const char *name, uint name_length) argument 861 if (zend_hash_find(&configuration_hash, name, name_length, (void **) &tmp) == SUCCESS) {
|
| H A D | main.c | 1369 static int php_get_configuration_directive_for_zend(const char *name, uint name_length, zval *contents) argument 1371 zval *retval = cfg_get_entry(name, name_length);
|
| /PHP_TRUNK/ext/mysqlnd/ |
| H A D | mysqlnd_structs.h | 84 unsigned int name_length; member in struct:st_mysqlnd_field
|
| /PHP_TRUNK/ext/soap/ |
| H A D | soap.c | 784 int name_length; local 786 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zs", &data, &name, &name_length) == FAILURE) { 789 if (name_length == 0) { 794 add_property_stringl(this_ptr, "param_name", name, name_length, 1);
|