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.c343 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()
304 ZVAL_BOOL(writeobj, mpz_sgn(gmpnum) != 0); in gmp_cast_object()
/php-src/ext/simplexml/
H A Dsimplexml.c54 static zend_result sxe_object_cast_ex(zend_object *readobj, zval *writeobj, int type);
1822 static zend_result sxe_object_cast_ex(zend_object *readobj, zval *writeobj, int type) in sxe_object_cast_ex() argument
1835 ZVAL_TRUE(writeobj); in sxe_object_cast_ex()
1837 ZVAL_BOOL(writeobj, !sxe_prop_is_empty(readobj)); in sxe_object_cast_ex()
1864 rv = cast_object(writeobj, type, (char *)contents); in sxe_object_cast_ex()
1875 static zend_result sxe_object_cast(zend_object *readobj, zval *writeobj, int type) in sxe_object_cast() argument
1878 && zend_std_cast_object_tostring(readobj, writeobj, IS_STRING) == SUCCESS in sxe_object_cast()
1883 return sxe_object_cast_ex(readobj, writeobj, type); in sxe_object_cast()
/php-src/Zend/
H A Dzend_object_handlers.h259 ZEND_API zend_result zend_std_cast_object_tostring(zend_object *object, zval *writeobj, int type);
H A Dzend_object_handlers.c2327 ZEND_API zend_result zend_std_cast_object_tostring(zend_object *readobj, zval *writeobj, int type) … in zend_std_cast_object_tostring() argument
2338 ZVAL_COPY_VALUE(writeobj, &retval); in zend_std_cast_object_tostring()
2349 ZVAL_TRUE(writeobj); in zend_std_cast_object_tostring()
/php-src/ext/ffi/
H A Dffi.c1158 ZVAL_DOUBLE(writeobj, *(float*)ptr); in zend_ffi_cdata_cast_object()
1169 ZVAL_LONG(writeobj, *(uint8_t*)ptr); in zend_ffi_cdata_cast_object()
1172 ZVAL_LONG(writeobj, *(int8_t*)ptr); in zend_ffi_cdata_cast_object()
1178 ZVAL_LONG(writeobj, *(int16_t*)ptr); in zend_ffi_cdata_cast_object()
1184 ZVAL_LONG(writeobj, *(int32_t*)ptr); in zend_ffi_cdata_cast_object()
1190 ZVAL_LONG(writeobj, *(int64_t*)ptr); in zend_ffi_cdata_cast_object()
1193 ZVAL_BOOL(writeobj, *(uint8_t*)ptr); in zend_ffi_cdata_cast_object()
1196 ZVAL_CHAR(writeobj, *(char*)ptr); in zend_ffi_cdata_cast_object()
1203 ZVAL_NULL(writeobj); in zend_ffi_cdata_cast_object()
1213 convert_to_string(writeobj); in zend_ffi_cdata_cast_object()
[all …]

Completed in 43 milliseconds