Home
last modified time | relevance | path

Searched refs:this_ptr (Results 1 – 15 of 15) sorted by relevance

/PHP-8.3/ext/soap/
H A Dphp_http.c61 zval *login = Z_CLIENT_LOGIN_P(this_ptr); in basic_authentication()
204 tmp = Z_CLIENT_SSL_METHOD_P(this_ptr); in http_connect()
292 tmp = Z_CLIENT_SSL_METHOD_P(this_ptr); in http_connect()
377 if (this_ptr == NULL || Z_TYPE_P(this_ptr) != IS_OBJECT) { in make_http_soap_request()
383 tmp = Z_CLIENT_COMPRESSION_P(this_ptr); in make_http_soap_request()
428 tmp = Z_CLIENT_HTTPSOCKET_P(this_ptr); in make_http_soap_request()
431 tmp = Z_CLIENT_USE_PROXY_P(this_ptr); in make_http_soap_request()
500 tmp = Z_CLIENT_HTTPURL_P(this_ptr); in make_http_soap_request()
603 tmp = Z_CLIENT_USER_AGENT_P(this_ptr); in make_http_soap_request()
668 login = Z_CLIENT_LOGIN_P(this_ptr); in make_http_soap_request()
[all …]
H A Dphp_http.h22 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 Dphp_packet_soap.c43 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 Dsoap.c451 zval *this_ptr; in PHP_METHOD() local
462 this_ptr = ZEND_THIS; in PHP_METHOD()
477 zval *this_ptr; in PHP_METHOD() local
497 this_ptr = ZEND_THIS; in PHP_METHOD()
585 this_ptr = ZEND_THIS; in PHP_METHOD()
598 zval *this_ptr; in PHP_METHOD() local
606 this_ptr = ZEND_THIS; in PHP_METHOD()
637 zval *data, *this_ptr; in PHP_METHOD() local
646 this_ptr = ZEND_THIS; in PHP_METHOD()
2399 zval *this_ptr; local
[all …]
H A Dphp_packet_soap.h22 int parse_packet_soap(zval *this_ptr, char *buffer, int buffer_size, sdlFunctionPtr fn, char *fn_na…
H A Dphp_sdl.h254 sdlPtr get_sdl(zval *this_ptr, char *uri, zend_long cache_wsdl);
H A Dphp_sdl.c399 load_wsdl_ex(this_ptr, (char*)uri, ctx, 1); in load_wsdl_ex()
728 static sdlPtr load_wsdl(zval *this_ptr, char *struri) in load_wsdl() argument
746 load_wsdl_ex(this_ptr, struri, &ctx, 0); in load_wsdl()
3177 sdlPtr get_sdl(zval *this_ptr, char *uri, zend_long cache_wsdl) in get_sdl() argument
3258 if (instanceof_function(Z_OBJCE_P(this_ptr), soap_class_entry)) { in get_sdl()
3259 tmp = Z_CLIENT_STREAM_CONTEXT_P(this_ptr); in get_sdl()
3267 tmp = Z_CLIENT_USER_AGENT_P(this_ptr); in get_sdl()
3274 zval *proxy_host = Z_CLIENT_PROXY_HOST_P(this_ptr); in get_sdl()
3275 zval *proxy_port = Z_CLIENT_PROXY_PORT_P(this_ptr); in get_sdl()
3300 has_authorization = basic_authentication(this_ptr, &headers); in get_sdl()
[all …]
/PHP-8.3/Zend/
H A Dzend_closures.c34 zval this_ptr; member
433 if (Z_TYPE(lhs->this_ptr) != Z_TYPE(rhs->this_ptr)) { in zend_closure_compare()
437 if (Z_TYPE(lhs->this_ptr) == IS_OBJECT && Z_OBJ(lhs->this_ptr) != Z_OBJ(rhs->this_ptr)) { in zend_closure_compare()
499 return &closure->this_ptr; in zend_get_closure_this_ptr()
531 zval_ptr_dtor(&closure->this_ptr); in zend_closure_free_storage()
632 Z_ADDREF(closure->this_ptr); in zend_closure_get_debug_info()
676 *table = Z_TYPE(closure->this_ptr) != IS_NULL ? &closure->this_ptr : NULL; in zend_closure_get_gc()
729 if ((scope == NULL) && this_ptr && (Z_TYPE_P(this_ptr) != IS_UNDEF)) { in zend_create_closure_ex()
805 this_ptr = NULL; in zend_create_closure_ex()
810 ZVAL_UNDEF(&closure->this_ptr); in zend_create_closure_ex()
[all …]
H A Dzend_closures.h36 … zend_function *op_array, zend_class_entry *scope, zend_class_entry *called_scope, zval *this_ptr);
37 … zend_function *op_array, zend_class_entry *scope, zend_class_entry *called_scope, zval *this_ptr);
H A Dzend_API.c1260 ZEND_API zend_result zend_parse_method_parameters(uint32_t num_args, zval *this_ptr, const char *ty… in zend_parse_method_parameters() argument
1275 if (!is_method || !this_ptr || Z_TYPE_P(this_ptr) != IS_OBJECT) { in zend_parse_method_parameters()
1286 *object = this_ptr; in zend_parse_method_parameters()
1288 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce)) { in zend_parse_method_parameters()
1290 …ZSTR_VAL(Z_OBJCE_P(this_ptr)->name), get_active_function_name(), ZSTR_VAL(ce->name), get_active_fu… in zend_parse_method_parameters()
1300 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
1308 if (!this_ptr) { in zend_parse_method_parameters_ex()
1318 *object = this_ptr; in zend_parse_method_parameters_ex()
1320 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce)) { in zend_parse_method_parameters_ex()
1323 …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 Dzend_API.h367 ZEND_API zend_result zend_parse_method_parameters(uint32_t num_args, zval *this_ptr, const char *ty…
368 ZEND_API zend_result zend_parse_method_parameters_ex(int flags, uint32_t num_args, zval *this_ptr, …
/PHP-8.3/ext/spl/
H A Dspl_directory.c1960 static zend_result spl_filesystem_file_read_line_ex(zval * this_ptr, spl_filesystem_object *intern,… in spl_filesystem_file_read_line_ex() argument
1977 …zend_call_method_with_0_params(Z_OBJ_P(this_ptr), Z_OBJCE_P(this_ptr), &intern->u.file.func_getCur… in spl_filesystem_file_read_line_ex()
1984 ZSTR_VAL(Z_OBJCE_P(this_ptr)->name), zend_zval_value_name(&retval)); in spl_filesystem_file_read_line_ex()
2002 static zend_result spl_filesystem_file_read_line(zval * this_ptr, spl_filesystem_object *intern, bo… in spl_filesystem_file_read_line() argument
2004 zend_result ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent); in spl_filesystem_file_read_line()
2008 ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent); in spl_filesystem_file_read_line()
2015 static void spl_filesystem_file_rewind(zval * this_ptr, spl_filesystem_object *intern) /* {{{ */ in spl_filesystem_file_rewind() argument
2030 spl_filesystem_file_read_line(this_ptr, intern, true); in spl_filesystem_file_rewind()
/PHP-8.3/ext/date/
H A Dphp_date.c345 static zend_object *date_object_clone_date(zend_object *this_ptr);
346 static zend_object *date_object_clone_timezone(zend_object *this_ptr);
347 static zend_object *date_object_clone_interval(zend_object *this_ptr);
348 static zend_object *date_object_clone_period(zend_object *this_ptr);
1856 static zend_object *date_object_clone_date(zend_object *this_ptr) /* {{{ */ in date_object_clone_date() argument
1858 php_date_obj *old_obj = php_date_obj_from_obj(this_ptr); in date_object_clone_date()
1996 static zend_object *date_object_clone_timezone(zend_object *this_ptr) /* {{{ */ in date_object_clone_timezone() argument
1998 php_timezone_obj *old_obj = php_timezone_obj_from_obj(this_ptr); in date_object_clone_timezone()
2162 php_interval_obj *old_obj = php_interval_obj_from_obj(this_ptr); in date_object_clone_interval()
2251 static zend_object *date_object_clone_period(zend_object *this_ptr) /* {{{ */ in date_object_clone_period() argument
[all …]
/PHP-8.3/ext/opcache/jit/
H A Dzend_jit_arm64.dasc8420 zval this_ptr;
8619 | // if (Z_TYPE(closure->this_ptr) != IS_UNDEF) {
8620 | ldrb TMP1w, [REG0, #offsetof(zend_closure, this_ptr.u1.v.type)]
8625 | // object_or_called_scope = Z_OBJ(closure->this_ptr);
8626 | ldr REG1, [REG0, #offsetof(zend_closure, this_ptr.value.ptr)]
H A Dzend_jit_x86.dasc9039 zval this_ptr;
9240 | // if (Z_TYPE(closure->this_ptr) != IS_UNDEF) {
9241 | cmp byte [r0 + offsetof(zend_closure, this_ptr.u1.v.type)], IS_UNDEF
9245 | // object_or_called_scope = Z_OBJ(closure->this_ptr);
9246 | mov r1, aword [r0 + offsetof(zend_closure, this_ptr.value.ptr)]

Completed in 143 milliseconds