Home
last modified time | relevance | path

Searched refs:object (Results 1 – 25 of 1987) sorted by last modified time

12345678910>>...80

/PHP-7.4/
H A DNEWS532 . Fixed bug #80411 (References to null-serialized object break serialize()).
608 . Fixed bug #80186 (Segfault when iterating over FFI object). (Nikita)
901 . Fixed bug #79477 (casting object into array creates references). (Nikita)
931 . Fixed bug #79528 (Different object of the same xml between 7.4.5 and
1363 . Fixed bug #78379 (Cast to object confuses GC, causes crash). (Dmitry)
1376 . Fixed bug #78531 (Crash when using undefined variable as object). (Dmitry)
1862 . Fixed bug #78379 (Cast to object confuses GC, causes crash). (Dmitry)
2561 . Fixed bug #68406 (calling var_dump on a DateTimeZone object modifies it).
2599 . Export internal structures and accessor helpers for GMP object. (Sara)
2752 . Fixed bug #50675 (SoapClient can't handle object references correctly).
/PHP-7.4/ext/pgsql/
H A Dpgsql.c2831 fci.object = Z_OBJ_P(return_value);
2852 fcc.object = Z_OBJ_P(return_value);
/PHP-7.4/ext/pcre/
H A Dphp_pcre.c2416 fci.object = NULL; in PHP_FUNCTION()
2448 fci.object = NULL; in PHP_FUNCTION()
/PHP-7.4/Zend/
H A Dzend_closures.c176 fci_cache.object = fci.object = newobj; in ZEND_METHOD()
272 fcc.object = fci.object = Z_OBJ_P(ZEND_THIS); in ZEND_NAMED_FUNCTION()
294 if (fcc.object && fcc.object->ce == zend_ce_closure in zend_create_closure_from_callable()
296 ZVAL_OBJ(return_value, fcc.object); in zend_create_closure_from_callable()
297 GC_ADDREF(fcc.object); in zend_create_closure_from_callable()
326 if (fcc.object) { in zend_create_closure_from_callable()
327 ZVAL_OBJ(&instance, fcc.object); in zend_create_closure_from_callable()
385 zend_closure *closure = (zend_closure *)object; in zend_get_closure_invoke_method()
428 return zend_get_closure_invoke_method(*object); in zend_closure_get_method()
431 return zend_std_get_method(object, method, key); in zend_closure_get_method()
[all …]
H A Dzend_vm_execute.h5767 object = Z_REFVAL_P(object); in ZEND_INIT_METHOD_CALL_SPEC_CONST_CONST_HANDLER()
22686 object = Z_REFVAL_P(object); in ZEND_ASSIGN_OBJ_SPEC_VAR_CONST_OP_DATA_CONST_HANDLER()
22810 object = Z_REFVAL_P(object); in ZEND_ASSIGN_OBJ_SPEC_VAR_CONST_OP_DATA_TMP_HANDLER()
22934 object = Z_REFVAL_P(object); in ZEND_ASSIGN_OBJ_SPEC_VAR_CONST_OP_DATA_VAR_HANDLER()
23058 object = Z_REFVAL_P(object); in ZEND_ASSIGN_OBJ_SPEC_VAR_CONST_OP_DATA_CV_HANDLER()
24937 object = Z_REFVAL_P(object); in ZEND_ASSIGN_OBJ_SPEC_VAR_TMPVAR_OP_DATA_CONST_HANDLER()
25061 object = Z_REFVAL_P(object); in ZEND_ASSIGN_OBJ_SPEC_VAR_TMPVAR_OP_DATA_TMP_HANDLER()
25185 object = Z_REFVAL_P(object); in ZEND_ASSIGN_OBJ_SPEC_VAR_TMPVAR_OP_DATA_VAR_HANDLER()
25309 object = Z_REFVAL_P(object); in ZEND_ASSIGN_OBJ_SPEC_VAR_TMPVAR_OP_DATA_CV_HANDLER()
28567 object = Z_REFVAL_P(object); in ZEND_ASSIGN_OBJ_SPEC_VAR_CV_OP_DATA_CONST_HANDLER()
[all …]
H A Dzend_vm_def.h1070 zval *object; variable
1091 object = Z_REFVAL_P(object);
1332 zval *object; variable
1350 object = Z_REFVAL_P(object);
1398 zval *object; variable
1416 object = Z_REFVAL_P(object);
2462 object = Z_REFVAL_P(object);
3474 zval *object; variable
3519 object = Z_REFVAL_P(object);
7641 zval *object; variable
[all …]
H A Dzend_API.c1096 zval **object; in zend_parse_method_parameters() local
1135 zval **object; in zend_parse_method_parameters_ex() local
2977 if (object && in zend_is_callable_check_class()
2980 fcc->object = object; in zend_is_callable_check_class()
2986 fcc->called_scope = fcc->object ? fcc->object->ce : ce; in zend_is_callable_check_class()
3183 fcc->object = object; in zend_is_callable_check_func()
3280 if (object) { in zend_get_callable_name_ex()
3359 if (object) { in zend_is_callable_impl()
3360 fcc->object = object; in zend_is_callable_impl()
3502 fci->object = fcc->object; in zend_fcall_info_init()
[all …]
/PHP-7.4/ext/standard/
H A Darray.c2571 zend_object *object = zend_get_this_object(EG(current_execute_data)); local
2572 if (object) {
2573 GC_ADDREF(object);
2574 ZVAL_OBJ(&data, object);
/PHP-7.4/ext/libxml/
H A Dlibxml.c155 if (object->properties) { in php_libxml_clear_object()
156 object->properties = NULL; in php_libxml_clear_object()
287 zval_ptr_dtor(object); in _php_libxml_destroy_fci()
288 ZVAL_UNDEF(object); in _php_libxml_destroy_fci()
1181 ZVAL_OBJ(&LIBXML(entity_loader).object, fci.object); in PHP_FUNCTION()
1236 ce = Z_OBJCE_P(object); in php_libxml_import_node()
1284 if (object != NULL && object->node != NULL) { in php_libxml_decrement_node_ptr()
1293 object->node = NULL; in php_libxml_decrement_node_ptr()
1321 if (object != NULL && object->document != NULL) { in php_libxml_decrement_doc_ref()
1384 if (object != NULL && object->node != NULL) { in php_libxml_node_decrement_resource()
[all …]
/PHP-7.4/ext/date/tests/
H A Dbug53437_var3.phpt15 object(DateInterval)#%d (16) {
H A Dbug53437_var5.phpt15 object(DateInterval)#%d (16) {
H A Dbug73091.phpt2 Bug #73091 (Unserializing DateInterval object may lead to __toString invocation)
15 object(DateInterval)#%d (16) {
H A Dbug79015.phpt9 object(DateInterval)#%d (16) {
/PHP-7.4/ext/standard/tests/serialize/
H A Dbug69425.phpt29 object(DateInterval)#1 (16) {
/PHP-7.4/ext/date/
H A Dphp_date.c1946 if (object->end) { in date_period_it_has_more()
1947 return object->current->sse < object->end->sse ? SUCCESS : FAILURE; in date_period_it_has_more()
2038 Z_ADDREF_P(object); in date_object_period_get_iterator()
2041 iterator->object = Z_PHPPERIOD_P(object); in date_object_period_get_iterator()
2664 return object; in php_date_instantiate()
3326 Z_ADDREF_P(object); in PHP_FUNCTION()
3535 zval *object; in PHP_FUNCTION() local
3622 zval *object; in PHP_FUNCTION() local
3672 zval *object; in PHP_FUNCTION() local
3726 zval *object; in PHP_FUNCTION() local
[all …]
H A Dphp_date.h226 PHPAPI zval *php_date_instantiate(zend_class_entry *pce, zval *object);
/PHP-7.4/ext/mysqli/tests/
H A Dbug79375.phpt131 // try it again using fetch_row on a result object
/PHP-7.4/ext/mysqli/
H A Dmysqli.c228 mysqli_objects_free_storage(object); in mysqli_link_free_storage()
235 mysqli_objects_free_storage(object); in mysqli_driver_free_storage()
250 mysqli_objects_free_storage(object); in mysqli_stmt_free_storage()
264 mysqli_objects_free_storage(object); in mysqli_result_free_storage()
279 mysqli_objects_free_storage(object); in mysqli_warning_free_storage()
311 obj = Z_MYSQLI_P(object); in mysqli_read_property()
360 obj = Z_MYSQLI_P(object); in mysqli_write_property()
394 mysqli_object *obj = Z_MYSQLI_P(object); in mysqli_object_has_property()
433 mysqli_object *obj = Z_MYSQLI_P(object); in mysqli_object_get_debug_info()
1290 fci.object = Z_OBJ_P(return_value); in php_mysqli_fetch_into_hash()
[all …]
/PHP-7.4/ext/zip/
H A Dphp_zip.c373 #define ZIP_FROM_OBJECT(intern, object) \ argument
375 ze_zip_object *obj = Z_ZIP_P(object); \
888 obj = Z_ZIP_P(object); in php_zip_get_property_ptr_ptr()
923 obj = Z_ZIP_P(object); in php_zip_read_property()
963 obj = Z_ZIP_P(object); in php_zip_has_property()
984 retval = zend_std_has_property(object, member, type, cache_slot); in php_zip_has_property()
999 return zend_std_get_properties(object); in php_zip_get_gc()
1003 static HashTable *php_zip_get_properties(zval *object)/* {{{ */ in php_zip_get_properties() argument
1010 obj = Z_ZIP_P(object); in php_zip_get_properties()
1011 props = zend_std_get_properties(object); in php_zip_get_properties()
[all …]
/PHP-7.4/ext/spl/
H A Dspl_fixedarray.c351 intern = Z_SPLFIXEDARRAY_P(object); in spl_fixedarray_object_read_dimension()
412 intern = Z_SPLFIXEDARRAY_P(object); in spl_fixedarray_object_write_dimension()
548 zval *object = ZEND_THIS; in SPL_METHOD() local
606 zval *object = ZEND_THIS; in SPL_METHOD() local
717 zval *object = ZEND_THIS; in SPL_METHOD() local
733 zval *object = ZEND_THIS; in SPL_METHOD() local
838 object->current = 0; in spl_fixedarray_it_rewind()
851 if (object->current >= 0 && object->current < object->array.size) { in spl_fixedarray_it_valid()
888 ZVAL_LONG(key, object->current); in spl_fixedarray_it_get_current_key()
901 object->current++; in spl_fixedarray_it_move_forward()
[all …]
/PHP-7.4/ext/xml/
H A Dxml.c94 zval object; local
527 if (!Z_ISUNDEF(parser->object)) { in xml_parser_dtor()
528 zval_ptr_dtor(&parser->object); in xml_parser_dtor()
568 fci.object = Z_OBJ(parser->object); in xml_call_handler()
1201 if (!Z_ISUNDEF(parser->object)) { in PHP_FUNCTION()
1202 zval_ptr_dtor(&parser->object); in PHP_FUNCTION()
1209 ZVAL_OBJ(&parser->object, Z_OBJ_P(mythis)); in PHP_FUNCTION()
/PHP-7.4/ext/spl/tests/
H A DSplFixedArray_setSize_destruct.phpt23 object(SplFixedArray)#1 (1) {
27 object(SplFixedArray)#1 (1) {
33 object(SplFixedArray)#1 (5) {
43 object(HasDestructor)#2 (0) {
46 object(SplFixedArray)#1 (4) {
/PHP-7.4/ext/curl/
H A Dinterface.c1504 fci.object = NULL; in curl_write()
1554 fci.object = NULL; in curl_fnmatch()
1609 fci.object = NULL; in curl_progress()
1666 fci.object = NULL; in curl_read()
1729 fci.object = NULL; in curl_write_header()
/PHP-7.4/ext/phar/
H A Dphar_object.c1090 static void phar_spl_foreign_dtor(spl_filesystem_object *object) /* {{{ */ in phar_spl_foreign_dtor() argument
1092 phar_archive_data *phar = (phar_archive_data *) object->oth; in phar_spl_foreign_dtor()
1098 object->oth = NULL; in phar_spl_foreign_dtor()
/PHP-7.4/Zend/tests/
H A Dunset_prop_recursion.phpt23 object(Node)#1 (2) {
29 object(Node)#2 (2) {
37 object(Node)#3 (2) {
46 object(Node)#2 (2) {
48 object(Node)#1 (2) {
56 object(Node)#3 (2) {
58 object(Node)#1 (2) {

Completed in 387 milliseconds

12345678910>>...80