Home
last modified time | relevance | path

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

/PHP-5.3/ext/soap/
H A Dphp_http.c35 int proxy_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC) in proxy_authentication() argument
62 int basic_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC) in basic_authentication() argument
221 proxy_authentication(this_ptr, &soap_headers TSRMLS_CC); in http_connect()
267 int make_http_soap_request(zval *this_ptr, in make_http_soap_request() argument
300 if (this_ptr == NULL || Z_TYPE_P(this_ptr) != IS_OBJECT) { in make_http_soap_request()
366 if (SUCCESS == zend_hash_find(Z_OBJPROP_P(this_ptr), in make_http_soap_request()
427 zend_hash_del(Z_OBJPROP_P(this_ptr), "httpurl", sizeof("httpurl")); in make_http_soap_request()
438 zend_hash_del(Z_OBJPROP_P(this_ptr), "httpurl", sizeof("httpurl")); in make_http_soap_request()
450 add_property_long(this_ptr, "_use_proxy", use_proxy); in make_http_soap_request()
466 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,
34 int proxy_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC);
35 int basic_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC);
H A Dphp_packet_soap.c46 add_soap_fault(this_ptr, "Client", "looks like we got no XML document", NULL, NULL TSRMLS_CC); in parse_packet_soap()
50 add_soap_fault(this_ptr, "Client", "DTD are not supported by SOAP", NULL, NULL TSRMLS_CC); in parse_packet_soap()
69 add_soap_fault(this_ptr, "VersionMismatch", "Wrong Version", NULL, NULL TSRMLS_CC); 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 TSRMLS_CC); in parse_packet_soap()
126 …add_soap_fault(this_ptr, "Client", "Body must be present in a SOAP envelope", NULL, NULL TSRMLS_CC… in parse_packet_soap()
140 …add_soap_fault(this_ptr, "Client", "encodingStyle cannot be specified on the Body", NULL, NULL TSR… in parse_packet_soap()
144 add_soap_fault(this_ptr, "Client", "Unknown data encoding style", NULL, NULL TSRMLS_CC); in parse_packet_soap()
170 add_soap_fault(this_ptr, "Client", "Unknown data encoding style", NULL, NULL TSRMLS_CC); in parse_packet_soap()
[all …]
H A Dsoap.c85 SOAP_GLOBAL(error_object) = this_ptr;
106 SOAP_GLOBAL(error_object) = this_ptr;\
145 SOAP_GLOBAL(error_object) = this_ptr;
903 add_property_zval(this_ptr, "param_data", data); in PHP_METHOD()
935 add_property_zval(this_ptr, "data", data); in PHP_METHOD()
1078 add_property_zval(this_ptr, "enc_value", data); in PHP_METHOD()
2588 add_property_null(this_ptr, "_digest");
2621 add_property_long(this_ptr, "trace", 1);
2709 add_property_resource(this_ptr, "sdl", ret);
2796 static void do_soap_call(zval* this_ptr, argument
[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, long cache_wsdl TSRMLS_DC);
H A Dphp_sdl.c321 static void load_wsdl_ex(zval *this_ptr, char *struri, sdlCtx *ctx, int include TSRMLS_DC) in load_wsdl_ex() argument
399 load_wsdl_ex(this_ptr, (char*)uri, ctx, 1 TSRMLS_CC); in load_wsdl_ex()
731 static sdlPtr load_wsdl(zval *this_ptr, char *struri TSRMLS_DC) in load_wsdl() argument
748 load_wsdl_ex(this_ptr, struri,&ctx, 0 TSRMLS_CC); in load_wsdl()
3188 sdlPtr get_sdl(zval *this_ptr, char *uri, long cache_wsdl TSRMLS_DC) in get_sdl() argument
3257 if (SUCCESS == zend_hash_find(Z_OBJPROP_P(this_ptr), in get_sdl()
3264 …if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_user_agent", sizeof("_user_agent"), (void **) &tmp) ==… in get_sdl()
3271 …if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_proxy_host", sizeof("_proxy_host"), (void **) &proxy_h… in get_sdl()
3304 has_proxy_authorization = proxy_authentication(this_ptr, &headers TSRMLS_CC); in get_sdl()
3307 has_authorization = basic_authentication(this_ptr, &headers TSRMLS_CC); in get_sdl()
[all …]
/PHP-5.3/ext/date/
H A Dphp_date.c576 static zend_object_value date_object_clone_date(zval *this_ptr TSRMLS_DC);
577 static zend_object_value date_object_clone_timezone(zval *this_ptr TSRMLS_DC);
578 static zend_object_value date_object_clone_interval(zval *this_ptr TSRMLS_DC);
579 static zend_object_value date_object_clone_period(zval *this_ptr TSRMLS_DC);
2074 static zend_object_value date_object_clone_date(zval *this_ptr TSRMLS_DC) in date_object_clone_date()
2077 php_date_obj *old_obj = (php_date_obj *) zend_object_store_get_object(this_ptr TSRMLS_CC); in date_object_clone_date()
2202 static zend_object_value date_object_clone_timezone(zval *this_ptr TSRMLS_DC) in date_object_clone_timezone()
2205 php_timezone_obj *old_obj = (php_timezone_obj *) zend_object_store_get_object(this_ptr TSRMLS_CC); in date_object_clone_timezone()
2258 static zend_object_value date_object_clone_interval(zval *this_ptr TSRMLS_DC) in date_object_clone_interval()
2340 static zend_object_value date_object_clone_period(zval *this_ptr TSRMLS_DC) in date_object_clone_period()
[all …]
/PHP-5.3/Zend/
H A Dzend_execute_API.c937 zval *this_ptr; in zend_call_function() local
939 ALLOC_ZVAL(this_ptr); in zend_call_function()
940 *this_ptr = *EG(This); in zend_call_function()
941 INIT_PZVAL(this_ptr); in zend_call_function()
942 zval_copy_ctor(this_ptr); in zend_call_function()
943 EG(This) = this_ptr; in zend_call_function()
H A Dzend.h274 …N_PARAMETERS int ht, zval *return_value, zval **return_value_ptr, zval *this_ptr, int return_value…
275 #define INTERNAL_FUNCTION_PARAM_PASSTHRU ht, return_value, return_value_ptr, this_ptr, return_value…
H A Dzend_API.c881 ZEND_API int zend_parse_method_parameters(int num_args TSRMLS_DC, zval *this_ptr, char *type_spec, … in zend_parse_method_parameters() argument
889 if (!this_ptr) { in zend_parse_method_parameters()
903 *object = this_ptr; in zend_parse_method_parameters()
905 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { in zend_parse_method_parameters()
907 …ce->name, get_active_function_name(TSRMLS_C), Z_OBJCE_P(this_ptr)->name, get_active_function_name(… in zend_parse_method_parameters()
917 ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args TSRMLS_DC, zval *this_ptr, cha… in zend_parse_method_parameters_ex() argument
926 if (!this_ptr) { in zend_parse_method_parameters_ex()
940 *object = this_ptr; in zend_parse_method_parameters_ex()
942 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { in zend_parse_method_parameters_ex()
945 …ce->name, get_active_function_name(TSRMLS_C), Z_OBJCE_P(this_ptr)->name, get_active_function_name(… in zend_parse_method_parameters_ex()
H A Dzend_API.h249 ZEND_API int zend_parse_method_parameters(int num_args TSRMLS_DC, zval *this_ptr, char *type_spec, …
250 ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args TSRMLS_DC, zval *this_ptr, cha…
334 #define getThis() (this_ptr)
H A Dzend_closures.c58 …} else if (call_user_function_ex(CG(function_table), NULL, this_ptr, &closure_result_ptr, ZEND_NUM… in ZEND_METHOD()
H A Dzend_vm_execute.h6076 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_TMP_CONST_HANDLER() local
6540 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_TMP_TMP_HANDLER() local
7006 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_TMP_VAR_HANDLER() local
7564 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_TMP_CV_HANDLER() local
10469 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_VAR_CONST_HANDLER() local
12281 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_VAR_TMP_HANDLER() local
14086 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_VAR_VAR_HANDLER() local
16482 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_VAR_CV_HANDLER() local
17830 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER() local
18948 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_UNUSED_TMP_HANDLER() local
[all …]
H A Dzend_object_handlers.c708 zend_class_entry *ce = Z_OBJCE_P(this_ptr); in zend_std_call_user_call()
729 …zend_call_method_with_2_params(&this_ptr, ce, &ce->__call, ZEND_CALL_FUNC_NAME, &method_result_ptr… in zend_std_call_user_call()
H A Dzend_vm_def.h1957 zval *this_ptr; variable
1958 ALLOC_ZVAL(this_ptr);
1959 INIT_PZVAL_COPY(this_ptr, EX(object));
1960 zval_copy_ctor(this_ptr);
1961 EX(object) = this_ptr;
/PHP-5.3/ext/spl/
H A Dspl_directory.c819 …zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.dir.func_rewind, "rewin… in SPL_METHOD()
828 …zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.dir.func_valid, "valid"… in SPL_METHOD()
837 …zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.dir.func_next, "next", … in SPL_METHOD()
2189 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
2204 …zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.file.func_getCurr, "get… in spl_filesystem_file_read_line_ex()
2255 static int spl_filesystem_file_read_line(zval * this_ptr, spl_filesystem_object *intern, int silent… in spl_filesystem_file_read_line() argument
2257 int ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent TSRMLS_CC); in spl_filesystem_file_read_line()
2261 ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent TSRMLS_CC); in spl_filesystem_file_read_line()
2268 static void spl_filesystem_file_rewind(zval * this_ptr, spl_filesystem_object *intern TSRMLS_DC) /*… in spl_filesystem_file_rewind() argument
2277 spl_filesystem_file_read_line(this_ptr, intern, 1 TSRMLS_CC); in spl_filesystem_file_rewind()
/PHP-5.3/ext/standard/
H A Duser_filters.c45 if (FAILURE == zend_hash_index_find(Z_OBJPROP_P(this_ptr), 0, (void**)&tmp)) { \
/PHP-5.3/ext/reflection/
H A Dphp_reflection.c81 …if (!this_ptr || !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { …

Completed in 343 milliseconds