Home
last modified time | relevance | path

Searched refs:rv (Results 51 – 75 of 87) sorted by relevance

1234

/PHP-8.3/ext/gd/libgd/
H A Dgd_jpeg.c153 void *rv; in gdImageJpegPtr() local
156 rv = gdDPExtractData(out, size); in gdImageJpegPtr()
158 rv = NULL; in gdImageJpegPtr()
162 return rv; in gdImageJpegPtr()
H A Dgd_gd2.c843 void *rv; in gdImageGd2Ptr() local
847 rv = gdDPExtractData(out, size); in gdImageGd2Ptr()
850 return rv; in gdImageGd2Ptr()
H A Dgd_bmp.c68 void *rv; in gdImageBmpPtr() local
72 rv = gdDPExtractData(out, size); in gdImageBmpPtr()
74 return rv; in gdImageBmpPtr()
/PHP-8.3/ext/snmp/
H A Dsnmp.c1686 …p_snmp_read_property(zend_object *object, zend_string *name, int type, void **cache_slot, zval *rv) in php_snmp_read_property() argument
1697 ret = hnd->read_func(obj, rv); in php_snmp_read_property()
1699 retval = rv; in php_snmp_read_property()
1704 retval = zend_std_read_property(object, name, type, cache_slot, rv); in php_snmp_read_property()
1748 zval rv; in php_snmp_has_property() local
1758 zval *value = php_snmp_read_property(object, name, BP_VAR_IS, cache_slot, &rv); in php_snmp_has_property()
1766 zval *value = php_snmp_read_property(object, name, BP_VAR_IS, cache_slot, &rv); in php_snmp_has_property()
1796 zval rv; in php_snmp_get_properties() local
1803 if (!hnd->read_func || hnd->read_func(obj, &rv) != SUCCESS) { in php_snmp_get_properties()
1804 ZVAL_NULL(&rv); in php_snmp_get_properties()
[all …]
/PHP-8.3/ext/opcache/jit/
H A Dzend_jit_helpers.c1570 zval rv, res; in zend_jit_assign_dim_op_helper() local
2591 zval rv, res; in _zend_jit_assign_op_overloaded_property() local
2608 if (z == &rv) { in _zend_jit_assign_op_overloaded_property()
2903 zval rv; in zend_jit_pre_inc_obj_helper() local
2925 if (z == &rv) { in zend_jit_pre_inc_obj_helper()
2973 zval rv; in zend_jit_pre_dec_obj_helper() local
2995 if (z == &rv) { in zend_jit_pre_dec_obj_helper()
3038 zval rv; in zend_jit_post_inc_obj_helper() local
3056 if (z == &rv) { in zend_jit_post_inc_obj_helper()
3099 zval rv; in zend_jit_post_dec_obj_helper() local
[all …]
/PHP-8.3/ext/fileinfo/libmagic/
H A Dreadcdf.c112 const char *rv = NULL; in cdf_app_to_mime() local
125 rv = nv[i].mime; in cdf_app_to_mime()
131 return rv; in cdf_app_to_mime()
H A Dencoding.c82 int rv = 1, ucs_type; in file_encoding() local
170 rv = 0; in file_encoding()
180 return rv; in file_encoding()
/PHP-8.3/ext/xsl/
H A Dxsltprocessor.c330 zval *cloneDocu, rv; in PHP_METHOD() local
369 cloneDocu = zend_std_read_property(Z_OBJ_P(id), member, BP_VAR_IS, NULL, &rv); in PHP_METHOD()
414 zval *doXInclude, rv; in php_xsl_apply_stylesheet() local
470 doXInclude = zend_std_read_property(Z_OBJ_P(id), member, BP_VAR_IS, NULL, &rv); in php_xsl_apply_stylesheet()
/PHP-8.3/ext/spl/
H A Dspl_heap.c491 zval rv; in spl_heap_object_count_elements() local
492 zend_call_method_with_0_params(object, intern->std.ce, &intern->fptr_count, "count", &rv); in spl_heap_object_count_elements()
493 if (!Z_ISUNDEF(rv)) { in spl_heap_object_count_elements()
494 *count = zval_get_long(&rv); in spl_heap_object_count_elements()
495 zval_ptr_dtor(&rv); in spl_heap_object_count_elements()
H A Dspl_dllist.c411 zval rv; in spl_dllist_object_count_elements() local
412 zend_call_method_with_0_params(object, intern->std.ce, &intern->fptr_count, "count", &rv); in spl_dllist_object_count_elements()
413 if (!Z_ISUNDEF(rv)) { in spl_dllist_object_count_elements()
414 *count = zval_get_long(&rv); in spl_dllist_object_count_elements()
415 zval_ptr_dtor(&rv); in spl_dllist_object_count_elements()
H A Dspl_directory.c619 HashTable *rv; in spl_filesystem_object_get_debug_info() local
628 rv = zend_array_dup(intern->std.properties); in spl_filesystem_object_get_debug_info()
637 zend_symtable_update(rv, pnstr, &tmp); in spl_filesystem_object_get_debug_info()
652 zend_symtable_update(rv, pnstr, &tmp); in spl_filesystem_object_get_debug_info()
666 zend_symtable_update(rv, pnstr, &tmp); in spl_filesystem_object_get_debug_info()
675 zend_symtable_update(rv, pnstr, &tmp); in spl_filesystem_object_get_debug_info()
681 zend_symtable_update(rv, pnstr, &tmp); in spl_filesystem_object_get_debug_info()
687 zend_symtable_update(rv, pnstr, &tmp); in spl_filesystem_object_get_debug_info()
692 zend_symtable_update(rv, pnstr, &tmp); in spl_filesystem_object_get_debug_info()
696 return rv; in spl_filesystem_object_get_debug_info()
/PHP-8.3/ext/com_dotnet/
H A Dcom_wrapper.c248 zval rv, *retval = NULL; in disp_invokeex() local
279 …property(Z_OBJCE(disp->object), Z_OBJ(disp->object), Z_STRVAL_P(name), Z_STRLEN_P(name)+1, 1, &rv); in disp_invokeex()
284 retval = &rv; in disp_invokeex()
/PHP-8.3/sapi/phpdbg/
H A Dphpdbg_prompt.c715 zval rv, tmp; in phpdbg_handle_exception() local
720 …d_property_ex(zend_get_exception_base(ex), ex, ZSTR_KNOWN(ZEND_STR_FILE), /* silent */ true, &rv)); in phpdbg_handle_exception()
721 …d_property_ex(zend_get_exception_base(ex), ex, ZSTR_KNOWN(ZEND_STR_LINE), /* silent */ true, &rv)); in phpdbg_handle_exception()
729 …property_ex(zend_get_exception_base(ex), ex, ZSTR_KNOWN(ZEND_STR_STRING), /* silent */ true, &rv)); in phpdbg_handle_exception()
1701 zval rv; in phpdbg_execute_ex() local
1702 …zend_get_exception_base(exception), exception, ZSTR_KNOWN(ZEND_STR_FILE), /* silent */ true, &rv)); in phpdbg_execute_ex()
1703 …zend_get_exception_base(exception), exception, ZSTR_KNOWN(ZEND_STR_LINE), /* silent */ true, &rv)); in phpdbg_execute_ex()
1704 …d_get_exception_base(exception), exception, ZSTR_KNOWN(ZEND_STR_MESSAGE), /* silent */ true, &rv)); in phpdbg_execute_ex()
/PHP-8.3/sapi/apache2handler/
H A Dsapi_apache2.c593 apr_status_t rv; in php_handler() local
740 rv = ap_pass_brigade(r->output_filters, brigade); in php_handler()
741 if (rv != APR_SUCCESS || r->connection->aborted) { in php_handler()
/PHP-8.3/ext/ffi/
H A Dffi.c590 ZVAL_CHAR(rv, *(char*)ptr); in zend_ffi_cdata_to_zval()
597 ZVAL_NULL(rv); in zend_ffi_cdata_to_zval()
615 ZVAL_OBJ(rv, &cdata->std); in zend_ffi_cdata_to_zval()
631 ZVAL_OBJ(rv, &cdata->std); in zend_ffi_cdata_to_zval()
691 ZVAL_LONG(rv, val); in zend_ffi_bit_field_to_zval()
1119 return rv; in zend_ffi_cdata_get()
1292 return rv; in zend_ffi_cdata_read_field()
1424 return rv; in zend_ffi_cdata_read_dim()
2511 ZVAL_OBJ(rv, &cdata->std); in zend_ffi_read_var()
2513 ZVAL_LONG(rv, sym->value); in zend_ffi_read_var()
[all …]
/PHP-8.3/sapi/litespeed/
H A Dlsapilib.c1013 int rv; in setUID_LVE() local
1024 if ( rv == -1 ) in setUID_LVE()
1046 rv = setgid(gid); in setUID_LVE()
1047 if (rv == -1) in setUID_LVE()
1055 if (rv == -1) in setUID_LVE()
1063 rv = setgroups(1, &gid); in setUID_LVE()
1064 if (rv == -1) in setUID_LVE()
1071 rv = chroot( pChroot ); in setUID_LVE()
1072 if ( rv == -1 ) in setUID_LVE()
1078 rv = setuid(uid); in setUID_LVE()
[all …]
H A Dlsapi_main.c290 ssize_t rv = LSAPI_ReadReqBody(buffer, (unsigned long long)count_bytes); in sapi_lsapi_read_post() local
291 return (rv >= 0) ? (size_t)rv : 0; in sapi_lsapi_read_post()
/PHP-8.3/ext/standard/tests/assert/
H A Dassert_variation.phpt36 var_dump($rv = ini_set("assert.callback","f2"));
43 var_dump($rv=assert_options(ASSERT_CALLBACK, "f3"));
/PHP-8.3/ext/soap/
H A Dphp_encoding.c1228 zval rv, arr, val, keepVal; in model_to_zval_any() local
1412 zval *redo_any = NULL, rv, arr; in to_zval_object_ex() local
1488 redo_any = get_zval_property(ret, "any", &rv); in to_zval_object_ex()
1518 if (!get_zval_property(ret, "any", &rv)) { in to_zval_object_ex()
1578 zval tmpVal, rv; in to_zval_object_ex() local
1630 zval rv; in model_to_xml_object() local
1716 zval rv; in model_to_xml_object() local
1718 data = get_zval_property(object, "any", &rv); in model_to_xml_object()
1849 zval rv; in to_xml_object() local
1874 zval rv; in to_xml_object() local
[all …]
/PHP-8.3/ext/zip/
H A Dphp_zip.c856 static zval *php_zip_property_reader(ze_zip_object *obj, zip_prop_handler *hnd, zval *rv) /* {{{ */ in php_zip_property_reader() argument
871 ZVAL_STRINGL(rv, (char *) retchar, len); in php_zip_property_reader()
873 ZVAL_EMPTY_STRING(rv); in php_zip_property_reader()
877 ZVAL_LONG(rv, retint); in php_zip_property_reader()
880 ZVAL_NULL(rv); in php_zip_property_reader()
883 return rv; in php_zip_property_reader()
927 …d_property(zend_object *object, zend_string *name, int type, void **cache_slot, zval *rv) /* {{{ */ in php_zip_read_property() argument
940 retval = php_zip_property_reader(obj, hnd, rv); in php_zip_read_property()
945 retval = zend_std_read_property(object, name, type, cache_slot, rv); in php_zip_read_property()
/PHP-8.3/ext/zlib/tests/
H A Dbug_52944_corrupted_data.inc60 …jIlZNnI42sFtGfRc4YPX072or35+tdiy8GEEex//Y0epreM/K43uRCCbkqs2rVu56xQ4OHfUi5KUYJWnzXgx4g5+x9Pk///rv'.
/PHP-8.3/ext/curl/
H A Dinterface.c1428 zval *prop, rv; in build_mime_structure_from_hash() local
1438 …erty_ex(curl_CURLFile_class, Z_OBJ_P(current), ZSTR_KNOWN(ZEND_STR_NAME), /* silent */ false, &rv); in build_mime_structure_from_hash()
1449 …prop = zend_read_property(curl_CURLFile_class, Z_OBJ_P(current), "mime", sizeof("mime")-1, 0, &rv); in build_mime_structure_from_hash()
1454 …end_read_property(curl_CURLFile_class, Z_OBJ_P(current), "postname", sizeof("postname")-1, 0, &rv); in build_mime_structure_from_hash()
1509 zval *prop, rv; in build_mime_structure_from_hash() local
1512 …ad_property(curl_CURLStringFile_class, Z_OBJ_P(current), "postname", sizeof("postname")-1, 0, &rv); in build_mime_structure_from_hash()
1522 … zend_read_property(curl_CURLStringFile_class, Z_OBJ_P(current), "mime", sizeof("mime")-1, 0, &rv); in build_mime_structure_from_hash()
1532 … zend_read_property(curl_CURLStringFile_class, Z_OBJ_P(current), "data", sizeof("data")-1, 0, &rv); in build_mime_structure_from_hash()
/PHP-8.3/ext/zlib/
H A Dzlib.c529 int encoding, rv; in PHP_FUNCTION() local
567 rv = php_zlib_output_handler_ex(ZLIBG(ob_gzhandler), &ctx); in PHP_FUNCTION()
569 if (SUCCESS != rv) { in PHP_FUNCTION()
/PHP-8.3/sapi/cli/
H A Dphp_cli.c1085 zval rv; in do_cli() local
1086 …operty_ex(zend_ce_exception, EG(exception), ZSTR_KNOWN(ZEND_STR_MESSAGE), /* silent */ false, &rv); in do_cli()
/PHP-8.3/ext/session/
H A Dsession.c932 zval *current, rv; in PS_SERIALIZER_DECODE_FUNC() local
949 ZVAL_PTR(&rv, current); in PS_SERIALIZER_DECODE_FUNC()
950 php_set_session_var(name, &rv, &var_hash); in PS_SERIALIZER_DECODE_FUNC()
1003 zval *current, rv; in PS_SERIALIZER_DECODE_FUNC() local
1024 ZVAL_PTR(&rv, current); in PS_SERIALIZER_DECODE_FUNC()
1025 php_set_session_var(name, &rv, &var_hash); in PS_SERIALIZER_DECODE_FUNC()

Completed in 160 milliseconds

1234