Home
last modified time | relevance | path

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

/PHP-7.0/ext/soap/
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
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 Dphp_http.h25 int make_http_soap_request(zval *this_ptr,
32 int proxy_authentication(zval* this_ptr, smart_str* soap_headers);
33 int basic_authentication(zval* this_ptr, smart_str* soap_headers);
H A Dphp_packet_soap.c46 add_soap_fault(this_ptr, "Client", "looks like we got no XML document", NULL, NULL); in parse_packet_soap()
50 add_soap_fault(this_ptr, "Client", "DTD are not supported by SOAP", NULL, NULL); in parse_packet_soap()
69 add_soap_fault(this_ptr, "VersionMismatch", "Wrong Version", NULL, NULL); in parse_packet_soap()
77 …add_soap_fault(this_ptr, "Client", "looks like we got XML without \"Envelope\" element", NULL, NUL… in parse_packet_soap()
90 …add_soap_fault(this_ptr, "Client", "encodingStyle cannot be specified on the Envelope", NULL, NULL… in parse_packet_soap()
94 add_soap_fault(this_ptr, "Client", "Unknown data encoding style", NULL, NULL); in parse_packet_soap()
126 add_soap_fault(this_ptr, "Client", "Body must be present in a SOAP envelope", NULL, NULL); in parse_packet_soap()
140 add_soap_fault(this_ptr, "Client", "encodingStyle cannot be specified on the Body", NULL, NULL); in parse_packet_soap()
144 add_soap_fault(this_ptr, "Client", "Unknown data encoding style", NULL, NULL); in parse_packet_soap()
166 … add_soap_fault(this_ptr, "Client", "encodingStyle cannot be specified on the Header", NULL, NULL); in parse_packet_soap()
[all …]
H A Dsoap.c821 zval *this_ptr; in PHP_METHOD() local
831 this_ptr = getThis(); in PHP_METHOD()
846 zval *this_ptr; in PHP_METHOD() local
860 this_ptr = getThis(); in PHP_METHOD()
927 this_ptr = getThis(); in PHP_METHOD()
943 zval *this_ptr; in PHP_METHOD() local
951 this_ptr = getThis(); in PHP_METHOD()
1002 this_ptr = getThis(); in PHP_METHOD()
2332 zval *this_ptr = getThis(); local
2882 zval *this_ptr; local
[all …]
H A Dphp_packet_soap.h25 int parse_packet_soap(zval *this_ptr, char *buffer, int buffer_size, sdlFunctionPtr fn, char *fn_na…
H A Dphp_sdl.h257 sdlPtr get_sdl(zval *this_ptr, char *uri, zend_long cache_wsdl);
H A Dphp_sdl.c317 static void load_wsdl_ex(zval *this_ptr, char *struri, sdlCtx *ctx, int include) in load_wsdl_ex() argument
395 load_wsdl_ex(this_ptr, (char*)uri, ctx, 1); in load_wsdl_ex()
724 static sdlPtr load_wsdl(zval *this_ptr, char *struri) in load_wsdl() argument
741 load_wsdl_ex(this_ptr, struri,&ctx, 0); in load_wsdl()
3154 sdlPtr get_sdl(zval *this_ptr, char *uri, zend_long cache_wsdl) in get_sdl() argument
3235 if (NULL != (tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), in get_sdl()
3242 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_user_agent", sizeof("_user_agent")-1)) != N… in get_sdl()
3249 …if ((proxy_host = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_proxy_host", sizeof("_proxy_host")-1… in get_sdl()
3277 has_proxy_authorization = proxy_authentication(this_ptr, &headers); in get_sdl()
3280 has_authorization = basic_authentication(this_ptr, &headers); in get_sdl()
[all …]
/PHP-7.0/Zend/
H A Dzend_closures.c43 zval this_ptr; member
294 return &closure->this_ptr; in zend_get_closure_this_ptr()
358 zval_ptr_dtor(&closure->this_ptr); in zend_closure_free_storage()
402 *obj_ptr = Z_OBJ(closure->this_ptr); in zend_closure_get_closure()
431 Z_ADDREF(closure->this_ptr); in zend_closure_get_debug_info()
480 *table = Z_TYPE(closure->this_ptr) != IS_NULL ? &closure->this_ptr : NULL; in zend_closure_get_gc()
565 if ((scope == NULL) && this_ptr && (Z_TYPE_P(this_ptr) != IS_UNDEF)) { in zend_create_closure()
605 this_ptr = NULL; in zend_create_closure()
610 ZVAL_UNDEF(&closure->this_ptr); in zend_create_closure()
617 …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 Dzend_closures.h31 … zend_function *op_array, zend_class_entry *scope, zend_class_entry *called_scope, zval *this_ptr);
32 … zend_function *op_array, zend_class_entry *scope, zend_class_entry *called_scope, zval *this_ptr);
H A Dzend_API.c980 ZEND_API int zend_parse_method_parameters(int num_args, zval *this_ptr, const char *type_spec, ...)… in zend_parse_method_parameters() argument
995 if (!is_method || !this_ptr || Z_TYPE_P(this_ptr) != IS_OBJECT) { in zend_parse_method_parameters()
1006 *object = this_ptr; in zend_parse_method_parameters()
1008 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce)) { in zend_parse_method_parameters()
1010 …ZSTR_VAL(Z_OBJCE_P(this_ptr)->name), get_active_function_name(), ZSTR_VAL(ce->name), get_active_fu… in zend_parse_method_parameters()
1020 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
1028 if (!this_ptr) { in zend_parse_method_parameters_ex()
1038 *object = this_ptr; in zend_parse_method_parameters_ex()
1040 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce)) { in zend_parse_method_parameters_ex()
1043 …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.h271 ZEND_API int zend_parse_method_parameters(int num_args, zval *this_ptr, const char *type_spec, ...);
272 ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args, zval *this_ptr, const char *t…
/PHP-7.0/ext/date/
H A Dphp_date.c633 static zend_object *date_object_clone_date(zval *this_ptr);
634 static zend_object *date_object_clone_timezone(zval *this_ptr);
635 static zend_object *date_object_clone_interval(zval *this_ptr);
636 static zend_object *date_object_clone_period(zval *this_ptr);
2166 static zend_object *date_object_clone_date(zval *this_ptr) /* {{{ */ in date_object_clone_date() argument
2168 php_date_obj *old_obj = Z_PHPDATE_P(this_ptr); in date_object_clone_date()
2297 static zend_object *date_object_clone_timezone(zval *this_ptr) /* {{{ */ in date_object_clone_timezone() argument
2299 php_timezone_obj *old_obj = Z_PHPTIMEZONE_P(this_ptr); in date_object_clone_timezone()
2390 php_interval_obj *old_obj = Z_PHPINTERVAL_P(this_ptr); in date_object_clone_interval()
2470 static zend_object *date_object_clone_period(zval *this_ptr) /* {{{ */ in date_object_clone_period() argument
[all …]
/PHP-7.0/ext/spl/
H A Dspl_directory.c2146 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
2162 …zend_call_method_with_0_params(this_ptr, Z_OBJCE(EX(This)), &intern->u.file.func_getCurr, "getCurr… in spl_filesystem_file_read_line_ex()
2220 static int spl_filesystem_file_read_line(zval * this_ptr, spl_filesystem_object *intern, int silent… in spl_filesystem_file_read_line() argument
2222 int ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent); in spl_filesystem_file_read_line()
2226 ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent); in spl_filesystem_file_read_line()
2233 static void spl_filesystem_file_rewind(zval * this_ptr, spl_filesystem_object *intern) /* {{{ */ in spl_filesystem_file_rewind() argument
2246 spl_filesystem_file_read_line(this_ptr, intern, 1); in spl_filesystem_file_rewind()

Completed in 127 milliseconds