| /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_closures.h | 33 ZEND_API void zend_create_closure(zval *res, zend_function *op_array, zend_class_entry *scope, zval *this_ptr TSRMLS_DC);
|
| H A D | zend.h | 275 #define INTERNAL_FUNCTION_PARAMETERS int ht, zval *return_value, zval **return_value_ptr, zval *this_ptr, int return_value_used TSRMLS_DC 276 #define INTERNAL_FUNCTION_PARAM_PASSTHRU ht, return_value, return_value_ptr, this_ptr, return_value_used TSRMLS_CC
|
| H A D | zend_object_handlers.c | 872 zend_class_entry *ce = Z_OBJCE_P(this_ptr); 893 zend_call_method_with_2_params(&this_ptr, ce, &ce->__call, ZEND_CALL_FUNC_NAME, &method_result_ptr, method_name_ptr, method_args_ptr);
|
| H A D | zend_execute_API.c | 926 zval *this_ptr; local 928 ALLOC_ZVAL(this_ptr); 929 *this_ptr = *EG(This); 930 INIT_PZVAL(this_ptr); 931 zval_copy_ctor(this_ptr); 932 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 | 1304 zval *this_ptr; local 1305 ALLOC_ZVAL(this_ptr); 1306 INIT_PZVAL_COPY(this_ptr, EX(object)); 1307 zval_copy_ctor(this_ptr); 1308 EX(object) = this_ptr; 1610 zval *this_ptr; local 1611 ALLOC_ZVAL(this_ptr); 1612 INIT_PZVAL_COPY(this_ptr, EX(object)); 1613 zval_copy_ctor(this_ptr); 1614 EX(object) = this_ptr; 1778 zval *this_ptr; local 1979 zval *this_ptr; local 7966 zval *this_ptr; local 8635 zval *this_ptr; local 9309 zval *this_ptr; local 10404 zval *this_ptr; local 13468 zval *this_ptr; local 15637 zval *this_ptr; local 17774 zval *this_ptr; local 20888 zval *this_ptr; local 22355 zval *this_ptr; local 23605 zval *this_ptr; local 24764 zval *this_ptr; local 26190 zval *this_ptr; local 29256 zval *this_ptr; local 31204 zval *this_ptr; local 33211 zval *this_ptr; local 36056 zval *this_ptr; local [all...] |
| H A D | zend_API.h | 258 ZEND_API int zend_parse_method_parameters(int num_args TSRMLS_DC, zval *this_ptr, const char *type_spec, ...); 259 ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args TSRMLS_DC, zval *this_ptr, const char *type_spec, ...); 345 #define getThis() (this_ptr)
|
| 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...] |
| /PHP_5_4/ext/soap/ |
| H A D | php_http.h | 25 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 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_packet_soap.h | 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);
|
| H A D | php_sdl.h | 257 sdlPtr get_sdl(zval *this_ptr, char *uri, long cache_wsdl TSRMLS_DC);
|
| 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 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 | 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...] |
| /PHP_5_4/ext/reflection/ |
| H A D | php_reflection.c | 87 if (!this_ptr || !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { \
|
| /PHP_5_4/ext/date/ |
| H A D | php_date.c | 578 static zend_object_value date_object_clone_date(zval *this_ptr TSRMLS_DC); 579 static zend_object_value date_object_clone_timezone(zval *this_ptr TSRMLS_DC); 580 static zend_object_value date_object_clone_interval(zval *this_ptr TSRMLS_DC); 581 static zend_object_value date_object_clone_period(zval *this_ptr TSRMLS_DC); 2042 static zend_object_value date_object_clone_date(zval *this_ptr TSRMLS_DC) 2045 php_date_obj *old_obj = (php_date_obj *) zend_object_store_get_object(this_ptr TSRMLS_CC); 2048 zend_objects_clone_members(&new_obj->std, new_ov, &old_obj->std, Z_OBJ_HANDLE_P(this_ptr) TSRMLS_CC); 2176 static zend_object_value date_object_clone_timezone(zval *this_ptr TSRMLS_DC) 2179 php_timezone_obj *old_obj = (php_timezone_obj *) zend_object_store_get_object(this_ptr TSRMLS_CC); 2182 zend_objects_clone_members(&new_obj->std, new_ov, &old_obj->std, Z_OBJ_HANDLE_P(this_ptr) TSRMLS_C [all...] |
| /PHP_5_4/ext/standard/ |
| H A D | user_filters.c | 45 if (FAILURE == zend_hash_index_find(Z_OBJPROP_P(this_ptr), 0, (void**)&tmp)) { \
|