| /PHP_5_4/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); 306 if (closure->this_ptr) { 308 *zobj_ptr = closure->this_ptr; 310 *ce_ptr = Z_OBJCE_P(closure->this_ptr); 342 if (closure->this_ptr) { [all...] |
| H A D | zend_API.c | 902 ZEND_API int zend_parse_method_parameters(int num_args TSRMLS_DC, zval *this_ptr, const char *type_spec, ...) /* {{{ */ argument 910 if (!this_ptr) { 924 *object = this_ptr; 926 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { 928 ce->name, get_active_function_name(TSRMLS_C), Z_OBJCE_P(this_ptr)->name, get_active_function_name(TSRMLS_C)); 938 ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args TSRMLS_DC, zval *this_ptr, const char *type_spec, ...) /* {{{ */ argument 947 if (!this_ptr) { 961 *object = this_ptr; 963 if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { 966 ce->name, get_active_function_name(TSRMLS_C), Z_OBJCE_P(this_ptr) [all...] |
| H A D | zend_execute_API.c | 928 zval *this_ptr; local 930 ALLOC_ZVAL(this_ptr); 931 *this_ptr = *EG(This); 932 INIT_PZVAL(this_ptr); 933 zval_copy_ctor(this_ptr); 934 EG(This) = this_ptr;
|
| H A D | zend_vm_def.h | 2202 zval *this_ptr; variable 2203 ALLOC_ZVAL(this_ptr); variable 2204 INIT_PZVAL_COPY(this_ptr, EX(object)); 2205 zval_copy_ctor(this_ptr); variable 2206 EX(object) = this_ptr; 2444 zval *this_ptr; variable 2445 ALLOC_ZVAL(this_ptr); variable 2446 INIT_PZVAL_COPY(this_ptr, EX(object)); 2447 zval_copy_ctor(this_ptr); variable 2448 EX(object) = this_ptr; [all...] |
| H A D | zend_vm_execute.h | 1302 zval *this_ptr; local 1303 ALLOC_ZVAL(this_ptr); 1304 INIT_PZVAL_COPY(this_ptr, EX(object)); 1305 zval_copy_ctor(this_ptr); 1306 EX(object) = this_ptr; 1608 zval *this_ptr; local 1609 ALLOC_ZVAL(this_ptr); 1610 INIT_PZVAL_COPY(this_ptr, EX(object)); 1611 zval_copy_ctor(this_ptr); 1612 EX(object) = this_ptr; 1776 zval *this_ptr; local 1977 zval *this_ptr; local 7964 zval *this_ptr; local 8633 zval *this_ptr; local 9307 zval *this_ptr; local 10402 zval *this_ptr; local 13466 zval *this_ptr; local 15635 zval *this_ptr; local 17772 zval *this_ptr; local 20886 zval *this_ptr; local 22353 zval *this_ptr; local 23603 zval *this_ptr; local 24762 zval *this_ptr; local 26188 zval *this_ptr; local 29254 zval *this_ptr; local 31202 zval *this_ptr; local 33209 zval *this_ptr; local 36054 zval *this_ptr; local [all...] |
| /PHP_5_4/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 | 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) { \ 788 add_property_stringl(this_ptr, "param_name", name, name_length, 1); 789 add_property_zval(this_ptr, "param_data", data); 815 add_property_stringl(this_ptr, "namespace", ns, ns_len, 1); 816 add_property_stringl(this_ptr, "name", name, name_len, 1); 818 add_property_zval(this_ptr, "dat 2533 do_request(zval *this_ptr, xmlDoc *request, char *location, char *action, int version, int one_way, zval *response TSRMLS_DC) argument 2602 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 4118 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_4/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); 2181 static int spl_filesystem_file_read_line_ex(zval * this_ptr, spl_filesystem_object *intern, int silent TSRMLS_DC) /* {{{ */ argument 2196 zend_call_method_with_0_params(&this_ptr, Z_OBJCE_P(getThis()), &intern->u.file.func_getCurr, "getCurrentLine", &retval); 2247 static int spl_filesystem_file_read_line(zval * this_ptr, spl_filesystem_object *intern, int silent TSRMLS_DC) /* {{{ */ argument 2249 int ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent TSRMLS_CC); 2253 ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent TSRMLS_CC); 2260 static void spl_filesystem_file_rewind(zval * this_ptr, spl_filesystem_object *intern TSRMLS_DC) /* {{{ */ argument 2269 spl_filesystem_file_read_line(this_ptr, inter [all...] |