Searched refs:prot_name (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_3/ext/standard/ |
| H A D | var.c | 663 char *prot_name, *priv_name; local 675 zend_mangle_property_name(&prot_name, &prop_name_length, "*", 1, Z_STRVAL_PP(name), Z_STRLEN_PP(name), ce->type & ZEND_INTERNAL_CLASS); 676 if (zend_hash_find(propers, prot_name, prop_name_length + 1, (void *) &d) == SUCCESS) { 677 php_var_serialize_string(buf, prot_name, prop_name_length); 678 pefree(prot_name, ce->type & ZEND_INTERNAL_CLASS); 682 pefree(prot_name, ce->type & ZEND_INTERNAL_CLASS);
|
| /PHP_5_3/Zend/ |
| H A D | zend_API.c | 3138 char *prot_name; local 3141 zend_mangle_property_name(&prot_name, &prot_name_length, "*", 1, name, name_length, ce->type & ZEND_INTERNAL_CLASS); 3142 zend_hash_update(target_symbol_table, prot_name, prot_name_length+1, &property, sizeof(zval *), NULL); 3143 property_info.name = prot_name; 3149 char *prot_name; local 3152 zend_mangle_property_name(&prot_name, &prot_name_length, "*", 1, name, name_length, ce->type & ZEND_INTERNAL_CLASS); 3153 zend_hash_del(target_symbol_table, prot_name, prot_name_length+1); 3154 pefree(prot_name, ce->type & ZEND_INTERNAL_CLASS);
|
| H A D | zend_compile.c | 2746 char *prot_name; local 2749 zend_mangle_property_name(&prot_name, &prot_name_length, "*", 1, child_info->name, child_info->name_length, ce->type & ZEND_INTERNAL_CLASS); 2762 if (zend_hash_find(ht, prot_name, prot_name_length+1, (void**)&prop) == SUCCESS) { 2763 zend_hash_del(&ce->default_static_members, prot_name, prot_name_length+1); 2766 zend_hash_del(&ce->default_properties, prot_name, prot_name_length+1); 2768 pefree(prot_name, ce->type & ZEND_INTERNAL_CLASS);
|
Completed in 21 milliseconds