Searched refs:guards (Results 1 – 4 of 4) sorted by relevance
/PHP-8.4/Zend/ |
H A D | zend_objects.c | 104 HashTable *guards; in zend_object_std_dtor() local 106 guards = Z_ARRVAL_P(p); in zend_object_std_dtor() 107 ZEND_ASSERT(guards != NULL); in zend_object_std_dtor() 108 zend_hash_destroy(guards); in zend_object_std_dtor() 109 FREE_HASHTABLE(guards); in zend_object_std_dtor()
|
H A D | zend_object_handlers.c | 597 HashTable *guards; in zend_get_property_guard() local 615 ALLOC_HASHTABLE(guards); in zend_get_property_guard() 616 zend_hash_init(guards, 8, NULL, zend_property_guard_dtor, 0); in zend_get_property_guard() 618 zend_hash_add_new_ptr(guards, str, in zend_get_property_guard() 621 ZVAL_ARR(zv, guards); in zend_get_property_guard() 624 guards = Z_ARRVAL_P(zv); in zend_get_property_guard() 625 ZEND_ASSERT(guards != NULL); in zend_get_property_guard() 626 zv = zend_hash_find(guards, member); in zend_get_property_guard() 639 return (uint32_t*)zend_hash_add_new_ptr(guards, member, ptr); in zend_get_property_guard()
|
/PHP-8.4/ext/opcache/tests/jit/ |
H A D | rope_002.phpt | 2 JIT ROPE: 002 type guards are only checked for strings
|
/PHP-8.4/Zend/tests/ |
H A D | property_access_errors_for_guarded_properties.phpt | 2 Property access errors should be thrown for overloaded properties protected by recursion guards
|
Completed in 18 milliseconds