| /PHP_5_3/ext/soap/ |
| 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 171 if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_proxy_host", sizeof("_proxy_host"), (void **) &proxy_host) == SUCCESS && 173 zend_hash_find(Z_OBJPROP_P(this_ptr), "_proxy_por 267 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 | 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 | soap.c | 64 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); 85 SOAP_GLOBAL(error_object) = this_ptr; 106 SOAP_GLOBAL(error_object) = this_ptr;\ 145 SOAP_GLOBAL(error_object) = this_ptr; 157 if(FIND_SDL_PROPERTY(this_ptr,__tmp) != FAILURE) { \ 173 if (zend_hash_find(Z_OBJPROP_P(this_ptr),"service", sizeof("service"), (void **)&tmp) != FAILURE) { \ 902 add_property_stringl(this_ptr, "param_name", name, name_length, 1); 903 add_property_zval(this_ptr, "param_data", data); 929 add_property_stringl(this_ptr, "namespace", ns, ns_len, 1); 930 add_property_stringl(this_ptr, "nam 2727 do_request(zval *this_ptr, xmlDoc *request, char *location, char *action, int version, int one_way, zval *response TSRMLS_DC) argument 2796 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 4351 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_3/Zend/ |
| H A D | zend_API.c | 881 ZEND_API int zend_parse_method_parameters(int num_args TSRMLS_DC, zval *this_ptr, char *type_spec, ...) /* {{{ */ argument 889 if (!this_ptr) { 903 *object = this_ptr; 905 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { 907 ce->name, get_active_function_name(TSRMLS_C), Z_OBJCE_P(this_ptr)->name, get_active_function_name(TSRMLS_C)); 917 ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args TSRMLS_DC, zval *this_ptr, char *type_spec, ...) /* {{{ */ argument 926 if (!this_ptr) { 940 *object = this_ptr; 942 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { 945 ce->name, get_active_function_name(TSRMLS_C), Z_OBJCE_P(this_ptr) [all...] |
| H A D | zend_execute_API.c | 939 zval *this_ptr; local 941 ALLOC_ZVAL(this_ptr); 942 *this_ptr = *EG(This); 943 INIT_PZVAL(this_ptr); 944 zval_copy_ctor(this_ptr); 945 EG(This) = this_ptr;
|
| H A D | zend_vm_def.h | 1957 zval *this_ptr; variable 1958 ALLOC_ZVAL(this_ptr); variable 1959 INIT_PZVAL_COPY(this_ptr, EX(object)); 1960 zval_copy_ctor(this_ptr); variable 1961 EX(object) = this_ptr;
|
| H A D | zend_vm_execute.h | 6074 zval *this_ptr; local 6075 ALLOC_ZVAL(this_ptr); 6076 INIT_PZVAL_COPY(this_ptr, EX(object)); 6077 zval_copy_ctor(this_ptr); 6078 EX(object) = this_ptr; 6538 zval *this_ptr; local 6539 ALLOC_ZVAL(this_ptr); 6540 INIT_PZVAL_COPY(this_ptr, EX(object)); 6541 zval_copy_ctor(this_ptr); 6542 EX(object) = this_ptr; 7004 zval *this_ptr; local 7562 zval *this_ptr; local 10467 zval *this_ptr; local 12279 zval *this_ptr; local 14084 zval *this_ptr; local 16480 zval *this_ptr; local 17828 zval *this_ptr; local 18946 zval *this_ptr; local 20005 zval *this_ptr; local 21324 zval *this_ptr; local 24220 zval *this_ptr; local 25860 zval *this_ptr; local 27552 zval *this_ptr; local 29733 zval *this_ptr; local [all...] |
| /PHP_5_3/ext/spl/ |
| H A D | spl_directory.c | 819 zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.dir.func_rewind, "rewind", &retval); 827 zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.dir.func_valid, "valid", &retval); 835 zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.dir.func_next, "next", &retval); 2187 static int spl_filesystem_file_read_line_ex(zval * this_ptr, spl_filesystem_object *intern, int silent TSRMLS_DC) /* {{{ */ argument 2202 zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.file.func_getCurr, "getCurrentLine", &retval); 2253 static int spl_filesystem_file_read_line(zval * this_ptr, spl_filesystem_object *intern, int silent TSRMLS_DC) /* {{{ */ argument 2255 int ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent TSRMLS_CC); 2259 ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent TSRMLS_CC); 2266 static void spl_filesystem_file_rewind(zval * this_ptr, spl_filesystem_object *intern TSRMLS_DC) /* {{{ */ argument 2275 spl_filesystem_file_read_line(this_ptr, inter [all...] |