| /PHP_5_5/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_5_5/Zend/ |
| H A D | zend_constants.c | 244 const_name_len = sizeof("\0__CLASS__") + EG(scope)->name_length; 247 zend_str_tolower_copy(const_name + sizeof("\0__CLASS__")-1, EG(scope)->name, EG(scope)->name_length); 251 Z_STRVAL((**c).value) = estrndup(EG(scope)->name, EG(scope)->name_length); 252 Z_STRLEN((**c).value) = EG(scope)->name_length;
|
| H A D | zend_execute.h | 64 ZEND_API int zend_lookup_class(const char *name, int name_length, zend_class_entry ***ce TSRMLS_DC); 65 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);
|
| 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_objects.c | 196 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) {
|
| 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_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_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...] |
| H A D | zend_object_handlers.c | 83 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]); 96 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]); 345 EG(std_property_info).name_length = Z_STRLEN_P(member); 395 info.name_length = Z_STRLEN_P(member); 399 zend_unmangle_property_name(property_info->name, property_info->name_length, &class_name, &prop_name); 403 info.name_length = strlen(prop_name); 404 info.h = zend_get_hash_value(info.name, info.name_length+1); 411 } else if (zend_hash_quick_find(zobj->guards, property_info->name, property_info->name_length+1, property_info->h, (void **) pguard) == SUCCESS) { 418 return zend_hash_quick_add(zobj->guards, property_info->name, property_info->name_length+1, property_info->h, (void**)&stub, sizeof(stub), (void**) pguard); 458 UNEXPECTED(zend_hash_quick_find(zobj->properties, property_info->name, property_info->name_length [all...] |
| H A D | zend_API.h | 177 class_container.name_length = _len; \ 305 ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type TSRMLS_DC); 306 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); 307 ZEND_API int zend_declare_property_null(zend_class_entry *ce, const char *name, int name_length, int access_type TSRMLS_DC); 308 ZEND_API int zend_declare_property_bool(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC); 309 ZEND_API int zend_declare_property_long(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC); 310 ZEND_API int zend_declare_property_double(zend_class_entry *ce, const char *name, int name_length, double value, int access_type TSRMLS_DC); 311 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); 312 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); 314 ZEND_API int zend_declare_class_constant(zend_class_entry *ce, const char *name, size_t name_length, zva [all...] |
| /PHP_5_5/ext/com_dotnet/ |
| H A D | com_handlers.c | 450 *class_name = estrndup(obj->ce->name, obj->ce->name_length); 451 *class_name_len = obj->ce->name_length;
|
| H A D | com_saproxy.c | 348 *class_name = estrndup(php_com_saproxy_class_entry->name, php_com_saproxy_class_entry->name_length); 349 *class_name_len = php_com_saproxy_class_entry->name_length;
|
| /PHP_5_5/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_5_5/ext/spl/ |
| H A D | spl_functions.c | 83 size_t len = pce->name_length; 88 ZVAL_STRINGL(tmp, pce->name, pce->name_length, 1); 140 zend_mangle_property_name(&rv, name_len, ce->name, ce->name_length, prop_name, prop_len, 0);
|
| /PHP_5_5/main/ |
| H A D | php_ini.h | 31 PHPAPI zval *cfg_get_entry(const char *name, uint name_length);
|
| 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) {
|
| /PHP_5_5/ext/mysqlnd/ |
| H A D | mysqlnd_result_meta.c | 184 field_packet->metadata->name_length + 1, 191 field_packet->metadata->name_length + 1);
|
| /PHP_5_5/ext/dom/ |
| H A D | php_dom.c | 215 return zend_hash_update(doc_props->classmap, basece->name, basece->name_length + 1, &ce, sizeof(zend_class_entry *), NULL); 217 zend_hash_del(doc_props->classmap, basece->name, basece->name_length + 1); 231 if (zend_hash_find(doc_props->classmap, basece->name, basece->name_length + 1, (void**) &ce) == SUCCESS) { 682 zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_domstringlist_prop_handlers, sizeof(dom_domstringlist_prop_handlers), NULL); 688 zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_namelist_prop_handlers, sizeof(dom_namelist_prop_handlers), NULL); 694 zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_domimplementationlist_prop_handlers, sizeof(dom_domimplementationlist_prop_handlers), NULL); 718 zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_node_prop_handlers, sizeof(dom_node_prop_handlers), NULL); 731 zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_namespace_node_prop_handlers, sizeof(dom_namespace_node_prop_handlers), NULL); 734 zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_node_prop_handlers, sizeof(dom_node_prop_handlers), NULL); 759 zend_hash_add(&classes, ce.name, ce.name_length [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | var.c | 680 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); 783 smart_str_append_long(buf, (int)Z_OBJCE_P(struc)->name_length); 785 smart_str_appendl(buf, Z_OBJCE_P(struc)->name, Z_OBJCE_P(struc)->name_length);
|
| /PHP_5_5/ext/opcache/ |
| H A D | zend_persist_calc.c | 224 ADD_INTERNED_STRING(prop->name, prop->name_length + 1); 238 ADD_INTERNED_STRING(ce->name, ce->name_length + 1);
|
| /PHP_5_5/ext/reflection/ |
| H A D | php_reflection.c | 958 zend_unmangle_property_name(prop->name, prop->name_length, &class_name, (const char**)&prop_name); 1197 ZVAL_STRINGL(name, ce->name, ce->name_length, 1); 1303 ZVAL_STRINGL(classname, method->common.scope->name, method->common.scope->name_length, 1); 1324 zend_unmangle_property_name(prop->name, prop->name_length, &class_name, &prop_name); 1346 ZVAL_STRINGL(classname, prop->ce->name, prop->ce->name_length, 1); 2750 ZVAL_STRINGL(classname, mptr->common.scope->name, mptr->common.scope->name_length, 1); 3314 ZVAL_STRINGL(classname, Z_OBJCE_P(argument)->name, Z_OBJCE_P(argument)->name_length, 1); 3331 ZVAL_STRINGL(classname, (*ce)->name, (*ce)->name_length, 1); 3864 property_info_tmp.name_length = name_len; 4396 add_assoc_zval_ex(return_value, ce->interfaces[i]->name, ce->interfaces[i]->name_length [all...] |
| /PHP_5_5/ext/mysqli/ |
| H A D | mysqli.c | 56 zend_declare_property_null((a), (b)[i].name, (b)[i].name_length, ZEND_ACC_PUBLIC TSRMLS_CC); \ 502 zend_hash_find(&classes, mysqli_base_class->name, mysqli_base_class->name_length + 1, 650 zend_hash_add(&classes, ce->name, ce->name_length+1, &mysqli_driver_properties, sizeof(mysqli_driver_properties), NULL); 658 zend_hash_add(&classes, ce->name, ce->name_length+1, &mysqli_link_properties, sizeof(mysqli_link_properties), NULL); 666 zend_hash_add(&classes, ce->name, ce->name_length+1, &mysqli_warning_properties, sizeof(mysqli_warning_properties), NULL); 676 zend_hash_add(&classes, ce->name, ce->name_length+1, &mysqli_result_properties, sizeof(mysqli_result_properties), NULL); 683 zend_hash_add(&classes, ce->name, ce->name_length+1, &mysqli_stmt_properties, sizeof(mysqli_stmt_properties), NULL);
|