Searched refs:readobj (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_3/ext/com_dotnet/ |
| H A D | com_handlers.c | 489 static int com_object_cast(zval *readobj, zval *writeobj, int type TSRMLS_DC) argument 496 obj = CDNO_FETCH(readobj); 540 return zend_std_cast_object_tostring(readobj, writeobj, type TSRMLS_CC);
|
| H A D | com_saproxy.c | 358 static int saproxy_object_cast(zval *readobj, zval *writeobj, int type TSRMLS_DC) argument
|
| /PHP_5_3/ext/simplexml/ |
| H A D | simplexml.c | 1758 static int sxe_object_cast(zval *readobj, zval *writeobj, int type TSRMLS_DC) argument 1766 sxe = php_sxe_fetch_object(readobj TSRMLS_CC); 1770 prop_hash = sxe_get_prop_hash(readobj, 1 TSRMLS_CC); 1797 if (readobj == writeobj) { 1799 zval_dtor(readobj);
|
| /PHP_5_3/Zend/ |
| H A D | zend_object_handlers.h | 105 typedef int (*zend_object_cast_t)(zval *readobj, zval *retval, int type TSRMLS_DC); 153 ZEND_API int zend_std_cast_object_tostring(zval *readobj, zval *writeobj, int type TSRMLS_DC);
|
| H A D | zend_object_handlers.c | 1273 ZEND_API int zend_std_cast_object_tostring(zval *readobj, zval *writeobj, int type TSRMLS_DC) /* {{{ */ argument 1280 ce = Z_OBJCE_P(readobj); 1282 (zend_call_method_with_0_params(&readobj, ce, &ce->__tostring, "__tostring", &retval) || EG(exception))) { 1293 if (readobj == writeobj) { 1294 zval_dtor(readobj); 1304 if (readobj == writeobj) { 1305 zval_dtor(readobj); 1318 ce = Z_OBJCE_P(readobj); 1321 if (readobj == writeobj) { 1322 zval_dtor(readobj); [all...] |
| /PHP_5_3/ext/spl/ |
| H A D | spl_directory.c | 1872 static int spl_filesystem_object_cast(zval *readobj, zval *writeobj, int type TSRMLS_DC) argument 1874 spl_filesystem_object *intern = (spl_filesystem_object*)zend_object_store_get_object(readobj TSRMLS_CC); 1877 if (Z_OBJCE_P(readobj)->__tostring) { 1878 return std_object_handlers.cast_object(readobj, writeobj, type TSRMLS_CC); 1884 if (readobj == writeobj) { 1889 zval_dtor(readobj); 1896 if (readobj == writeobj) { 1901 zval_dtor(readobj); 1909 if (readobj == writeobj) { 1910 zval_dtor(readobj); [all...] |
Completed in 15 milliseconds