Home
last modified time | relevance | path

Searched refs:writeobj (Results 1 – 7 of 7) sorted by relevance

/php-src/ext/com_dotnet/
H A Dcom_handlers.c433 static zend_result com_object_cast(zend_object *readobj, zval *writeobj, int type) in com_object_cast() argument
441 ZVAL_NULL(writeobj); in com_object_cast()
482 php_com_zval_from_variant(writeobj, &v, obj->code_page); in com_object_cast()
491 return zend_std_cast_object_tostring(readobj, writeobj, type); in com_object_cast()
H A Dcom_saproxy.c335 static zend_result saproxy_object_cast(zend_object *readobj, zval *writeobj, int type) in saproxy_object_cast() argument
/php-src/ext/gmp/
H A Dgmp.c278 static zend_result gmp_cast_object(zend_object *readobj, zval *writeobj, int type) /* {{{ */ in gmp_cast_object() argument
284 gmp_strval(writeobj, gmpnum, 10); in gmp_cast_object()
288 ZVAL_LONG(writeobj, mpz_get_si(gmpnum)); in gmp_cast_object()
292 ZVAL_DOUBLE(writeobj, mpz_get_d(gmpnum)); in gmp_cast_object()
297 ZVAL_LONG(writeobj, mpz_get_si(gmpnum)); in gmp_cast_object()
299 ZVAL_DOUBLE(writeobj, mpz_get_d(gmpnum)); in gmp_cast_object()
/php-src/ext/simplexml/
H A Dsimplexml.c55 static zend_result sxe_object_cast_ex(zend_object *readobj, zval *writeobj, int type);
1791 static zend_result sxe_object_cast_ex(zend_object *readobj, zval *writeobj, int type) in sxe_object_cast_ex() argument
1804 ZVAL_TRUE(writeobj); in sxe_object_cast_ex()
1806 ZVAL_BOOL(writeobj, !sxe_prop_is_empty(readobj)); in sxe_object_cast_ex()
1833 rv = cast_object(writeobj, type, (char *)contents); in sxe_object_cast_ex()
1844 static zend_result sxe_object_cast(zend_object *readobj, zval *writeobj, int type) in sxe_object_cast() argument
1847 && zend_std_cast_object_tostring(readobj, writeobj, IS_STRING) == SUCCESS in sxe_object_cast()
1852 return sxe_object_cast_ex(readobj, writeobj, type); in sxe_object_cast()
/php-src/Zend/
H A Dzend_object_handlers.h214 ZEND_API zend_result zend_std_cast_object_tostring(zend_object *object, zval *writeobj, int type);
H A Dzend_object_handlers.c1915 ZEND_API zend_result zend_std_cast_object_tostring(zend_object *readobj, zval *writeobj, int type) … in zend_std_cast_object_tostring() argument
1926 ZVAL_COPY_VALUE(writeobj, &retval); in zend_std_cast_object_tostring()
1937 ZVAL_TRUE(writeobj); in zend_std_cast_object_tostring()
/php-src/ext/ffi/
H A Dffi.c1157 ZVAL_DOUBLE(writeobj, *(float*)ptr); in zend_ffi_cdata_cast_object()
1168 ZVAL_LONG(writeobj, *(uint8_t*)ptr); in zend_ffi_cdata_cast_object()
1171 ZVAL_LONG(writeobj, *(int8_t*)ptr); in zend_ffi_cdata_cast_object()
1177 ZVAL_LONG(writeobj, *(int16_t*)ptr); in zend_ffi_cdata_cast_object()
1183 ZVAL_LONG(writeobj, *(int32_t*)ptr); in zend_ffi_cdata_cast_object()
1189 ZVAL_LONG(writeobj, *(int64_t*)ptr); in zend_ffi_cdata_cast_object()
1192 ZVAL_BOOL(writeobj, *(uint8_t*)ptr); in zend_ffi_cdata_cast_object()
1195 ZVAL_CHAR(writeobj, *(char*)ptr); in zend_ffi_cdata_cast_object()
1202 ZVAL_NULL(writeobj); in zend_ffi_cdata_cast_object()
1212 convert_to_string(writeobj); in zend_ffi_cdata_cast_object()
[all …]

Completed in 58 milliseconds