Searched refs:has_set_exists (Results 1 – 7 of 7) sorted by relevance
/PHP-7.4/Zend/ |
H A D | zend_object_handlers.h | 81 typedef int (*zend_object_has_property_t)(zval *object, zval *member, int has_set_exists, void **ca… 215 ZEND_API int zend_std_has_property(zval *object, zval *member, int has_set_exists, void **cache_slo…
|
H A D | zend_object_handlers.c | 1690 ZEND_API int zend_std_has_property(zval *object, zval *member, int has_set_exists, void **cache_slo… in zend_std_has_property() argument 1743 if (has_set_exists == ZEND_PROPERTY_NOT_EMPTY) { in zend_std_has_property() 1745 } else if (has_set_exists < ZEND_PROPERTY_NOT_EMPTY) { in zend_std_has_property() 1746 ZEND_ASSERT(has_set_exists == ZEND_PROPERTY_ISSET); in zend_std_has_property() 1750 ZEND_ASSERT(has_set_exists == ZEND_PROPERTY_EXISTS); in zend_std_has_property() 1762 if ((has_set_exists != ZEND_PROPERTY_EXISTS) && zobj->ce->__isset) { in zend_std_has_property() 1777 if (has_set_exists == ZEND_PROPERTY_NOT_EMPTY && result) { in zend_std_has_property()
|
H A D | zend_closures.c | 456 static ZEND_COLD int zend_closure_has_property(zval *object, zval *member, int has_set_exists, void… in zend_closure_has_property() argument 458 if (has_set_exists != ZEND_PROPERTY_EXISTS) { in zend_closure_has_property()
|
/PHP-7.4/ext/mysqli/ |
H A D | mysqli.c | 392 static int mysqli_object_has_property(zval *object, zval *member, int has_set_exists, void **cache_… in mysqli_object_has_property() argument 399 switch (has_set_exists) { in mysqli_object_has_property() 425 ret = zend_std_has_property(object, member, has_set_exists, cache_slot); in mysqli_object_has_property()
|
/PHP-7.4/ext/spl/ |
H A D | spl_array.c | 906 static int spl_array_has_property(zval *object, zval *member, int has_set_exists, void **cache_slot… in spl_array_has_property() argument 912 return spl_array_has_dimension(object, member, has_set_exists); in spl_array_has_property() 914 return zend_std_has_property(object, member, has_set_exists, cache_slot); in spl_array_has_property()
|
/PHP-7.4/ext/snmp/ |
H A D | snmp.c | 1996 static int php_snmp_has_property(zval *object, zval *member, int has_set_exists, void **cache_slot) in php_snmp_has_property() argument 2003 switch (has_set_exists) { in php_snmp_has_property() 2025 ret = zend_std_has_property(object, member, has_set_exists, cache_slot); in php_snmp_has_property()
|
/PHP-7.4/ext/ffi/ |
H A D | ffi.c | 4742 static ZEND_COLD int zend_fake_has_property(zval *object, zval *member, int has_set_exists, void **… in zend_fake_has_property() argument 4838 static ZEND_COLD int zend_ffi_free_has_property(zval *object, zval *member, int has_set_exists, voi… in zend_ffi_free_has_property() argument
|
Completed in 47 milliseconds