Home
last modified time | relevance | path

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

/php-src/ext/soap/
H A Dphp_http.c61 zval *login = Z_CLIENT_LOGIN_P(this_ptr); in basic_authentication()
190 tmp = Z_CLIENT_SSL_METHOD_P(this_ptr); in http_connect()
278 tmp = Z_CLIENT_SSL_METHOD_P(this_ptr); in http_connect()
363 if (this_ptr == NULL || Z_TYPE_P(this_ptr) != IS_OBJECT) { in make_http_soap_request()
369 tmp = Z_CLIENT_COMPRESSION_P(this_ptr); in make_http_soap_request()
414 tmp = Z_CLIENT_HTTPSOCKET_P(this_ptr); in make_http_soap_request()
417 tmp = Z_CLIENT_USE_PROXY_P(this_ptr); in make_http_soap_request()
486 tmp = Z_CLIENT_HTTPURL_P(this_ptr); in make_http_soap_request()
591 tmp = Z_CLIENT_USER_AGENT_P(this_ptr); in make_http_soap_request()
656 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.c465 zval *this_ptr; in PHP_METHOD() local
476 this_ptr = ZEND_THIS; in PHP_METHOD()
491 zval *this_ptr; in PHP_METHOD() local
511 this_ptr = ZEND_THIS; in PHP_METHOD()
578 this_ptr = ZEND_THIS; in PHP_METHOD()
591 zval *this_ptr; in PHP_METHOD() local
599 this_ptr = ZEND_THIS; in PHP_METHOD()
630 zval *data, *this_ptr; in PHP_METHOD() local
639 this_ptr = ZEND_THIS; in PHP_METHOD()
2393 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.c406 load_wsdl_ex(this_ptr, (char*)uri, ctx, 1); in load_wsdl_ex()
735 static sdlPtr load_wsdl(zval *this_ptr, char *struri) in load_wsdl() argument
753 load_wsdl_ex(this_ptr, struri, &ctx, 0); in load_wsdl()
3188 sdlPtr get_sdl(zval *this_ptr, char *uri, zend_long cache_wsdl) in get_sdl() argument
3269 if (instanceof_function(Z_OBJCE_P(this_ptr), soap_class_entry)) { in get_sdl()
3270 tmp = Z_CLIENT_STREAM_CONTEXT_P(this_ptr); in get_sdl()
3278 tmp = Z_CLIENT_USER_AGENT_P(this_ptr); in get_sdl()
3285 zval *proxy_host = Z_CLIENT_PROXY_HOST_P(this_ptr); in get_sdl()
3286 zval *proxy_port = Z_CLIENT_PROXY_PORT_P(this_ptr); in get_sdl()
3311 has_authorization = basic_authentication(this_ptr, &headers); in get_sdl()
[all …]
/php-src/Zend/
H A Dzend_closures.c34 zval this_ptr; member
434 if (Z_TYPE(lhs->this_ptr) != Z_TYPE(rhs->this_ptr)) { in zend_closure_compare()
438 if (Z_TYPE(lhs->this_ptr) == IS_OBJECT && Z_OBJ(lhs->this_ptr) != Z_OBJ(rhs->this_ptr)) { in zend_closure_compare()
501 return &closure->this_ptr; in zend_get_closure_this_ptr()
533 zval_ptr_dtor(&closure->this_ptr); in zend_closure_free_storage()
643 Z_ADDREF(closure->this_ptr); in zend_closure_get_debug_info()
687 *table = Z_TYPE(closure->this_ptr) != IS_NULL ? &closure->this_ptr : NULL; in zend_closure_get_gc()
740 if ((scope == NULL) && this_ptr && (Z_TYPE_P(this_ptr) != IS_UNDEF)) { in zend_create_closure_ex()
816 this_ptr = NULL; in zend_create_closure_ex()
821 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.c1287 ZEND_API zend_result zend_parse_method_parameters(uint32_t num_args, zval *this_ptr, const char *ty… in zend_parse_method_parameters() argument
1302 if (!is_method || !this_ptr || Z_TYPE_P(this_ptr) != IS_OBJECT) { in zend_parse_method_parameters()
1313 *object = this_ptr; in zend_parse_method_parameters()
1315 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce)) { in zend_parse_method_parameters()
1317 …ZSTR_VAL(Z_OBJCE_P(this_ptr)->name), get_active_function_name(), ZSTR_VAL(ce->name), get_active_fu… in zend_parse_method_parameters()
1327 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
1335 if (!this_ptr) { in zend_parse_method_parameters_ex()
1345 *object = this_ptr; in zend_parse_method_parameters_ex()
1347 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce)) { in zend_parse_method_parameters_ex()
1350 …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.h371 ZEND_API zend_result zend_parse_method_parameters(uint32_t num_args, zval *this_ptr, const char *ty…
372 ZEND_API zend_result zend_parse_method_parameters_ex(int flags, uint32_t num_args, zval *this_ptr, …
/php-src/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-src/ext/date/
H A Dphp_date.c344 static zend_object *date_object_clone_date(zend_object *this_ptr);
345 static zend_object *date_object_clone_timezone(zend_object *this_ptr);
346 static zend_object *date_object_clone_interval(zend_object *this_ptr);
347 static zend_object *date_object_clone_period(zend_object *this_ptr);
1861 static zend_object *date_object_clone_date(zend_object *this_ptr) /* {{{ */ in date_object_clone_date() argument
1863 php_date_obj *old_obj = php_date_obj_from_obj(this_ptr); in date_object_clone_date()
2001 static zend_object *date_object_clone_timezone(zend_object *this_ptr) /* {{{ */ in date_object_clone_timezone() argument
2003 php_timezone_obj *old_obj = php_timezone_obj_from_obj(this_ptr); in date_object_clone_timezone()
2167 php_interval_obj *old_obj = php_interval_obj_from_obj(this_ptr); in date_object_clone_interval()
2256 static zend_object *date_object_clone_period(zend_object *this_ptr) /* {{{ */ in date_object_clone_period() argument
[all …]
/php-src/ext/opcache/jit/
H A Dzend_jit_ir.c8101 zval this_ptr; member
8353 if_cond = ir_IF(ir_LOAD_U8(ir_ADD_OFFSET(func_ref, offsetof(zend_closure, this_ptr.u1.v.type))));
8360 object = ir_LOAD_A(ir_ADD_OFFSET(func_ref, offsetof(zend_closure, this_ptr.value.ptr)));

Completed in 247 milliseconds