/PHP-7.3/ext/soap/ |
H A D | php_http.c | 35 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 D | php_http.h | 24 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 D | php_packet_soap.c | 45 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 D | soap.c | 797 zval *this_ptr; in PHP_METHOD() local 807 this_ptr = getThis(); in PHP_METHOD() 822 zval *this_ptr; in PHP_METHOD() local 836 this_ptr = getThis(); in PHP_METHOD() 900 this_ptr = getThis(); in PHP_METHOD() 915 zval *this_ptr; in PHP_METHOD() local 923 this_ptr = getThis(); in PHP_METHOD() 972 this_ptr = getThis(); in PHP_METHOD() 2272 zval *this_ptr = getThis(); local 2822 zval *this_ptr; local [all …]
|
H A D | php_packet_soap.h | 24 int parse_packet_soap(zval *this_ptr, char *buffer, int buffer_size, sdlFunctionPtr fn, char *fn_na…
|
H A D | php_sdl.h | 256 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 742 load_wsdl_ex(this_ptr, struri,&ctx, 0); in load_wsdl() 3155 sdlPtr get_sdl(zval *this_ptr, char *uri, zend_long cache_wsdl) in get_sdl() argument 3236 if (NULL != (tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), in get_sdl() 3243 …if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_user_agent", sizeof("_user_agent")-1)) != N… in get_sdl() 3250 …if ((proxy_host = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_proxy_host", sizeof("_proxy_host")-1… in get_sdl() 3275 has_proxy_authorization = proxy_authentication(this_ptr, &headers); in get_sdl() 3278 has_authorization = basic_authentication(this_ptr, &headers); in get_sdl() [all …]
|
/PHP-7.3/Zend/ |
H A D | zend_closures.c | 38 zval this_ptr; member 386 return &closure->this_ptr; in zend_get_closure_this_ptr() 450 zval_ptr_dtor(&closure->this_ptr); in zend_closure_free_storage() 487 *obj_ptr = Z_OBJ(closure->this_ptr); in zend_closure_get_closure() 522 Z_ADDREF(closure->this_ptr); in zend_closure_get_debug_info() 571 *table = Z_TYPE(closure->this_ptr) != IS_NULL ? &closure->this_ptr : NULL; in zend_closure_get_gc() 660 if ((scope == NULL) && this_ptr && (Z_TYPE_P(this_ptr) != IS_UNDEF)) { in zend_create_closure() 713 this_ptr = NULL; in zend_create_closure() 718 ZVAL_UNDEF(&closure->this_ptr); in zend_create_closure() 725 …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 | 1047 ZEND_API int zend_parse_method_parameters(int num_args, zval *this_ptr, const char *type_spec, ...)… in zend_parse_method_parameters() argument 1062 if (!is_method || !this_ptr || Z_TYPE_P(this_ptr) != IS_OBJECT) { in zend_parse_method_parameters() 1073 *object = this_ptr; in zend_parse_method_parameters() 1075 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce)) { in zend_parse_method_parameters() 1077 …ZSTR_VAL(Z_OBJCE_P(this_ptr)->name), get_active_function_name(), ZSTR_VAL(ce->name), get_active_fu… in zend_parse_method_parameters() 1087 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 1095 if (!this_ptr) { in zend_parse_method_parameters_ex() 1105 *object = this_ptr; in zend_parse_method_parameters_ex() 1107 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce)) { in zend_parse_method_parameters_ex() 1110 …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 | 266 ZEND_API int zend_parse_method_parameters(int num_args, zval *this_ptr, const char *type_spec, ...); 267 ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args, zval *this_ptr, const char *t…
|
/PHP-7.3/ext/spl/ |
H A D | spl_directory.c | 2153 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 2169 …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() 2226 static int spl_filesystem_file_read_line(zval * this_ptr, spl_filesystem_object *intern, int silent… in spl_filesystem_file_read_line() argument 2228 int ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent); in spl_filesystem_file_read_line() 2232 ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent); in spl_filesystem_file_read_line() 2239 static void spl_filesystem_file_rewind(zval * this_ptr, spl_filesystem_object *intern) /* {{{ */ in spl_filesystem_file_rewind() argument 2252 spl_filesystem_file_read_line(this_ptr, intern, 1); in spl_filesystem_file_rewind()
|
/PHP-7.3/ext/date/ |
H A D | php_date.c | 680 static zend_object *date_object_clone_date(zval *this_ptr); 681 static zend_object *date_object_clone_timezone(zval *this_ptr); 682 static zend_object *date_object_clone_interval(zval *this_ptr); 683 static zend_object *date_object_clone_period(zval *this_ptr); 2232 static zend_object *date_object_clone_date(zval *this_ptr) /* {{{ */ in date_object_clone_date() argument 2234 php_date_obj *old_obj = Z_PHPDATE_P(this_ptr); in date_object_clone_date() 2354 static zend_object *date_object_clone_timezone(zval *this_ptr) /* {{{ */ in date_object_clone_timezone() argument 2356 php_timezone_obj *old_obj = Z_PHPTIMEZONE_P(this_ptr); in date_object_clone_timezone() 2464 php_interval_obj *old_obj = Z_PHPINTERVAL_P(this_ptr); in date_object_clone_interval() 2540 static zend_object *date_object_clone_period(zval *this_ptr) /* {{{ */ in date_object_clone_period() argument [all …]
|