Searched refs:readobj (Results 1 – 7 of 7) sorted by relevance
/php-src/ext/com_dotnet/ |
H A D | com_handlers.c | 433 static zend_result com_object_cast(zend_object *readobj, zval *writeobj, int type) in com_object_cast() argument 440 obj = (php_com_dotnet_object*) readobj; in com_object_cast() 491 return zend_std_cast_object_tostring(readobj, writeobj, type); in com_object_cast()
|
H A D | com_saproxy.c | 343 static zend_result saproxy_object_cast(zend_object *readobj, zval *writeobj, int type) in saproxy_object_cast() argument
|
/php-src/ext/gmp/ |
H A D | gmp.c | 278 static zend_result gmp_cast_object(zend_object *readobj, zval *writeobj, int type) /* {{{ */ in gmp_cast_object() argument 283 gmpnum = GET_GMP_OBJECT_FROM_OBJ(readobj)->num; in gmp_cast_object() 287 gmpnum = GET_GMP_OBJECT_FROM_OBJ(readobj)->num; in gmp_cast_object() 291 gmpnum = GET_GMP_OBJECT_FROM_OBJ(readobj)->num; in gmp_cast_object() 295 gmpnum = GET_GMP_OBJECT_FROM_OBJ(readobj)->num; in gmp_cast_object() 303 gmpnum = GET_GMP_OBJECT_FROM_OBJ(readobj)->num; in gmp_cast_object()
|
/php-src/ext/simplexml/ |
H A D | simplexml.c | 54 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 1830 sxe = php_sxe_fetch_object(readobj); in sxe_object_cast_ex() 1837 ZVAL_BOOL(writeobj, !sxe_prop_is_empty(readobj)); 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 D | zend_object_handlers.h | 193 typedef zend_result (*zend_object_cast_t)(zend_object *readobj, zval *retval, int type);
|
H A D | zend_object_handlers.c | 2327 ZEND_API zend_result zend_std_cast_object_tostring(zend_object *readobj, zval *writeobj, int type) … in zend_std_cast_object_tostring() argument 2331 zend_class_entry *ce = readobj->ce; in zend_std_cast_object_tostring() 2334 GC_ADDREF(readobj); in zend_std_cast_object_tostring() 2335 zend_call_known_instance_method_with_0_params(ce->__tostring, readobj, &retval); in zend_std_cast_object_tostring() 2336 zend_object_release(readobj); in zend_std_cast_object_tostring()
|
/php-src/ext/ffi/ |
H A D | ffi.c | 1147 static zend_result zend_ffi_cdata_cast_object(zend_object *readobj, zval *writeobj, int type) /* {{… in zend_ffi_cdata_cast_object() argument 1150 zend_ffi_cdata *cdata = (zend_ffi_cdata*)readobj; in zend_ffi_cdata_cast_object()
|
Completed in 45 milliseconds