/PHP-8.0/ext/soap/ |
H A D | php_http.h | 22 int make_http_soap_request(zval *this_ptr, 29 int proxy_authentication(zval* this_ptr, smart_str* soap_headers); 30 int basic_authentication(zval* this_ptr, smart_str* soap_headers);
|
H A D | php_http.c | 34 int proxy_authentication(zval* this_ptr, smart_str* soap_headers) in proxy_authentication() argument 62 int basic_authentication(zval* this_ptr, smart_str* soap_headers) in basic_authentication() argument 262 proxy_authentication(this_ptr, &soap_headers); in http_connect() 335 int make_http_soap_request(zval *this_ptr, in make_http_soap_request() argument 369 if (this_ptr == NULL || Z_TYPE_P(this_ptr) != IS_OBJECT) { in make_http_soap_request() 432 if (NULL != (tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), in make_http_soap_request() 451 add_soap_fault(this_ptr, "HTTP", "Unable to parse URL", NULL, NULL); in make_http_soap_request() 521 add_property_resource(this_ptr, "httpsocket", stream->res); in make_http_soap_request() 523 add_property_long(this_ptr, "_use_proxy", use_proxy); in make_http_soap_request() 541 add_property_resource(this_ptr, "httpurl", ret); in make_http_soap_request() [all …]
|
H A D | php_packet_soap.c | 43 add_soap_fault(this_ptr, "Client", "looks like we got no XML document", NULL, NULL); in parse_packet_soap() 47 add_soap_fault(this_ptr, "Client", "DTD are not supported by SOAP", NULL, NULL); in parse_packet_soap() 66 add_soap_fault(this_ptr, "VersionMismatch", "Wrong Version", NULL, NULL); in parse_packet_soap() 74 …add_soap_fault(this_ptr, "Client", "looks like we got XML without \"Envelope\" element", NULL, NUL… in parse_packet_soap() 87 …add_soap_fault(this_ptr, "Client", "encodingStyle cannot be specified on the Envelope", NULL, NULL… in parse_packet_soap() 91 add_soap_fault(this_ptr, "Client", "Unknown data encoding style", NULL, NULL); in parse_packet_soap() 123 add_soap_fault(this_ptr, "Client", "Body must be present in a SOAP envelope", NULL, NULL); in parse_packet_soap() 137 add_soap_fault(this_ptr, "Client", "encodingStyle cannot be specified on the Body", NULL, NULL); in parse_packet_soap() 141 add_soap_fault(this_ptr, "Client", "Unknown data encoding style", NULL, NULL); in parse_packet_soap() 163 … add_soap_fault(this_ptr, "Client", "encodingStyle cannot be specified on the Header", NULL, NULL); in parse_packet_soap() [all …]
|
H A D | soap.c | 523 zval *this_ptr; in PHP_METHOD() local 534 this_ptr = ZEND_THIS; in PHP_METHOD() 551 zval *this_ptr; in PHP_METHOD() local 571 this_ptr = ZEND_THIS; in PHP_METHOD() 638 this_ptr = ZEND_THIS; in PHP_METHOD() 651 zval *this_ptr; in PHP_METHOD() local 659 this_ptr = ZEND_THIS; in PHP_METHOD() 690 zval *data, *this_ptr; in PHP_METHOD() local 700 this_ptr = ZEND_THIS; in PHP_METHOD() 2516 zval *this_ptr; local [all …]
|
H A D | php_packet_soap.h | 22 int parse_packet_soap(zval *this_ptr, char *buffer, int buffer_size, sdlFunctionPtr fn, char *fn_na…
|
H A D | php_sdl.h | 254 sdlPtr get_sdl(zval *this_ptr, char *uri, zend_long cache_wsdl);
|
H A D | php_sdl.c | 318 static void load_wsdl_ex(zval *this_ptr, char *struri, sdlCtx *ctx, int include) in load_wsdl_ex() argument 396 load_wsdl_ex(this_ptr, (char*)uri, ctx, 1); in load_wsdl_ex() 725 static sdlPtr load_wsdl(zval *this_ptr, char *struri) in load_wsdl() argument 743 load_wsdl_ex(this_ptr, struri, &ctx, 0); in load_wsdl() 3162 sdlPtr get_sdl(zval *this_ptr, char *uri, zend_long cache_wsdl) in get_sdl() argument 3243 if (NULL != (tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), in get_sdl() 3250 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_user_agent", sizeof("_user_agent")-1)) != N… in get_sdl() 3257 …if ((proxy_host = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_proxy_host", sizeof("_proxy_host")-1… in get_sdl() 3282 has_proxy_authorization = proxy_authentication(this_ptr, &headers); in get_sdl() 3285 has_authorization = basic_authentication(this_ptr, &headers); in get_sdl() [all …]
|
/PHP-8.0/Zend/ |
H A D | zend_closures.c | 39 zval this_ptr; member 433 return &closure->this_ptr; in zend_get_closure_this_ptr() 496 zval_ptr_dtor(&closure->this_ptr); in zend_closure_free_storage() 533 *obj_ptr = Z_OBJ(closure->this_ptr); in zend_closure_get_closure() 585 Z_ADDREF(closure->this_ptr); in zend_closure_get_debug_info() 634 *table = Z_TYPE(closure->this_ptr) != IS_NULL ? &closure->this_ptr : NULL; in zend_closure_get_gc() 693 if ((scope == NULL) && this_ptr && (Z_TYPE_P(this_ptr) != IS_UNDEF)) { in zend_create_closure() 760 this_ptr = NULL; in zend_create_closure() 765 ZVAL_UNDEF(&closure->this_ptr); in zend_create_closure() 772 …if (this_ptr && Z_TYPE_P(this_ptr) == IS_OBJECT && (closure->func.common.fn_flags & ZEND_ACC_STATI… in zend_create_closure() [all …]
|
H A D | zend_closures.h | 35 … zend_function *op_array, zend_class_entry *scope, zend_class_entry *called_scope, zval *this_ptr); 36 … zend_function *op_array, zend_class_entry *scope, zend_class_entry *called_scope, zval *this_ptr);
|
H A D | zend_API.c | 1120 ZEND_API zend_result zend_parse_method_parameters(uint32_t num_args, zval *this_ptr, const char *ty… in zend_parse_method_parameters() argument 1135 if (!is_method || !this_ptr || Z_TYPE_P(this_ptr) != IS_OBJECT) { in zend_parse_method_parameters() 1146 *object = this_ptr; in zend_parse_method_parameters() 1148 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce)) { in zend_parse_method_parameters() 1150 …ZSTR_VAL(Z_OBJCE_P(this_ptr)->name), get_active_function_name(), ZSTR_VAL(ce->name), get_active_fu… in zend_parse_method_parameters() 1160 ZEND_API zend_result zend_parse_method_parameters_ex(int flags, uint32_t num_args, zval *this_ptr, … in zend_parse_method_parameters_ex() argument 1168 if (!this_ptr) { in zend_parse_method_parameters_ex() 1178 *object = this_ptr; in zend_parse_method_parameters_ex() 1180 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce)) { in zend_parse_method_parameters_ex() 1183 …ZSTR_VAL(ce->name), get_active_function_name(), ZSTR_VAL(Z_OBJCE_P(this_ptr)->name), get_active_fu… in zend_parse_method_parameters_ex()
|
H A D | zend_API.h | 312 ZEND_API zend_result zend_parse_method_parameters(uint32_t num_args, zval *this_ptr, const char *ty… 313 ZEND_API zend_result zend_parse_method_parameters_ex(int flags, uint32_t num_args, zval *this_ptr, …
|
/PHP-8.0/ext/spl/ |
H A D | spl_directory.c | 1941 static int spl_filesystem_file_read_line_ex(zval * this_ptr, spl_filesystem_object *intern, int sil… in spl_filesystem_file_read_line_ex() argument 1959 …zend_call_method_with_0_params(Z_OBJ_P(this_ptr), Z_OBJCE_P(ZEND_THIS), &intern->u.file.func_getCu… in spl_filesystem_file_read_line_ex() 2015 static int spl_filesystem_file_read_line(zval * this_ptr, spl_filesystem_object *intern, int silent… in spl_filesystem_file_read_line() argument 2017 int ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent); in spl_filesystem_file_read_line() 2021 ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent); in spl_filesystem_file_read_line() 2028 static void spl_filesystem_file_rewind(zval * this_ptr, spl_filesystem_object *intern) /* {{{ */ in spl_filesystem_file_rewind() argument 2041 spl_filesystem_file_read_line(this_ptr, intern, 1); in spl_filesystem_file_rewind()
|
/PHP-8.0/ext/date/ |
H A D | php_date.c | 164 static zend_object *date_object_clone_date(zend_object *this_ptr); 165 static zend_object *date_object_clone_timezone(zend_object *this_ptr); 166 static zend_object *date_object_clone_interval(zend_object *this_ptr); 167 static zend_object *date_object_clone_period(zend_object *this_ptr); 1770 static zend_object *date_object_clone_date(zend_object *this_ptr) /* {{{ */ in date_object_clone_date() argument 1772 php_date_obj *old_obj = php_date_obj_from_obj(this_ptr); in date_object_clone_date() 1905 static zend_object *date_object_clone_timezone(zend_object *this_ptr) /* {{{ */ in date_object_clone_timezone() argument 1907 php_timezone_obj *old_obj = php_timezone_obj_from_obj(this_ptr); in date_object_clone_timezone() 2054 php_interval_obj *old_obj = php_interval_obj_from_obj(this_ptr); in date_object_clone_interval() 2128 static zend_object *date_object_clone_period(zend_object *this_ptr) /* {{{ */ in date_object_clone_period() argument [all …]
|
/PHP-8.0/ext/opcache/jit/ |
H A D | zend_jit_x86.dasc | 9048 zval this_ptr; 9245 | // if (Z_TYPE(closure->this_ptr) != IS_UNDEF) { 9246 | cmp byte [r0 + offsetof(zend_closure, this_ptr.u1.v.type)], IS_UNDEF 9250 | // object_or_called_scope = Z_OBJ(closure->this_ptr); 9251 | mov r1, aword [r0 + offsetof(zend_closure, this_ptr.value.ptr)]
|