Searched refs:writeobj (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 497 ZVAL_NULL(writeobj); 531 php_com_zval_from_variant(writeobj, &v, obj->code_page TSRMLS_CC); 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 1771 INIT_PZVAL(writeobj); 1772 ZVAL_BOOL(writeobj, node != NULL || zend_hash_num_elements(prop_hash) > 0); 1797 if (readobj == writeobj) { 1798 INIT_PZVAL(writeobj); 1802 rv = cast_object(writeobj, type, (char *)contents TSRMLS_CC);
|
| /PHP_5_3/Zend/ |
| H A D | zend_object_handlers.h | 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 1292 INIT_PZVAL(writeobj); 1293 if (readobj == writeobj) { 1296 ZVAL_ZVAL(writeobj, retval, 1, 1); 1297 if (Z_TYPE_P(writeobj) != type) { 1298 convert_to_explicit_type(writeobj, type); 1303 INIT_PZVAL(writeobj); 1304 if (readobj == writeobj) { 1307 ZVAL_EMPTY_STRING(writeobj); 1314 INIT_PZVAL(writeobj); [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 1878 return std_object_handlers.cast_object(readobj, writeobj, type TSRMLS_CC); 1884 if (readobj == writeobj) { 1890 ZVAL_ZVAL(writeobj, retval_ptr, 0, 0); 1892 ZVAL_STRINGL(writeobj, intern->file_name, intern->file_name_len, 1); 1896 if (readobj == writeobj) { 1902 ZVAL_ZVAL(writeobj, retval_ptr, 0, 0); 1904 ZVAL_STRING(writeobj, intern->u.dir.entry.d_name, 1); 1909 if (readobj == writeobj) { 1912 ZVAL_NULL(writeobj); [all...] |
Completed in 17 milliseconds