Home
last modified time | relevance | path

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

/PHP-7.4/ext/soap/
H A Dphp_http.h24 int make_http_soap_request(zval *this_ptr,
31 int proxy_authentication(zval* this_ptr, smart_str* soap_headers);
32 int basic_authentication(zval* this_ptr, smart_str* soap_headers);
H A Dphp_http.c35 int proxy_authentication(zval* this_ptr, smart_str* soap_headers) in proxy_authentication() argument
63 int basic_authentication(zval* this_ptr, smart_str* soap_headers) in basic_authentication() argument
263 proxy_authentication(this_ptr, &soap_headers); in http_connect()
336 int make_http_soap_request(zval *this_ptr, in make_http_soap_request() argument
370 if (this_ptr == NULL || Z_TYPE_P(this_ptr) != IS_OBJECT) { in make_http_soap_request()
433 if (NULL != (tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), in make_http_soap_request()
452 add_soap_fault(this_ptr, "HTTP", "Unable to parse URL", NULL, NULL); in make_http_soap_request()
522 add_property_resource(this_ptr, "httpsocket", stream->res); in make_http_soap_request()
524 add_property_long(this_ptr, "_use_proxy", use_proxy); in make_http_soap_request()
542 add_property_resource(this_ptr, "httpurl", ret); in make_http_soap_request()
[all …]
H A Dphp_packet_soap.c45 add_soap_fault(this_ptr, "Client", "looks like we got no XML document", NULL, NULL); in parse_packet_soap()
49 add_soap_fault(this_ptr, "Client", "DTD are not supported by SOAP", NULL, NULL); in parse_packet_soap()
68 add_soap_fault(this_ptr, "VersionMismatch", "Wrong Version", NULL, NULL); in parse_packet_soap()
76 …add_soap_fault(this_ptr, "Client", "looks like we got XML without \"Envelope\" element", NULL, NUL… in parse_packet_soap()
89 …add_soap_fault(this_ptr, "Client", "encodingStyle cannot be specified on the Envelope", NULL, NULL… in parse_packet_soap()
93 add_soap_fault(this_ptr, "Client", "Unknown data encoding style", NULL, NULL); in parse_packet_soap()
125 add_soap_fault(this_ptr, "Client", "Body must be present in a SOAP envelope", NULL, NULL); in parse_packet_soap()
139 add_soap_fault(this_ptr, "Client", "encodingStyle cannot be specified on the Body", NULL, NULL); in parse_packet_soap()
143 add_soap_fault(this_ptr, "Client", "Unknown data encoding style", NULL, NULL); in parse_packet_soap()
165 … add_soap_fault(this_ptr, "Client", "encodingStyle cannot be specified on the Header", NULL, NULL); in parse_packet_soap()
[all …]
H A Dsoap.c795 zval *this_ptr; in PHP_METHOD() local
805 this_ptr = ZEND_THIS; in PHP_METHOD()
820 zval *this_ptr; in PHP_METHOD() local
834 this_ptr = ZEND_THIS; in PHP_METHOD()
898 this_ptr = ZEND_THIS; in PHP_METHOD()
913 zval *this_ptr; in PHP_METHOD() local
921 this_ptr = ZEND_THIS; in PHP_METHOD()
970 this_ptr = ZEND_THIS; in PHP_METHOD()
2285 zval *this_ptr = ZEND_THIS; local
2835 zval *this_ptr; local
[all …]
H A Dphp_packet_soap.h24 int parse_packet_soap(zval *this_ptr, char *buffer, int buffer_size, sdlFunctionPtr fn, char *fn_na…
H A Dphp_sdl.h256 sdlPtr get_sdl(zval *this_ptr, char *uri, zend_long cache_wsdl);
H A Dphp_sdl.c320 static void load_wsdl_ex(zval *this_ptr, char *struri, sdlCtx *ctx, int include) in load_wsdl_ex() argument
398 load_wsdl_ex(this_ptr, (char*)uri, ctx, 1); in load_wsdl_ex()
727 static sdlPtr load_wsdl(zval *this_ptr, char *struri) in load_wsdl() argument
745 load_wsdl_ex(this_ptr, struri, &ctx, 0); in load_wsdl()
3164 sdlPtr get_sdl(zval *this_ptr, char *uri, zend_long cache_wsdl) in get_sdl() argument
3245 if (NULL != (tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), in get_sdl()
3252 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_user_agent", sizeof("_user_agent")-1)) != N… in get_sdl()
3259 …if ((proxy_host = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_proxy_host", sizeof("_proxy_host")-1… in get_sdl()
3284 has_proxy_authorization = proxy_authentication(this_ptr, &headers); in get_sdl()
3287 has_authorization = basic_authentication(this_ptr, &headers); in get_sdl()
[all …]
/PHP-7.4/Zend/
H A Dzend_closures.c38 zval this_ptr; member
421 return &closure->this_ptr; in zend_get_closure_this_ptr()
484 zval_ptr_dtor(&closure->this_ptr); in zend_closure_free_storage()
521 *obj_ptr = Z_OBJ(closure->this_ptr); in zend_closure_get_closure()
557 Z_ADDREF(closure->this_ptr); in zend_closure_get_debug_info()
606 *table = Z_TYPE(closure->this_ptr) != IS_NULL ? &closure->this_ptr : NULL; in zend_closure_get_gc()
695 if ((scope == NULL) && this_ptr && (Z_TYPE_P(this_ptr) != IS_UNDEF)) { in zend_create_closure()
761 this_ptr = NULL; in zend_create_closure()
766 ZVAL_UNDEF(&closure->this_ptr); in zend_create_closure()
774 Z_ADDREF_P(this_ptr); in zend_create_closure()
[all …]
H A Dzend_closures.h35 … 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 Dzend_API.c1090 ZEND_API int zend_parse_method_parameters(int num_args, zval *this_ptr, const char *type_spec, ...)… in zend_parse_method_parameters() argument
1105 if (!is_method || !this_ptr || Z_TYPE_P(this_ptr) != IS_OBJECT) { in zend_parse_method_parameters()
1116 *object = this_ptr; in zend_parse_method_parameters()
1118 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce)) { in zend_parse_method_parameters()
1120 …ZSTR_VAL(Z_OBJCE_P(this_ptr)->name), get_active_function_name(), ZSTR_VAL(ce->name), get_active_fu… in zend_parse_method_parameters()
1130 ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args, zval *this_ptr, const char *t… in zend_parse_method_parameters_ex() argument
1138 if (!this_ptr) { in zend_parse_method_parameters_ex()
1148 *object = this_ptr; in zend_parse_method_parameters_ex()
1150 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce)) { in zend_parse_method_parameters_ex()
1153 …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.h264 ZEND_API int zend_parse_method_parameters(int num_args, zval *this_ptr, const char *type_spec, ...);
265 ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args, zval *this_ptr, const char *t…
/PHP-7.4/ext/spl/
H A Dspl_directory.c2156 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
2172 …zend_call_method_with_0_params(this_ptr, Z_OBJCE_P(ZEND_THIS), &intern->u.file.func_getCurr, "getC… in spl_filesystem_file_read_line_ex()
2229 static int spl_filesystem_file_read_line(zval * this_ptr, spl_filesystem_object *intern, int silent… in spl_filesystem_file_read_line() argument
2231 int ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent); in spl_filesystem_file_read_line()
2235 ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent); in spl_filesystem_file_read_line()
2242 static void spl_filesystem_file_rewind(zval * this_ptr, spl_filesystem_object *intern) /* {{{ */ in spl_filesystem_file_rewind() argument
2255 spl_filesystem_file_read_line(this_ptr, intern, 1); in spl_filesystem_file_rewind()
/PHP-7.4/ext/date/
H A Dphp_date.c658 static zend_object *date_object_clone_date(zval *this_ptr);
659 static zend_object *date_object_clone_timezone(zval *this_ptr);
660 static zend_object *date_object_clone_interval(zval *this_ptr);
661 static zend_object *date_object_clone_period(zval *this_ptr);
2234 static zend_object *date_object_clone_date(zval *this_ptr) /* {{{ */ in date_object_clone_date() argument
2236 php_date_obj *old_obj = Z_PHPDATE_P(this_ptr); in date_object_clone_date()
2364 static zend_object *date_object_clone_timezone(zval *this_ptr) /* {{{ */ in date_object_clone_timezone() argument
2366 php_timezone_obj *old_obj = Z_PHPTIMEZONE_P(this_ptr); in date_object_clone_timezone()
2511 php_interval_obj *old_obj = Z_PHPINTERVAL_P(this_ptr); in date_object_clone_interval()
2585 static zend_object *date_object_clone_period(zval *this_ptr) /* {{{ */ in date_object_clone_period() argument
[all …]

Completed in 147 milliseconds