Searched refs:prop_name_length (Results 1 - 2 of 2) sorted by relevance
| /PHP_5_3/ext/standard/ |
| H A D | var.c | 664 int prop_name_length; local 667 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); 668 if (zend_hash_find(propers, priv_name, prop_name_length + 1, (void *) &d) == SUCCESS) { 669 php_var_serialize_string(buf, priv_name, prop_name_length); 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);
|
| /PHP_5_3/Zend/ |
| H A D | zend_compile.c | 3579 int prop_name_length; local 3581 prop_name_length = 1 + src1_length + 1 + src2_length; 3582 prop_name = pemalloc(prop_name_length + 1, internal); 3588 *dest_length = prop_name_length;
|
Completed in 15 milliseconds