Home
last modified time | relevance | path

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

/PHP-5.5/ext/soap/
H A Dphp_http.c35 int proxy_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC) in proxy_authentication() argument
64 int basic_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC) in basic_authentication() argument
260 proxy_authentication(this_ptr, &soap_headers TSRMLS_CC); in http_connect()
333 int make_http_soap_request(zval *this_ptr, in make_http_soap_request() argument
366 if (this_ptr == NULL || Z_TYPE_P(this_ptr) != IS_OBJECT) { in make_http_soap_request()
432 if (SUCCESS == zend_hash_find(Z_OBJPROP_P(this_ptr), in make_http_soap_request()
493 zend_hash_del(Z_OBJPROP_P(this_ptr), "httpurl", sizeof("httpurl")); in make_http_soap_request()
504 zend_hash_del(Z_OBJPROP_P(this_ptr), "httpurl", sizeof("httpurl")); in make_http_soap_request()
516 add_property_long(this_ptr, "_use_proxy", use_proxy); in make_http_soap_request()
532 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.c80 SOAP_GLOBAL(error_object) = this_ptr;
100 SOAP_GLOBAL(error_object) = this_ptr;\
800 add_property_zval(this_ptr, "param_data", data); in PHP_METHOD()
829 add_property_zval(this_ptr, "data", data); in PHP_METHOD()
973 add_property_zval(this_ptr, "enc_value", data); in PHP_METHOD()
1230 add_property_resource(this_ptr, "service", ret); in PHP_METHOD()
2406 add_property_null(this_ptr, "_digest");
2439 add_property_long(this_ptr, "trace", 1);
2536 add_property_resource(this_ptr, "sdl", ret);
2623 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()
3189 sdlPtr get_sdl(zval *this_ptr, char *uri, long cache_wsdl TSRMLS_DC) in get_sdl() argument
3258 if (SUCCESS == zend_hash_find(Z_OBJPROP_P(this_ptr), in get_sdl()
3265 …if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_user_agent", sizeof("_user_agent"), (void **) &tmp) ==… in get_sdl()
3272 …if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_proxy_host", sizeof("_proxy_host"), (void **) &proxy_h… in get_sdl()
3305 has_proxy_authorization = proxy_authentication(this_ptr, &headers TSRMLS_CC); in get_sdl()
3308 has_authorization = basic_authentication(this_ptr, &headers TSRMLS_CC); in get_sdl()
[all …]
/PHP-5.5/Zend/
H A Dzend_closures.c40 zval *this_ptr; member
179 return closure->this_ptr; in zend_get_closure_this_ptr()
259 if (closure->this_ptr) { in zend_closure_free_storage()
305 if (closure->this_ptr) { in zend_closure_get_closure()
341 if (closure->this_ptr) { in zend_closure_get_debug_info()
382 *table = closure->this_ptr ? &closure->this_ptr : NULL; in zend_closure_get_gc()
481 this_ptr = NULL; in zend_create_closure()
485 this_ptr = NULL; in zend_create_closure()
490 closure->this_ptr = NULL; in zend_create_closure()
498 closure->this_ptr = this_ptr; in zend_create_closure()
[all …]
H A Dzend_closures.h31 …ate_closure(zval *res, zend_function *op_array, zend_class_entry *scope, zval *this_ptr TSRMLS_DC);
H A Dzend_execute_API.c900 zval *this_ptr; in zend_call_function() local
902 ALLOC_ZVAL(this_ptr); in zend_call_function()
903 *this_ptr = *EG(This); in zend_call_function()
904 INIT_PZVAL(this_ptr); in zend_call_function()
905 zval_copy_ctor(this_ptr); in zend_call_function()
906 EG(This) = this_ptr; in zend_call_function()
H A Dzend.h290 …N_PARAMETERS int ht, zval *return_value, zval **return_value_ptr, zval *this_ptr, int return_value…
291 #define INTERNAL_FUNCTION_PARAM_PASSTHRU ht, return_value, return_value_ptr, this_ptr, return_value…
H A Dzend_API.c931 ZEND_API int zend_parse_method_parameters(int num_args TSRMLS_DC, zval *this_ptr, const char *type_… in zend_parse_method_parameters() argument
939 if (!this_ptr) { in zend_parse_method_parameters()
953 *object = this_ptr; in zend_parse_method_parameters()
955 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { in zend_parse_method_parameters()
957 …ce->name, get_active_function_name(TSRMLS_C), Z_OBJCE_P(this_ptr)->name, get_active_function_name(… in zend_parse_method_parameters()
967 ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args TSRMLS_DC, zval *this_ptr, con… in zend_parse_method_parameters_ex() argument
976 if (!this_ptr) { in zend_parse_method_parameters_ex()
990 *object = this_ptr; in zend_parse_method_parameters_ex()
992 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { in zend_parse_method_parameters_ex()
995 …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_vm_execute.h9005 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_TMP_CONST_HANDLER() local
9861 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_TMP_TMP_HANDLER() local
10720 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_TMP_VAR_HANDLER() local
12162 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_TMP_CV_HANDLER() local
15384 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_VAR_CONST_HANDLER() local
17741 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_VAR_TMP_HANDLER() local
20059 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_VAR_VAR_HANDLER() local
23531 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_VAR_CV_HANDLER() local
25177 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER() local
26599 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_UNUSED_TMP_HANDLER() local
[all …]
H A Dzend_API.h258 ZEND_API int zend_parse_method_parameters(int num_args TSRMLS_DC, zval *this_ptr, const char *type_…
259 ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args TSRMLS_DC, zval *this_ptr, con…
347 #define getThis() (this_ptr)
H A Dzend_vm_def.h2486 zval *this_ptr; variable
2487 ALLOC_ZVAL(this_ptr);
2488 INIT_PZVAL_COPY(this_ptr, call->object);
2489 zval_copy_ctor(this_ptr);
2490 call->object = this_ptr;
2745 zval *this_ptr; variable
2746 ALLOC_ZVAL(this_ptr);
2747 INIT_PZVAL_COPY(this_ptr, call->object);
2748 zval_copy_ctor(this_ptr);
2749 call->object = this_ptr;
H A Dzend_object_handlers.c878 zend_class_entry *ce = Z_OBJCE_P(this_ptr); in zend_std_call_user_call()
899 …zend_call_method_with_2_params(&this_ptr, ce, &ce->__call, ZEND_CALL_FUNC_NAME, &method_result_ptr… in zend_std_call_user_call()
/PHP-5.5/ext/date/
H A Dphp_date.c627 static zend_object_value date_object_clone_date(zval *this_ptr TSRMLS_DC);
628 static zend_object_value date_object_clone_timezone(zval *this_ptr TSRMLS_DC);
629 static zend_object_value date_object_clone_interval(zval *this_ptr TSRMLS_DC);
630 static zend_object_value date_object_clone_period(zval *this_ptr TSRMLS_DC);
2138 static zend_object_value date_object_clone_date(zval *this_ptr TSRMLS_DC) in date_object_clone_date()
2141 php_date_obj *old_obj = (php_date_obj *) zend_object_store_get_object(this_ptr TSRMLS_CC); in date_object_clone_date()
2287 static zend_object_value date_object_clone_timezone(zval *this_ptr TSRMLS_DC) in date_object_clone_timezone()
2290 php_timezone_obj *old_obj = (php_timezone_obj *) zend_object_store_get_object(this_ptr TSRMLS_CC); in date_object_clone_timezone()
2386 static zend_object_value date_object_clone_interval(zval *this_ptr TSRMLS_DC) in date_object_clone_interval()
2475 static zend_object_value date_object_clone_period(zval *this_ptr TSRMLS_DC) in date_object_clone_period()
[all …]
/PHP-5.5/ext/opcache/
H A Dzend_accelerator_module.c555 (void)ht; (void)return_value_ptr; (void)this_ptr; (void)return_value_used; in ZEND_FUNCTION()
641 (void)ht; (void)return_value_ptr; (void)this_ptr; (void)return_value_used; in ZEND_FUNCTION()
709 (void)ht; (void)return_value_ptr; (void)this_ptr; (void)return_value_used; in ZEND_FUNCTION()
/PHP-5.5/ext/spl/
H A Dspl_directory.c832 …zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.dir.func_rewind, "rewin… in SPL_METHOD()
841 …zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.dir.func_valid, "valid"… in SPL_METHOD()
850 …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.5/ext/standard/
H A Duser_filters.c45 if (FAILURE == zend_hash_index_find(Z_OBJPROP_P(this_ptr), 0, (void**)&tmp)) { \
/PHP-5.5/ext/reflection/
H A Dphp_reflection.c87 …if (!this_ptr || !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { …

Completed in 217 milliseconds