Home
last modified time | relevance | path

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

/PHP-5.4/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
225 proxy_authentication(this_ptr, &soap_headers TSRMLS_CC); in http_connect()
271 int make_http_soap_request(zval *this_ptr, in make_http_soap_request() argument
304 if (this_ptr == NULL || Z_TYPE_P(this_ptr) != IS_OBJECT) { in make_http_soap_request()
370 if (SUCCESS == zend_hash_find(Z_OBJPROP_P(this_ptr), in make_http_soap_request()
431 zend_hash_del(Z_OBJPROP_P(this_ptr), "httpurl", sizeof("httpurl")); in make_http_soap_request()
442 zend_hash_del(Z_OBJPROP_P(this_ptr), "httpurl", sizeof("httpurl")); in make_http_soap_request()
454 add_property_long(this_ptr, "_use_proxy", use_proxy); in make_http_soap_request()
470 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;\
794 add_property_zval(this_ptr, "param_data", data); in PHP_METHOD()
823 add_property_zval(this_ptr, "data", data); in PHP_METHOD()
967 add_property_zval(this_ptr, "enc_value", data); in PHP_METHOD()
1224 add_property_resource(this_ptr, "service", ret); in PHP_METHOD()
2401 add_property_null(this_ptr, "_digest");
2434 add_property_long(this_ptr, "trace", 1);
2526 add_property_resource(this_ptr, "sdl", ret);
2613 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.4/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()
306 if (closure->this_ptr) { in zend_closure_get_closure()
342 if (closure->this_ptr) { in zend_closure_get_debug_info()
383 *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.h33 …ate_closure(zval *res, zend_function *op_array, zend_class_entry *scope, zval *this_ptr TSRMLS_DC);
H A Dzend_execute_API.c926 zval *this_ptr; in zend_call_function() local
928 ALLOC_ZVAL(this_ptr); in zend_call_function()
929 *this_ptr = *EG(This); in zend_call_function()
930 INIT_PZVAL(this_ptr); in zend_call_function()
931 zval_copy_ctor(this_ptr); in zend_call_function()
932 EG(This) = this_ptr; in zend_call_function()
H A Dzend.h275 …N_PARAMETERS int ht, zval *return_value, zval **return_value_ptr, zval *this_ptr, int return_value…
276 #define INTERNAL_FUNCTION_PARAM_PASSTHRU ht, return_value, return_value_ptr, this_ptr, return_value…
H A Dzend_API.c902 ZEND_API int zend_parse_method_parameters(int num_args TSRMLS_DC, zval *this_ptr, const char *type_… in zend_parse_method_parameters() argument
910 if (!this_ptr) { in zend_parse_method_parameters()
924 *object = this_ptr; in zend_parse_method_parameters()
926 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { in zend_parse_method_parameters()
928 …ce->name, get_active_function_name(TSRMLS_C), Z_OBJCE_P(this_ptr)->name, get_active_function_name(… in zend_parse_method_parameters()
938 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
947 if (!this_ptr) { in zend_parse_method_parameters_ex()
961 *object = this_ptr; in zend_parse_method_parameters_ex()
963 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { in zend_parse_method_parameters_ex()
966 …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.h8003 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_TMP_CONST_HANDLER() local
8674 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_TMP_TMP_HANDLER() local
9348 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_TMP_VAR_HANDLER() local
10447 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_TMP_CV_HANDLER() local
13516 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_VAR_CONST_HANDLER() local
15693 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_VAR_TMP_HANDLER() local
17834 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_VAR_VAR_HANDLER() local
20962 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_VAR_CV_HANDLER() local
22431 zval *this_ptr; in ZEND_INIT_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER() local
23683 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…
345 #define getThis() (this_ptr)
H A Dzend_vm_def.h2204 zval *this_ptr; variable
2205 ALLOC_ZVAL(this_ptr);
2206 INIT_PZVAL_COPY(this_ptr, EX(object));
2207 zval_copy_ctor(this_ptr);
2208 EX(object) = this_ptr;
2450 zval *this_ptr; variable
2451 ALLOC_ZVAL(this_ptr);
2452 INIT_PZVAL_COPY(this_ptr, EX(object));
2453 zval_copy_ctor(this_ptr);
2454 EX(object) = this_ptr;
H A Dzend_object_handlers.c872 zend_class_entry *ce = Z_OBJCE_P(this_ptr); in zend_std_call_user_call()
893 …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.4/ext/date/
H A Dphp_date.c582 static zend_object_value date_object_clone_date(zval *this_ptr TSRMLS_DC);
583 static zend_object_value date_object_clone_timezone(zval *this_ptr TSRMLS_DC);
584 static zend_object_value date_object_clone_interval(zval *this_ptr TSRMLS_DC);
585 static zend_object_value date_object_clone_period(zval *this_ptr TSRMLS_DC);
2055 static zend_object_value date_object_clone_date(zval *this_ptr TSRMLS_DC) in date_object_clone_date()
2058 php_date_obj *old_obj = (php_date_obj *) zend_object_store_get_object(this_ptr TSRMLS_CC); in date_object_clone_date()
2189 static zend_object_value date_object_clone_timezone(zval *this_ptr TSRMLS_DC) in date_object_clone_timezone()
2192 php_timezone_obj *old_obj = (php_timezone_obj *) zend_object_store_get_object(this_ptr TSRMLS_CC); in date_object_clone_timezone()
2244 static zend_object_value date_object_clone_interval(zval *this_ptr TSRMLS_DC) in date_object_clone_interval()
2333 static zend_object_value date_object_clone_period(zval *this_ptr TSRMLS_DC) in date_object_clone_period()
[all …]
/PHP-5.4/ext/spl/
H A Dspl_directory.c829 …zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.dir.func_rewind, "rewin… in SPL_METHOD()
838 …zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.dir.func_valid, "valid"… in SPL_METHOD()
847 …zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.dir.func_next, "next", … in SPL_METHOD()
2191 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
2206 …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()
2257 static int spl_filesystem_file_read_line(zval * this_ptr, spl_filesystem_object *intern, int silent… in spl_filesystem_file_read_line() argument
2259 int ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent TSRMLS_CC); in spl_filesystem_file_read_line()
2263 ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent TSRMLS_CC); in spl_filesystem_file_read_line()
2270 static void spl_filesystem_file_rewind(zval * this_ptr, spl_filesystem_object *intern TSRMLS_DC) /*… in spl_filesystem_file_rewind() argument
2279 spl_filesystem_file_read_line(this_ptr, intern, 1 TSRMLS_CC); in spl_filesystem_file_rewind()
/PHP-5.4/ext/standard/
H A Duser_filters.c45 if (FAILURE == zend_hash_index_find(Z_OBJPROP_P(this_ptr), 0, (void**)&tmp)) { \
/PHP-5.4/ext/reflection/
H A Dphp_reflection.c87 …if (!this_ptr || !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { …

Completed in 213 milliseconds