| /PHP_5_5/ext/soap/ |
| H A D | php_packet_soap.c | 25 int parse_packet_soap(zval *this_ptr, char *buffer, int buffer_size, sdlFunctionPtr fn, char *fn_name, zval *return_value, zval *soap_headers TSRMLS_DC) argument 46 add_soap_fault(this_ptr, "Client", "looks like we got no XML document", NULL, NULL TSRMLS_CC); 50 add_soap_fault(this_ptr, "Client", "DTD are not supported by SOAP", NULL, NULL TSRMLS_CC); 69 add_soap_fault(this_ptr, "VersionMismatch", "Wrong Version", NULL, NULL TSRMLS_CC); 77 add_soap_fault(this_ptr, "Client", "looks like we got XML without \"Envelope\" element", NULL, NULL TSRMLS_CC); 85 add_soap_fault(this_ptr, "Client", "A SOAP Envelope element cannot have non Namespace qualified attributes", NULL, NULL TSRMLS_CC); 90 add_soap_fault(this_ptr, "Client", "encodingStyle cannot be specified on the Envelope", NULL, NULL TSRMLS_CC); 94 add_soap_fault(this_ptr, "Client", "Unknown data encoding style", NULL, NULL TSRMLS_CC); 126 add_soap_fault(this_ptr, "Client", "Body must be present in a SOAP envelope", NULL, NULL TSRMLS_CC); 134 add_soap_fault(this_ptr, "Clien [all...] |
| H A D | php_sdl.c | 321 static void load_wsdl_ex(zval *this_ptr, char *struri, sdlCtx *ctx, int include TSRMLS_DC) argument 399 load_wsdl_ex(this_ptr, (char*)uri, ctx, 1 TSRMLS_CC); 731 static sdlPtr load_wsdl(zval *this_ptr, char *struri TSRMLS_DC) argument 748 load_wsdl_ex(this_ptr, struri,&ctx, 0 TSRMLS_CC); 3188 sdlPtr get_sdl(zval *this_ptr, char *uri, long cache_wsdl TSRMLS_DC) argument 3257 if (SUCCESS == zend_hash_find(Z_OBJPROP_P(this_ptr), 3264 if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_user_agent", sizeof("_user_agent"), (void **) &tmp) == SUCCESS && 3271 if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_proxy_host", sizeof("_proxy_host"), (void **) &proxy_host) == SUCCESS && 3273 zend_hash_find(Z_OBJPROP_P(this_ptr), "_proxy_port", sizeof("_proxy_port"), (void **) &proxy_port) == SUCCESS && 3304 has_proxy_authorization = proxy_authentication(this_ptr, [all...] |
| H A D | php_http.c | 35 int proxy_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC) argument 39 if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_proxy_login", sizeof("_proxy_login"), (void **)&login) == SUCCESS) { 46 if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_proxy_password", sizeof("_proxy_password"), (void **)&password) == SUCCESS) { 62 int basic_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC) argument 66 if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_login", sizeof("_login"), (void **)&login) == SUCCESS && 67 !zend_hash_exists(Z_OBJPROP_P(this_ptr), "_digest", sizeof("_digest"))) { 74 if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_password", sizeof("_password"), (void **)&password) == SUCCESS) { 159 static php_stream* http_connect(zval* this_ptr, php_url *phpurl, int use_ssl, php_stream_context *context, int *use_proxy TSRMLS_DC) argument 172 if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_proxy_host", sizeof("_proxy_host"), (void **) &proxy_host) == SUCCESS && 174 zend_hash_find(Z_OBJPROP_P(this_ptr), "_proxy_por 329 make_http_soap_request(zval *this_ptr, char *buf, int buf_size, char *location, char *soapaction, int soap_version, char **buffer, int *buffer_len TSRMLS_DC) argument [all...] |
| H A D | soap.c | 63 static xmlDocPtr serialize_function_call(zval *this_ptr, sdlFunctionPtr function, char *function_name, char *uri, zval **arguments, int arg_count, int version, HashTable *soap_headers TSRMLS_DC); 80 SOAP_GLOBAL(error_object) = this_ptr; 100 SOAP_GLOBAL(error_object) = this_ptr;\ 135 if(FIND_SDL_PROPERTY(this_ptr,__tmp) != FAILURE) { \ 151 if (zend_hash_find(Z_OBJPROP_P(this_ptr),"service", sizeof("service"), (void **)&tmp) != FAILURE) { \ 794 add_property_stringl(this_ptr, "param_name", name, name_length, 1); 795 add_property_zval(this_ptr, "param_data", data); 821 add_property_stringl(this_ptr, "namespace", ns, ns_len, 1); 822 add_property_stringl(this_ptr, "name", name, name_len, 1); 824 add_property_zval(this_ptr, "dat 2544 do_request(zval *this_ptr, xmlDoc *request, char *location, char *action, int version, int one_way, zval *response TSRMLS_DC) argument 2613 do_soap_call(zval* this_ptr, char* function, int function_len, int arg_count, zval** real_args, zval* return_value, char* location, char* soap_action, char* call_uri, HashTable* soap_headers, zval* output_headers TSRMLS_DC) argument 4129 serialize_function_call(zval *this_ptr, sdlFunctionPtr function, char *function_name, char *uri, zval **arguments, int arg_count, int version, HashTable *soap_headers TSRMLS_DC) argument [all...] |
| /PHP_5_5/Zend/ |
| H A D | zend_closures.c | 40 zval *this_ptr; member in struct:_zend_closure 59 } else if (call_user_function_ex(CG(function_table), NULL, this_ptr, &closure_result_ptr, ZEND_NUM_ARGS(), arguments, 1, NULL TSRMLS_CC) == FAILURE) { 179 return closure->this_ptr; 259 if (closure->this_ptr) { 260 zval_ptr_dtor(&closure->this_ptr); 289 zend_create_closure(&result, &closure->func, closure->func.common.scope, closure->this_ptr TSRMLS_CC); 305 if (closure->this_ptr) { 307 *zobj_ptr = closure->this_ptr; 309 *ce_ptr = Z_OBJCE_P(closure->this_ptr); 341 if (closure->this_ptr) { [all...] |
| H A D | zend_API.c | 931 ZEND_API int zend_parse_method_parameters(int num_args TSRMLS_DC, zval *this_ptr, const char *type_spec, ...) /* {{{ */ argument 939 if (!this_ptr) { 953 *object = this_ptr; 955 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { 957 ce->name, get_active_function_name(TSRMLS_C), Z_OBJCE_P(this_ptr)->name, get_active_function_name(TSRMLS_C)); 967 ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args TSRMLS_DC, zval *this_ptr, const char *type_spec, ...) /* {{{ */ argument 976 if (!this_ptr) { 990 *object = this_ptr; 992 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { 995 ce->name, get_active_function_name(TSRMLS_C), Z_OBJCE_P(this_ptr) [all...] |
| H A D | zend_execute_API.c | 907 zval *this_ptr; local 909 ALLOC_ZVAL(this_ptr); 910 *this_ptr = *EG(This); 911 INIT_PZVAL(this_ptr); 912 zval_copy_ctor(this_ptr); 913 EG(This) = this_ptr;
|
| H A D | zend_vm_def.h | 2486 zval *this_ptr; variable 2487 ALLOC_ZVAL(this_ptr); variable 2488 INIT_PZVAL_COPY(this_ptr, call->object); 2489 zval_copy_ctor(this_ptr); variable 2490 call->object = this_ptr; 2743 zval *this_ptr; variable 2744 ALLOC_ZVAL(this_ptr); variable 2745 INIT_PZVAL_COPY(this_ptr, call->object); 2746 zval_copy_ctor(this_ptr); variable 2747 call->object = this_ptr; [all...] |
| H A D | zend_vm_execute.h | 1326 zval *this_ptr; local 1327 ALLOC_ZVAL(this_ptr); 1328 INIT_PZVAL_COPY(this_ptr, call->object); 1329 zval_copy_ctor(this_ptr); 1330 call->object = this_ptr; 1653 zval *this_ptr; local 1654 ALLOC_ZVAL(this_ptr); 1655 INIT_PZVAL_COPY(this_ptr, call->object); 1656 zval_copy_ctor(this_ptr); 1657 call->object = this_ptr; 1840 zval *this_ptr; local 2065 zval *this_ptr; local 8996 zval *this_ptr; local 9857 zval *this_ptr; local 10723 zval *this_ptr; local 12164 zval *this_ptr; local 15381 zval *this_ptr; local 17732 zval *this_ptr; local 20048 zval *this_ptr; local 23502 zval *this_ptr; local 25141 zval *this_ptr; local 26556 zval *this_ptr; local 27877 zval *this_ptr; local 29619 zval *this_ptr; local 32849 zval *this_ptr; local 34969 zval *this_ptr; local 37148 zval *this_ptr; local 40319 zval *this_ptr; local [all...] |
| /PHP_5_5/ext/spl/ |
| H A D | spl_directory.c | 823 zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.dir.func_rewind, "rewind", &retval); 831 zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.dir.func_valid, "valid", &retval); 839 zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.dir.func_next, "next", &retval); 2177 static int spl_filesystem_file_read_line_ex(zval * this_ptr, spl_filesystem_object *intern, int silent TSRMLS_DC) /* {{{ */ argument 2192 zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.file.func_getCurr, "getCurrentLine", &retval); 2243 static int spl_filesystem_file_read_line(zval * this_ptr, spl_filesystem_object *intern, int silent TSRMLS_DC) /* {{{ */ argument 2245 int ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent TSRMLS_CC); 2249 ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent TSRMLS_CC); 2256 static void spl_filesystem_file_rewind(zval * this_ptr, spl_filesystem_object *intern TSRMLS_DC) /* {{{ */ argument 2265 spl_filesystem_file_read_line(this_ptr, inter [all...] |