Searched refs:get_properties (Results 1 – 19 of 19) sorted by relevance
/PHP-5.6/ext/reflection/tests/ |
H A D | bug61388.phpt | 2 ReflectionObject:getProperties() issues invalid reads when it get_properties returns a hash table w…
|
/PHP-5.6/ext/spl/tests/ |
H A D | fixedarray_020.phpt | 2 SPL: FixedArray: fromArray/toArray + get_properties
|
/PHP-5.6/Zend/ |
H A D | zend_object_handlers.h | 136 zend_object_get_properties_t get_properties; member
|
H A D | zend_object_handlers.c | 118 if (Z_OBJ_HANDLER_P(object, get_properties) != zend_std_get_properties) { in zend_std_get_gc() 121 return Z_OBJ_HANDLER_P(object, get_properties)(object TSRMLS_CC); in zend_std_get_gc() 145 return Z_OBJ_HANDLER_P(object, get_properties) in zend_std_get_debug_info() 146 ? Z_OBJ_HANDLER_P(object, get_properties)(object TSRMLS_CC) in zend_std_get_debug_info()
|
H A D | OBJECTS2_HOWTO | 136 zend_object_get_properties_t get_properties;
|
H A D | zend_operators.h | 452 #define Z_OBJPROP(zval) Z_OBJ_HT((zval))->get_properties(&(zval) TSRMLS_CC) 455 …ebug_info)(&(zval),&is_tmp TSRMLS_CC):(is_tmp=0,Z_OBJ_HANDLER((zval),get_properties)?Z_OBJPROP(zva…
|
H A D | zend_builtin_functions.c | 1001 if (Z_OBJ_HT_P(obj)->get_properties == NULL) { in ZEND_FUNCTION() 1005 properties = Z_OBJ_HT_P(obj)->get_properties(obj TSRMLS_CC); in ZEND_FUNCTION()
|
H A D | zend_operators.c | 709 } else if (Z_OBJ_HT_P(op)->get_properties) { in convert_to_array() 710 HashTable *obj_ht = Z_OBJ_HT_P(op)->get_properties(op TSRMLS_CC); in convert_to_array()
|
H A D | zend.c | 371 if (Z_OBJ_HANDLER_P(expr, get_properties)) { in zend_print_flat_zval_r()
|
H A D | zend_API.h | 755 …IS_ARRAY ? Z_ARRVAL_P(p) : ((Z_TYPE_P(p)==IS_OBJECT ? Z_OBJ_HT_P(p)->get_properties((p) TSRMLS_CC)…
|
/PHP-5.6/ext/spl/ |
H A D | spl_array.c | 1163 zend_object_get_properties_t handler = Z_OBJ_HANDLER_PP(array, get_properties); in spl_array_set_array() 1164 if ((handler != std_object_handlers.get_properties && handler != spl_array_get_properties) in spl_array_set_array() 1988 spl_handler_ArrayObject.get_properties = spl_array_get_properties; in PHP_MINIT_FUNCTION()
|
H A D | spl_fixedarray.c | 1150 spl_handler_SplFixedArray.get_properties = spl_fixedarray_object_get_properties; in PHP_MINIT_FUNCTION()
|
H A D | spl_observer.c | 392 return std_object_handlers.get_properties(obj TSRMLS_CC); in spl_object_storage_get_gc()
|
/PHP-5.6/ext/reflection/ |
H A D | php_reflection.c | 574 if (obj && Z_OBJ_HT_P(obj)->get_properties) { in _class_string() 576 HashTable *properties = Z_OBJ_HT_P(obj)->get_properties(obj TSRMLS_CC); in _class_string() 3934 …if (zend_hash_exists(Z_OBJ_HT_P(intern->obj)->get_properties(intern->obj TSRMLS_CC), name, name_le… in ZEND_METHOD() 4055 if (intern->obj && (filter & ZEND_ACC_PUBLIC) != 0 && Z_OBJ_HT_P(intern->obj)->get_properties) { in ZEND_METHOD() 4056 HashTable *properties = Z_OBJ_HT_P(intern->obj)->get_properties(intern->obj TSRMLS_CC); in ZEND_METHOD() 4889 …operty_info == NULL && Z_TYPE_P(classname) == IS_OBJECT && Z_OBJ_HT_P(classname)->get_properties) { in ZEND_METHOD() 4890 …if (zend_hash_exists(Z_OBJ_HT_P(classname)->get_properties(classname TSRMLS_CC), name_str, name_le… in ZEND_METHOD()
|
/PHP-5.6/ |
H A D | .gdbinit | 231 if $handlers->get_properties == &zend_std_get_properties
|
H A D | NEWS | 5293 when get_properties returns a hash table with (inaccessible) dynamic
|
/PHP-5.6/ext/date/ |
H A D | php_date.c | 2036 date_object_handlers_date.get_properties = date_object_get_properties; in date_register_classes() 2061 date_object_handlers_immutable.get_properties = date_object_get_properties; in date_register_classes() 2070 date_object_handlers_timezone.get_properties = date_object_get_properties_timezone; in date_register_classes() 2098 date_object_handlers_interval.get_properties = date_object_get_properties_interval; in date_register_classes() 2110 date_object_handlers_period.get_properties = date_object_get_properties_period; in date_register_classes()
|
/PHP-5.6/ext/snmp/ |
H A D | snmp.c | 2409 php_snmp_object_handlers.get_properties = php_snmp_get_properties; in PHP_MINIT_FUNCTION()
|
/PHP-5.6/ext/zip/ |
H A D | php_zip.c | 3051 zip_object_handlers.get_properties = php_zip_get_properties; in PHP_MINIT_FUNCTION()
|
Completed in 138 milliseconds