Searched refs:writeobj (Results 1 – 6 of 6) sorted by relevance
/PHP-5.4/Zend/ |
H A D | zend_object_handlers.c | 1540 INIT_PZVAL(writeobj); in zend_std_cast_object_tostring() 1551 INIT_PZVAL(writeobj); in zend_std_cast_object_tostring() 1562 INIT_PZVAL(writeobj); in zend_std_cast_object_tostring() 1563 ZVAL_BOOL(writeobj, 1); in zend_std_cast_object_tostring() 1568 INIT_PZVAL(writeobj); in zend_std_cast_object_tostring() 1569 if (readobj == writeobj) { in zend_std_cast_object_tostring() 1572 ZVAL_LONG(writeobj, 1); in zend_std_cast_object_tostring() 1577 INIT_PZVAL(writeobj); in zend_std_cast_object_tostring() 1578 if (readobj == writeobj) { in zend_std_cast_object_tostring() 1581 ZVAL_DOUBLE(writeobj, 1); in zend_std_cast_object_tostring() [all …]
|
H A D | zend_object_handlers.h | 160 ZEND_API int zend_std_cast_object_tostring(zval *readobj, zval *writeobj, int type TSRMLS_DC);
|
/PHP-5.4/ext/com_dotnet/ |
H A D | com_handlers.c | 489 static int com_object_cast(zval *readobj, zval *writeobj, int type TSRMLS_DC) in com_object_cast() argument 497 ZVAL_NULL(writeobj); in com_object_cast() 531 php_com_zval_from_variant(writeobj, &v, obj->code_page TSRMLS_CC); in com_object_cast() 540 return zend_std_cast_object_tostring(readobj, writeobj, type TSRMLS_CC); in com_object_cast()
|
H A D | com_saproxy.c | 358 static int saproxy_object_cast(zval *readobj, zval *writeobj, int type TSRMLS_DC) in saproxy_object_cast() argument
|
/PHP-5.4/ext/spl/ |
H A D | spl_directory.c | 1882 static int spl_filesystem_object_cast(zval *readobj, zval *writeobj, int type TSRMLS_DC) in spl_filesystem_object_cast() argument 1888 return std_object_handlers.cast_object(readobj, writeobj, type TSRMLS_CC); in spl_filesystem_object_cast() 1894 if (readobj == writeobj) { in spl_filesystem_object_cast() 1900 ZVAL_ZVAL(writeobj, retval_ptr, 0, 0); in spl_filesystem_object_cast() 1902 ZVAL_STRINGL(writeobj, intern->file_name, intern->file_name_len, 1); in spl_filesystem_object_cast() 1906 if (readobj == writeobj) { in spl_filesystem_object_cast() 1912 ZVAL_ZVAL(writeobj, retval_ptr, 0, 0); in spl_filesystem_object_cast() 1914 ZVAL_STRING(writeobj, intern->u.dir.entry.d_name, 1); in spl_filesystem_object_cast() 1919 if (readobj == writeobj) { in spl_filesystem_object_cast() 1922 ZVAL_NULL(writeobj); in spl_filesystem_object_cast()
|
/PHP-5.4/ext/simplexml/ |
H A D | simplexml.c | 1804 static int sxe_object_cast(zval *readobj, zval *writeobj, int type TSRMLS_DC) in sxe_object_cast() argument 1817 INIT_PZVAL(writeobj); in sxe_object_cast() 1818 ZVAL_BOOL(writeobj, node != NULL || zend_hash_num_elements(prop_hash) > 0); in sxe_object_cast() 1843 if (readobj == writeobj) { in sxe_object_cast() 1844 INIT_PZVAL(writeobj); in sxe_object_cast() 1848 rv = cast_object(writeobj, type, (char *)contents TSRMLS_CC); in sxe_object_cast()
|
Completed in 39 milliseconds