Searched refs:readobj (Results 1 - 7 of 7) sorted by relevance

/PHP_TRUNK/ext/com_dotnet/
H A Dcom_handlers.c489 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 Dcom_saproxy.c358 static int saproxy_object_cast(zval *readobj, zval *writeobj, int type TSRMLS_DC) argument
/PHP_TRUNK/ext/simplexml/
H A Dsimplexml.c1798 static int sxe_object_cast(zval *readobj, zval *writeobj, int type TSRMLS_DC) argument
1806 sxe = php_sxe_fetch_object(readobj TSRMLS_CC);
1810 prop_hash = sxe_get_prop_hash(readobj, 1 TSRMLS_CC);
1837 if (readobj == writeobj) {
1839 zval_dtor(readobj);
/PHP_TRUNK/ext/spl/
H A Dspl_directory.c1868 static int spl_filesystem_object_cast(zval *readobj, zval *writeobj, int type TSRMLS_DC) argument
1870 spl_filesystem_object *intern = (spl_filesystem_object*)zend_object_store_get_object(readobj TSRMLS_CC);
1873 if (Z_OBJCE_P(readobj)->__tostring) {
1874 return std_object_handlers.cast_object(readobj, writeobj, type TSRMLS_CC);
1880 if (readobj == writeobj) {
1885 zval_dtor(readobj);
1892 if (readobj == writeobj) {
1897 zval_dtor(readobj);
1905 if (readobj == writeobj) {
1906 zval_dtor(readobj);
[all...]
/PHP_TRUNK/Zend/
H A Dzend_object_handlers.c1528 ZEND_API int zend_std_cast_object_tostring(zval *readobj, zval *writeobj, int type TSRMLS_DC) /* {{{ */ argument
1535 ce = Z_OBJCE_P(readobj);
1537 (zend_call_method_with_0_params(&readobj, ce, &ce->__tostring, "__tostring", &retval) || EG(exception))) {
1548 if (readobj == writeobj) {
1549 zval_dtor(readobj);
1559 if (readobj == writeobj) {
1560 zval_dtor(readobj);
1573 ce = Z_OBJCE_P(readobj);
1576 if (readobj == writeobj) {
1577 zval_dtor(readobj);
[all...]
H A Dzend_object_handlers.h107 typedef int (*zend_object_cast_t)(zval *readobj, zval *retval, int type TSRMLS_DC);
165 ZEND_API int zend_std_cast_object_tostring(zval *readobj, zval *writeobj, int type TSRMLS_DC);
/PHP_TRUNK/ext/gmp/
H A Dgmp.c542 static int gmp_cast_object(zval *readobj, zval *writeobj, int type TSRMLS_DC) /* {{{ */ argument
547 gmpnum = GET_GMP_FROM_ZVAL(readobj);
552 gmpnum = GET_GMP_FROM_ZVAL(readobj);
557 gmpnum = GET_GMP_FROM_ZVAL(readobj);

Completed in 25 milliseconds