this_ptr          982 Zend/zend_API.c ZEND_API int zend_parse_method_parameters(int num_args, zval *this_ptr, const char *type_spec, ...) /* {{{ */
this_ptr          997 Zend/zend_API.c 	if (!is_method || !this_ptr || Z_TYPE_P(this_ptr) != IS_OBJECT) {
this_ptr         1008 Zend/zend_API.c 		*object = this_ptr;
this_ptr         1010 Zend/zend_API.c 		if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce)) {
this_ptr         1012 Zend/zend_API.c 				ZSTR_VAL(Z_OBJCE_P(this_ptr)->name), get_active_function_name(), ZSTR_VAL(ce->name), get_active_function_name());
this_ptr         1022 Zend/zend_API.c ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args, zval *this_ptr, const char *type_spec, ...) /* {{{ */
this_ptr         1030 Zend/zend_API.c 	if (!this_ptr) {
this_ptr         1040 Zend/zend_API.c 		*object = this_ptr;
this_ptr         1042 Zend/zend_API.c 		if (ce && !instanceof_function(Z_OBJCE_P(this_ptr), ce)) {
this_ptr         1045 Zend/zend_API.c 					ZSTR_VAL(ce->name), get_active_function_name(), ZSTR_VAL(Z_OBJCE_P(this_ptr)->name), get_active_function_name());
this_ptr          271 Zend/zend_API.h ZEND_API int zend_parse_method_parameters(int num_args, zval *this_ptr, const char *type_spec, ...);
this_ptr          272 Zend/zend_API.h ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args, zval *this_ptr, const char *type_spec, ...);
this_ptr           43 Zend/zend_closures.c 	zval              this_ptr;
this_ptr          294 Zend/zend_closures.c 	return &closure->this_ptr;
this_ptr          361 Zend/zend_closures.c 	if (Z_TYPE(closure->this_ptr) != IS_UNDEF) {
this_ptr          362 Zend/zend_closures.c 		zval_ptr_dtor(&closure->this_ptr);
this_ptr          387 Zend/zend_closures.c 		closure->func.common.scope, closure->called_scope, &closure->this_ptr);
this_ptr          405 Zend/zend_closures.c 		if (Z_TYPE(closure->this_ptr) != IS_UNDEF) {
this_ptr          406 Zend/zend_closures.c 			*obj_ptr = Z_OBJ(closure->this_ptr);
this_ptr          433 Zend/zend_closures.c 	if (Z_TYPE(closure->this_ptr) != IS_UNDEF) {
this_ptr          434 Zend/zend_closures.c 		Z_ADDREF(closure->this_ptr);
this_ptr          435 Zend/zend_closures.c 		zend_hash_str_update(debug_info, "this", sizeof("this")-1, &closure->this_ptr);
this_ptr          477 Zend/zend_closures.c 	*table = Z_TYPE(closure->this_ptr) != IS_NULL ? &closure->this_ptr : NULL;
this_ptr          478 Zend/zend_closures.c 	*n = Z_TYPE(closure->this_ptr) != IS_NULL ? 1 : 0;
this_ptr          554 Zend/zend_closures.c ZEND_API void zend_create_closure(zval *res, zend_function *func, zend_class_entry *scope, zend_class_entry *called_scope, zval *this_ptr) /* {{{ */
this_ptr          562 Zend/zend_closures.c 	if ((scope == NULL) && this_ptr && (Z_TYPE_P(this_ptr) != IS_UNDEF)) {
this_ptr          602 Zend/zend_closures.c 			this_ptr = NULL;
this_ptr          607 Zend/zend_closures.c 	ZVAL_UNDEF(&closure->this_ptr);
this_ptr          614 Zend/zend_closures.c 		if (this_ptr && Z_TYPE_P(this_ptr) == IS_OBJECT && (closure->func.common.fn_flags & ZEND_ACC_STATIC) == 0) {
this_ptr          615 Zend/zend_closures.c 			ZVAL_COPY(&closure->this_ptr, this_ptr);
this_ptr          621 Zend/zend_closures.c ZEND_API void zend_create_fake_closure(zval *res, zend_function *func, zend_class_entry *scope, zend_class_entry *called_scope, zval *this_ptr) /* {{{ */
this_ptr          625 Zend/zend_closures.c 	zend_create_closure(res, func, scope, called_scope, this_ptr);
this_ptr           31 Zend/zend_closures.h ZEND_API void zend_create_closure(zval *res, zend_function *op_array, zend_class_entry *scope, zend_class_entry *called_scope, zval *this_ptr);
this_ptr           32 Zend/zend_closures.h ZEND_API void zend_create_fake_closure(zval *res, zend_function *op_array, zend_class_entry *scope, zend_class_entry *called_scope, zval *this_ptr);
this_ptr          633 ext/date/php_date.c static zend_object *date_object_clone_date(zval *this_ptr);
this_ptr          634 ext/date/php_date.c static zend_object *date_object_clone_timezone(zval *this_ptr);
this_ptr          635 ext/date/php_date.c static zend_object *date_object_clone_interval(zval *this_ptr);
this_ptr          636 ext/date/php_date.c static zend_object *date_object_clone_period(zval *this_ptr);
this_ptr         2101 ext/date/php_date.c static zend_object *date_object_clone_date(zval *this_ptr) /* {{{ */
this_ptr         2103 ext/date/php_date.c 	php_date_obj *old_obj = Z_PHPDATE_P(this_ptr);
this_ptr         2232 ext/date/php_date.c static zend_object *date_object_clone_timezone(zval *this_ptr) /* {{{ */
this_ptr         2234 ext/date/php_date.c 	php_timezone_obj *old_obj = Z_PHPTIMEZONE_P(this_ptr);
this_ptr         2323 ext/date/php_date.c static zend_object *date_object_clone_interval(zval *this_ptr) /* {{{ */
this_ptr         2325 ext/date/php_date.c 	php_interval_obj *old_obj = Z_PHPINTERVAL_P(this_ptr);
this_ptr         2405 ext/date/php_date.c static zend_object *date_object_clone_period(zval *this_ptr) /* {{{ */
this_ptr         2407 ext/date/php_date.c 	php_period_obj *old_obj = Z_PHPPERIOD_P(this_ptr);
this_ptr           35 ext/soap/php_http.c int proxy_authentication(zval* this_ptr, smart_str* soap_headers)
this_ptr           39 ext/soap/php_http.c 	if ((login = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_proxy_login", sizeof("_proxy_login")-1)) != NULL &&
this_ptr           46 ext/soap/php_http.c 		if ((password = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_proxy_password", sizeof("_proxy_password")-1)) != NULL &&
this_ptr           63 ext/soap/php_http.c int basic_authentication(zval* this_ptr, smart_str* soap_headers)
this_ptr           67 ext/soap/php_http.c 	if ((login = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_login", sizeof("_login")-1)) != NULL &&
this_ptr           69 ext/soap/php_http.c 	    !zend_hash_str_exists(Z_OBJPROP_P(this_ptr), "_digest", sizeof("_digest")-1)) {
this_ptr           75 ext/soap/php_http.c 		if ((password = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_password", sizeof("_password")-1)) != NULL &&
this_ptr          161 ext/soap/php_http.c static php_stream* http_connect(zval* this_ptr, php_url *phpurl, int use_ssl, php_stream_context *context, int *use_proxy)
this_ptr          174 ext/soap/php_http.c 	if ((proxy_host = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_proxy_host", sizeof("_proxy_host")-1)) != NULL &&
this_ptr          176 ext/soap/php_http.c 	    (proxy_port = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_proxy_port", sizeof("_proxy_port")-1)) != NULL &&
this_ptr          185 ext/soap/php_http.c 	if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_connection_timeout", sizeof("_connection_timeout")-1)) != NULL &&
this_ptr          197 ext/soap/php_http.c 		if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_ssl_method", sizeof("_ssl_method")-1)) != NULL &&
this_ptr          256 ext/soap/php_http.c 		proxy_authentication(this_ptr, &soap_headers);
this_ptr          278 ext/soap/php_http.c 			if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_ssl_method", sizeof("_ssl_method")-1)) != NULL &&
this_ptr          329 ext/soap/php_http.c int make_http_soap_request(zval        *this_ptr,
this_ptr          362 ext/soap/php_http.c 	if (this_ptr == NULL || Z_TYPE_P(this_ptr) != IS_OBJECT) {
this_ptr          368 ext/soap/php_http.c 	if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "compression", sizeof("compression")-1)) != NULL && Z_TYPE_P(tmp) == IS_LONG) {
this_ptr          412 ext/soap/php_http.c 	if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "httpsocket", sizeof("httpsocket")-1)) != NULL) {
this_ptr          414 ext/soap/php_http.c 		if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_use_proxy", sizeof("_use_proxy")-1)) != NULL && Z_TYPE_P(tmp) == IS_LONG) {
this_ptr          425 ext/soap/php_http.c 	if (NULL != (tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr),
this_ptr          444 ext/soap/php_http.c 		add_soap_fault(this_ptr, "HTTP", "Unable to parse URL", NULL, NULL);
this_ptr          457 ext/soap/php_http.c 		add_soap_fault(this_ptr, "HTTP", "Unknown protocol. Only http and https are allowed.", NULL, NULL);
this_ptr          469 ext/soap/php_http.c 		add_soap_fault(this_ptr, "HTTP", "SSL support is not available in this build", NULL, NULL);
this_ptr          482 ext/soap/php_http.c 		if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "httpurl", sizeof("httpurl")-1)) != NULL &&
this_ptr          492 ext/soap/php_http.c 			zend_hash_str_del(Z_OBJPROP_P(this_ptr), "httpurl", sizeof("httpurl")-1);
this_ptr          493 ext/soap/php_http.c 			zend_hash_str_del(Z_OBJPROP_P(this_ptr), "httpsocket", sizeof("httpsocket")-1);
this_ptr          494 ext/soap/php_http.c 			zend_hash_str_del(Z_OBJPROP_P(this_ptr), "_use_proxy", sizeof("_use_proxy")-1);
this_ptr          503 ext/soap/php_http.c 		zend_hash_str_del(Z_OBJPROP_P(this_ptr), "httpurl", sizeof("httpurl")-1);
this_ptr          504 ext/soap/php_http.c 		zend_hash_str_del(Z_OBJPROP_P(this_ptr), "httpsocket", sizeof("httpsocket")-1);
this_ptr          505 ext/soap/php_http.c 		zend_hash_str_del(Z_OBJPROP_P(this_ptr), "_use_proxy", sizeof("_use_proxy")-1);
this_ptr          511 ext/soap/php_http.c 		stream = http_connect(this_ptr, phpurl, use_ssl, context, &use_proxy);
this_ptr          514 ext/soap/php_http.c 			add_property_resource(this_ptr, "httpsocket", stream->res);
this_ptr          516 ext/soap/php_http.c 			add_property_long(this_ptr, "_use_proxy", use_proxy);
this_ptr          522 ext/soap/php_http.c 			add_soap_fault(this_ptr, "HTTP", "Could not connect to host", NULL, NULL);
this_ptr          534 ext/soap/php_http.c 		add_property_resource(this_ptr, "httpurl", ret);
this_ptr          580 ext/soap/php_http.c 			((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_keep_alive", sizeof("_keep_alive")-1)) != NULL &&
this_ptr          588 ext/soap/php_http.c 		if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_user_agent", sizeof("_user_agent")-1)) != NULL &&
this_ptr          634 ext/soap/php_http.c 		if ((login = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_login", sizeof("_login")-1)) != NULL &&
this_ptr          639 ext/soap/php_http.c 			if ((digest = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_digest", sizeof("_digest")-1)) != NULL) {
this_ptr          668 ext/soap/php_http.c 					if ((password = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_password", sizeof("_password")-1)) != NULL &&
this_ptr          783 ext/soap/php_http.c 				if ((password = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_password", sizeof("_password")-1)) != NULL &&
this_ptr          799 ext/soap/php_http.c 			has_proxy_authorization = proxy_authentication(this_ptr, &soap_headers);
this_ptr          803 ext/soap/php_http.c 		if ((cookies = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_cookies", sizeof("_cookies")-1)) != NULL &&
this_ptr          849 ext/soap/php_http.c 		if ((trace = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "trace", sizeof("trace")-1)) != NULL &&
this_ptr          851 ext/soap/php_http.c 			add_property_stringl(this_ptr, "__last_request_headers", ZSTR_VAL(soap_headers.s), ZSTR_LEN(soap_headers.s));
this_ptr          862 ext/soap/php_http.c 			zend_hash_str_del(Z_OBJPROP_P(this_ptr), "httpurl", sizeof("httpurl")-1);
this_ptr          863 ext/soap/php_http.c 			zend_hash_str_del(Z_OBJPROP_P(this_ptr), "httpsocket", sizeof("httpsocket")-1);
this_ptr          864 ext/soap/php_http.c 			zend_hash_str_del(Z_OBJPROP_P(this_ptr), "_use_proxy", sizeof("_use_proxy")-1);
this_ptr          865 ext/soap/php_http.c 			add_soap_fault(this_ptr, "HTTP", "Failed Sending HTTP SOAP request", NULL, NULL);
this_ptr          871 ext/soap/php_http.c 		add_soap_fault(this_ptr, "HTTP", "Failed to create stream??", NULL, NULL);
this_ptr          878 ext/soap/php_http.c 		zend_hash_str_del(Z_OBJPROP_P(this_ptr), "httpsocket", sizeof("httpsocket")-1);
this_ptr          879 ext/soap/php_http.c 		zend_hash_str_del(Z_OBJPROP_P(this_ptr), "_use_proxy", sizeof("_use_proxy")-1);
this_ptr          891 ext/soap/php_http.c 			zend_hash_str_del(Z_OBJPROP_P(this_ptr), "httpsocket", sizeof("httpsocket")-1);
this_ptr          892 ext/soap/php_http.c 			zend_hash_str_del(Z_OBJPROP_P(this_ptr), "_use_proxy", sizeof("_use_proxy")-1);
this_ptr          893 ext/soap/php_http.c 			add_soap_fault(this_ptr, "HTTP", "Error Fetching http headers", NULL, NULL);
this_ptr          898 ext/soap/php_http.c 		if ((trace = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "trace", sizeof("trace")-1)) != NULL &&
this_ptr          900 ext/soap/php_http.c 			add_property_str(this_ptr, "__last_response_headers", zend_string_copy(http_headers));
this_ptr          948 ext/soap/php_http.c 		if ((cookies = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_cookies", sizeof("_cookies")-1)) == NULL ||
this_ptr          952 ext/soap/php_http.c 			cookies = zend_hash_str_update(Z_OBJPROP_P(this_ptr), "_cookies", sizeof("_cookies")-1, &tmp_cookies);
this_ptr         1067 ext/soap/php_http.c 		zend_hash_str_del(Z_OBJPROP_P(this_ptr), "httpsocket", sizeof("httpsocket")-1);
this_ptr         1068 ext/soap/php_http.c 		zend_hash_str_del(Z_OBJPROP_P(this_ptr), "_use_proxy", sizeof("_use_proxy")-1);
this_ptr         1069 ext/soap/php_http.c 		add_soap_fault(this_ptr, "HTTP", "Error Fetching http body, No Content-Length, connection closed or chunked data", NULL, NULL);
this_ptr         1083 ext/soap/php_http.c 		zend_hash_str_del(Z_OBJPROP_P(this_ptr), "httpsocket", sizeof("httpsocket")-1);
this_ptr         1084 ext/soap/php_http.c 		zend_hash_str_del(Z_OBJPROP_P(this_ptr), "_use_proxy", sizeof("_use_proxy")-1);
this_ptr         1127 ext/soap/php_http.c 					add_soap_fault(this_ptr, "HTTP", "Redirection limit reached, aborting", NULL, NULL);
this_ptr         1142 ext/soap/php_http.c 		    ((digest = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_digest", sizeof("_digest")-1)) == NULL ||
this_ptr         1144 ext/soap/php_http.c 		    (login = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_login", sizeof("_login")-1)) != NULL &&
this_ptr         1146 ext/soap/php_http.c 		    (password = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_password", sizeof("_password")-1)) != NULL &&
this_ptr         1191 ext/soap/php_http.c 				add_property_zval_ex(this_ptr, "_digest", sizeof("_digest")-1, &digest);
this_ptr         1267 ext/soap/php_http.c 			add_soap_fault(this_ptr, "HTTP", "Unknown Content-Encoding", NULL, NULL);
this_ptr         1282 ext/soap/php_http.c 			add_soap_fault(this_ptr, "HTTP", "Can't uncompress compressed response", NULL, NULL);
this_ptr         1316 ext/soap/php_http.c 			add_soap_fault(this_ptr, "HTTP", http_msg, NULL, NULL);
this_ptr           25 ext/soap/php_http.h int make_http_soap_request(zval        *this_ptr,
this_ptr           32 ext/soap/php_http.h int proxy_authentication(zval* this_ptr, smart_str* soap_headers);
this_ptr           33 ext/soap/php_http.h int basic_authentication(zval* this_ptr, smart_str* soap_headers);
this_ptr           25 ext/soap/php_packet_soap.c int parse_packet_soap(zval *this_ptr, char *buffer, int buffer_size, sdlFunctionPtr fn, char *fn_name, zval *return_value, zval *soap_headers)
this_ptr           46 ext/soap/php_packet_soap.c 		add_soap_fault(this_ptr, "Client", "looks like we got no XML document", NULL, NULL);
this_ptr           50 ext/soap/php_packet_soap.c 		add_soap_fault(this_ptr, "Client", "DTD are not supported by SOAP", NULL, NULL);
this_ptr           69 ext/soap/php_packet_soap.c 				add_soap_fault(this_ptr, "VersionMismatch", "Wrong Version", NULL, NULL);
this_ptr           77 ext/soap/php_packet_soap.c 		add_soap_fault(this_ptr, "Client", "looks like we got XML without \"Envelope\" element", NULL, NULL);
this_ptr           85 ext/soap/php_packet_soap.c 			add_soap_fault(this_ptr, "Client", "A SOAP Envelope element cannot have non Namespace qualified attributes", NULL, NULL);
this_ptr           90 ext/soap/php_packet_soap.c 				add_soap_fault(this_ptr, "Client", "encodingStyle cannot be specified on the Envelope", NULL, NULL);
this_ptr           94 ext/soap/php_packet_soap.c 				add_soap_fault(this_ptr, "Client", "Unknown data encoding style", NULL, NULL);
this_ptr          126 ext/soap/php_packet_soap.c 		add_soap_fault(this_ptr, "Client", "Body must be present in a SOAP envelope", NULL, NULL);
this_ptr          134 ext/soap/php_packet_soap.c 				add_soap_fault(this_ptr, "Client", "A SOAP Body element cannot have non Namespace qualified attributes", NULL, NULL);
this_ptr          140 ext/soap/php_packet_soap.c 				add_soap_fault(this_ptr, "Client", "encodingStyle cannot be specified on the Body", NULL, NULL);
this_ptr          144 ext/soap/php_packet_soap.c 				add_soap_fault(this_ptr, "Client", "Unknown data encoding style", NULL, NULL);
this_ptr          152 ext/soap/php_packet_soap.c 		add_soap_fault(this_ptr, "Client", "A SOAP 1.2 envelope can contain only Header and Body", NULL, NULL);
this_ptr          161 ext/soap/php_packet_soap.c 				add_soap_fault(this_ptr, "Client", "A SOAP Header element cannot have non Namespace qualified attributes", NULL, NULL);
this_ptr          166 ext/soap/php_packet_soap.c 					add_soap_fault(this_ptr, "Client", "encodingStyle cannot be specified on the Header", NULL, NULL);
this_ptr          170 ext/soap/php_packet_soap.c 					add_soap_fault(this_ptr, "Client", "Unknown data encoding style", NULL, NULL);
this_ptr          237 ext/soap/php_packet_soap.c 		add_soap_fault(this_ptr, faultcode, faultstring ? ZSTR_VAL(faultstring) : NULL, faultactor ? ZSTR_VAL(faultactor) : NULL, &details);
this_ptr           25 ext/soap/php_packet_soap.h int parse_packet_soap(zval *this_ptr, char *buffer, int buffer_size, sdlFunctionPtr fn, char *fn_name, zval *return_value, zval *soap_headers);
this_ptr          317 ext/soap/php_sdl.c static void load_wsdl_ex(zval *this_ptr, char *struri, sdlCtx *ctx, int include)
this_ptr          395 ext/soap/php_sdl.c 				load_wsdl_ex(this_ptr, (char*)uri, ctx, 1);
this_ptr          724 ext/soap/php_sdl.c static sdlPtr load_wsdl(zval *this_ptr, char *struri)
this_ptr          741 ext/soap/php_sdl.c 	load_wsdl_ex(this_ptr, struri,&ctx, 0);
this_ptr         3154 ext/soap/php_sdl.c sdlPtr get_sdl(zval *this_ptr, char *uri, zend_long cache_wsdl)
this_ptr         3225 ext/soap/php_sdl.c 	if (NULL != (tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr),
this_ptr         3232 ext/soap/php_sdl.c 	if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_user_agent", sizeof("_user_agent")-1)) != NULL &&
this_ptr         3239 ext/soap/php_sdl.c 	if ((proxy_host = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_proxy_host", sizeof("_proxy_host")-1)) != NULL &&
this_ptr         3241 ext/soap/php_sdl.c 	    (proxy_port = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_proxy_port", sizeof("_proxy_port")-1)) != NULL &&
this_ptr         3267 ext/soap/php_sdl.c 		has_proxy_authorization = proxy_authentication(this_ptr, &headers);
this_ptr         3270 ext/soap/php_sdl.c 	has_authorization = basic_authentication(this_ptr, &headers);
this_ptr         3303 ext/soap/php_sdl.c 	sdl = load_wsdl(this_ptr, uri);
this_ptr          257 ext/soap/php_sdl.h sdlPtr get_sdl(zval *this_ptr, char *uri, zend_long cache_wsdl);
this_ptr           64 ext/soap/soap.c 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);
this_ptr          821 ext/soap/soap.c 	zval *this_ptr;
this_ptr          831 ext/soap/soap.c 	this_ptr = getThis();
this_ptr          832 ext/soap/soap.c 	add_property_stringl(this_ptr, "param_name", name, name_length);
this_ptr          833 ext/soap/soap.c 	add_property_zval(this_ptr, "param_data", data);
this_ptr          846 ext/soap/soap.c 	zval *this_ptr;
this_ptr          860 ext/soap/soap.c 	this_ptr = getThis();
this_ptr          861 ext/soap/soap.c 	add_property_stringl(this_ptr, "namespace", ns, ns_len);
this_ptr          862 ext/soap/soap.c 	add_property_stringl(this_ptr, "name", name, name_len);
this_ptr          864 ext/soap/soap.c 		add_property_zval(this_ptr, "data", data);
this_ptr          866 ext/soap/soap.c 	add_property_bool(this_ptr, "mustUnderstand", must_understand);
this_ptr          872 ext/soap/soap.c 		add_property_long(this_ptr, "actor", Z_LVAL_P(actor));
this_ptr          874 ext/soap/soap.c 		add_property_stringl(this_ptr, "actor", Z_STRVAL_P(actor), Z_STRLEN_P(actor));
this_ptr          886 ext/soap/soap.c 	zval *code = NULL, *details = NULL, *headerfault = NULL, *this_ptr;
this_ptr          927 ext/soap/soap.c 	this_ptr = getThis();
this_ptr          928 ext/soap/soap.c 	set_soap_fault(this_ptr, fault_code_ns, fault_code, fault_string, fault_actor, details, name);
this_ptr          930 ext/soap/soap.c 		add_property_zval(this_ptr, "headerfault", headerfault);
this_ptr          943 ext/soap/soap.c 	zval *this_ptr;
this_ptr          949 ext/soap/soap.c 	this_ptr = getThis();
this_ptr          950 ext/soap/soap.c 	faultcode   = zend_read_property(soap_fault_class_entry, this_ptr, "faultcode", sizeof("faultcode")-1, 1, &rv1);
this_ptr          951 ext/soap/soap.c 	faultstring = zend_read_property(soap_fault_class_entry, this_ptr, "faultstring", sizeof("faultstring")-1, 1, &rv2);
this_ptr          952 ext/soap/soap.c 	file = zend_read_property(soap_fault_class_entry, this_ptr, "file", sizeof("file")-1, 1, &rv3);
this_ptr          953 ext/soap/soap.c 	line = zend_read_property(soap_fault_class_entry, this_ptr, "line", sizeof("line")-1, 1, &rv4);
this_ptr          989 ext/soap/soap.c 	zval *data, *type, *this_ptr;
this_ptr          997 ext/soap/soap.c 	this_ptr = getThis();
this_ptr          999 ext/soap/soap.c 		add_property_long(this_ptr, "enc_type", UNKNOWN_TYPE);
this_ptr         1002 ext/soap/soap.c 			add_property_long(this_ptr, "enc_type", Z_LVAL_P(type));
this_ptr         1010 ext/soap/soap.c 		add_property_zval(this_ptr, "enc_value", data);
this_ptr         1014 ext/soap/soap.c 		add_property_stringl(this_ptr, "enc_stype", stype, stype_len);
this_ptr         1017 ext/soap/soap.c 		add_property_stringl(this_ptr, "enc_ns", ns, ns_len);
this_ptr         1020 ext/soap/soap.c 		add_property_stringl(this_ptr, "enc_name", name, name_len);
this_ptr         1023 ext/soap/soap.c 		add_property_stringl(this_ptr, "enc_namens", namens, namens_len);
this_ptr         1491 ext/soap/soap.c static void _soap_server_exception(soapServicePtr service, sdlFunctionPtr function, zval *this_ptr) /* {{{ */
this_ptr         1502 ext/soap/soap.c 			add_soap_fault_ex(&exception_object, this_ptr, "Server", ZSTR_VAL(msg), NULL, NULL);
this_ptr         1505 ext/soap/soap.c 			add_soap_fault_ex(&exception_object, this_ptr, "Server", "Internal Error", NULL, NULL);
this_ptr         2327 ext/soap/soap.c 	zval *this_ptr = getThis();
this_ptr         2349 ext/soap/soap.c 				add_property_str(this_ptr, "uri", zend_string_copy(Z_STR_P(tmp)));
this_ptr         2357 ext/soap/soap.c 				add_property_long(this_ptr, "style", Z_LVAL_P(tmp));
this_ptr         2363 ext/soap/soap.c 				add_property_long(this_ptr, "use", Z_LVAL_P(tmp));
this_ptr         2375 ext/soap/soap.c 			add_property_str(this_ptr, "location", zend_string_copy(Z_STR_P(tmp)));
this_ptr         2388 ext/soap/soap.c 			add_property_str(this_ptr, "_login", zend_string_copy(Z_STR_P(tmp)));
this_ptr         2391 ext/soap/soap.c 				add_property_str(this_ptr, "_password", zend_string_copy(Z_STR_P(tmp)));
this_ptr         2396 ext/soap/soap.c 				add_property_null(this_ptr, "_digest");
this_ptr         2401 ext/soap/soap.c 			add_property_str(this_ptr, "_proxy_host", zend_string_copy(Z_STR_P(tmp)));
this_ptr         2407 ext/soap/soap.c 				add_property_long(this_ptr, "_proxy_port", Z_LVAL_P(tmp));
this_ptr         2411 ext/soap/soap.c 				add_property_str(this_ptr, "_proxy_login", zend_string_copy(Z_STR_P(tmp)));
this_ptr         2414 ext/soap/soap.c 					add_property_str(this_ptr, "_proxy_password", zend_string_copy(Z_STR_P(tmp)));
this_ptr         2432 ext/soap/soap.c 			add_property_long(this_ptr, "trace", 1);
this_ptr         2438 ext/soap/soap.c 			add_property_bool(this_ptr, "_exceptions", 0);
this_ptr         2448 ext/soap/soap.c 			add_property_long(this_ptr, "compression", Z_LVAL_P(tmp));
this_ptr         2459 ext/soap/soap.c 				add_property_str(this_ptr, "_encoding", zend_string_copy(Z_STR_P(tmp)));
this_ptr         2464 ext/soap/soap.c 			add_property_zval(this_ptr, "_classmap", tmp);
this_ptr         2475 ext/soap/soap.c 			add_property_long(this_ptr, "_features", Z_LVAL_P(tmp));
this_ptr         2484 ext/soap/soap.c 				add_property_long(this_ptr, "_connection_timeout", Z_LVAL_P(tmp));
this_ptr         2489 ext/soap/soap.c 			add_property_resource(this_ptr, "_stream_context", context->res);
this_ptr         2499 ext/soap/soap.c 			add_property_str(this_ptr, "_user_agent", zend_string_copy(Z_STR_P(tmp)));
this_ptr         2505 ext/soap/soap.c 			add_property_long(this_ptr, "_keep_alive", 0);
this_ptr         2510 ext/soap/soap.c 			add_property_long(this_ptr, "_ssl_method", Z_LVAL_P(tmp));
this_ptr         2516 ext/soap/soap.c 	add_property_long(this_ptr, "_soap_version", soap_version);
this_ptr         2525 ext/soap/soap.c 		sdl = get_sdl(this_ptr, Z_STRVAL_P(wsdl), cache_wsdl);
this_ptr         2528 ext/soap/soap.c 		add_property_resource(this_ptr, "sdl", res);
this_ptr         2539 ext/soap/soap.c 			add_property_resource(this_ptr, "typemap", res);
this_ptr         2546 ext/soap/soap.c static int do_request(zval *this_ptr, xmlDoc *request, char *location, char *action, int version, int one_way, zval *response)
this_ptr         2561 ext/soap/soap.c 		add_soap_fault(this_ptr, "HTTP", "Error build soap request", NULL, NULL);
this_ptr         2566 ext/soap/soap.c 		if ((trace = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "trace", sizeof("trace")-1)) != NULL &&
this_ptr         2568 ext/soap/soap.c 			add_property_stringl(this_ptr, "__last_request", buf, buf_size);
this_ptr         2586 ext/soap/soap.c 		if (call_user_function(NULL, this_ptr, &func, response, 5, params) != SUCCESS) {
this_ptr         2587 ext/soap/soap.c 			add_soap_fault(this_ptr, "Client", "SoapClient::__doRequest() failed", NULL, NULL);
this_ptr         2601 ext/soap/soap.c 			} else if ((fault = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "__soap_fault", sizeof("__soap_fault")-1)) == NULL) {
this_ptr         2602 ext/soap/soap.c 				add_soap_fault(this_ptr, "Client", "SoapClient::__doRequest() returned non string value", NULL, NULL);
this_ptr         2605 ext/soap/soap.c 		} else if ((trace = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "trace", sizeof("trace")-1)) != NULL &&
this_ptr         2607 ext/soap/soap.c 			add_property_str(this_ptr, "__last_response", zend_string_copy(Z_STR_P(response)));
this_ptr         2622 ext/soap/soap.c 	if (ret && (fault = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "__soap_fault", sizeof("__soap_fault")-1)) != NULL) {
this_ptr         2629 ext/soap/soap.c                          zval* this_ptr,
this_ptr         2659 ext/soap/soap.c 	if ((trace = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "trace", sizeof("trace")-1)) != NULL &&
this_ptr         2661 ext/soap/soap.c 		zend_hash_str_del(Z_OBJPROP_P(this_ptr), "__last_request", sizeof("__last_request")-1);
this_ptr         2662 ext/soap/soap.c 		zend_hash_str_del(Z_OBJPROP_P(this_ptr), "__last_response", sizeof("__last_response")-1);
this_ptr         2664 ext/soap/soap.c 	if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_soap_version", sizeof("_soap_version")-1)) != NULL &&
this_ptr         2672 ext/soap/soap.c 		if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "location", sizeof("location")-1)) != NULL &&
this_ptr         2678 ext/soap/soap.c 	if (FIND_SDL_PROPERTY(this_ptr,tmp) != NULL) {
this_ptr         2681 ext/soap/soap.c 	if (FIND_TYPEMAP_PROPERTY(this_ptr,tmp) != NULL) {
this_ptr         2685 ext/soap/soap.c  	clear_soap_fault(this_ptr);
this_ptr         2691 ext/soap/soap.c 	if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_encoding", sizeof("_encoding")-1)) != NULL &&
this_ptr         2698 ext/soap/soap.c 	if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_classmap", sizeof("_classmap")-1)) != NULL &&
this_ptr         2707 ext/soap/soap.c 	if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_features", sizeof("_features")-1)) != NULL &&
this_ptr         2732 ext/soap/soap.c  					request = serialize_function_call(this_ptr, fn, NULL, fnb->input.ns, real_args, arg_count, soap_version, soap_headers);
this_ptr         2733 ext/soap/soap.c 	 				ret = do_request(this_ptr, request, location, fnb->soapAction, soap_version, one_way, &response);
this_ptr         2735 ext/soap/soap.c 	 				request = serialize_function_call(this_ptr, fn, NULL, sdl->target_ns, real_args, arg_count, soap_version, soap_headers);
this_ptr         2736 ext/soap/soap.c 	 				ret = do_request(this_ptr, request, location, NULL, soap_version, one_way, &response);
this_ptr         2744 ext/soap/soap.c 					ret = parse_packet_soap(this_ptr, Z_STRVAL(response), Z_STRLEN(response), fn, NULL, return_value, output_headers);
this_ptr         2756 ext/soap/soap.c 				add_soap_fault(this_ptr, "Client", ZSTR_VAL(error.s), NULL, NULL);
this_ptr         2762 ext/soap/soap.c 			if ((uri = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "uri", sizeof("uri")-1)) == NULL || Z_TYPE_P(uri) != IS_STRING) {
this_ptr         2763 ext/soap/soap.c 				add_soap_fault(this_ptr, "Client", "Error finding \"uri\" property", NULL, NULL);
this_ptr         2765 ext/soap/soap.c 				add_soap_fault(this_ptr, "Client", "Error could not find \"location\" property", NULL, NULL);
this_ptr         2770 ext/soap/soap.c 		 		request = serialize_function_call(this_ptr, NULL, function, call_uri, real_args, arg_count, soap_version, soap_headers);
this_ptr         2781 ext/soap/soap.c 				ret = do_request(this_ptr, request, location, ZSTR_VAL(action.s), soap_version, 0, &response);
this_ptr         2789 ext/soap/soap.c 					ret = parse_packet_soap(this_ptr, Z_STRVAL(response), Z_STRLEN(response), NULL, function, return_value, output_headers);
this_ptr         2799 ext/soap/soap.c 			if ((fault = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "__soap_fault", sizeof("__soap_fault")-1)) != NULL) {
this_ptr         2802 ext/soap/soap.c 				add_soap_fault_ex(return_value, this_ptr, "Client", "Unknown Error", NULL, NULL);
this_ptr         2807 ext/soap/soap.c 			if ((fault = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "__soap_fault", sizeof("__soap_fault")-1)) != NULL) {
this_ptr         2815 ext/soap/soap.c 		    ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_exceptions", sizeof("_exceptions")-1)) == NULL ||
this_ptr         2875 ext/soap/soap.c 	zval *this_ptr;
this_ptr         2918 ext/soap/soap.c 	this_ptr = getThis();
this_ptr         2919 ext/soap/soap.c 	if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "__default_headers", sizeof("__default_headers")-1)) != NULL && Z_TYPE_P(tmp) == IS_ARRAY) {
this_ptr         2952 ext/soap/soap.c 	do_soap_call(execute_data, this_ptr, function, function_len, arg_count, real_args, return_value, location, soap_action, uri, soap_headers, output_headers);
this_ptr         3106 ext/soap/soap.c 	zval      *this_ptr = getThis();
this_ptr         3119 ext/soap/soap.c 		if (make_http_soap_request(this_ptr, buf, location, action, version, NULL)) {
this_ptr         3122 ext/soap/soap.c 	} else if (make_http_soap_request(this_ptr, buf, location, action, version,
this_ptr         3140 ext/soap/soap.c 	zval *this_ptr = getThis();
this_ptr         3147 ext/soap/soap.c 		if ((cookies = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_cookies", sizeof("_cookies")-1)) != NULL &&
this_ptr         3154 ext/soap/soap.c 		if ((cookies = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_cookies", sizeof("_cookies")-1)) == NULL ||
this_ptr         3159 ext/soap/soap.c 			cookies = zend_hash_str_update(Z_OBJPROP_P(this_ptr), "_cookies", sizeof("_cookies")-1, &tmp_cookies);
this_ptr         3196 ext/soap/soap.c 	zval *this_ptr = getThis();
this_ptr         3203 ext/soap/soap.c 		zend_hash_str_del(Z_OBJPROP_P(this_ptr), "__default_headers", sizeof("__default_headers")-1);
this_ptr         3208 ext/soap/soap.c 		if ((default_headers = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "__default_headers", sizeof("__default_headers")-1)) == NULL) {
this_ptr         3209 ext/soap/soap.c 			add_property_zval(this_ptr, "__default_headers", headers);
this_ptr         3218 ext/soap/soap.c 		add_property_zval(this_ptr, "__default_headers", &default_headers);
this_ptr         3240 ext/soap/soap.c 	zval *this_ptr = getThis();
this_ptr         3246 ext/soap/soap.c 	if ((tmp = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "location", sizeof("location")-1)) != NULL && Z_TYPE_P(tmp) == IS_STRING) {
this_ptr         3253 ext/soap/soap.c 		add_property_stringl(this_ptr, "location", location, location_len);
this_ptr         3255 ext/soap/soap.c 		zend_hash_str_del(Z_OBJPROP_P(this_ptr), "location", sizeof("location")-1);
this_ptr         4212 ext/soap/soap.c 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)
this_ptr         4262 ext/soap/soap.c 		if ((zstyle = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "style", sizeof("style")-1)) != NULL &&
this_ptr         4285 ext/soap/soap.c 		if ((zuse = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "use", sizeof("use")-1)) != NULL &&
this_ptr         2146 ext/spl/spl_directory.c static int spl_filesystem_file_read_line_ex(zval * this_ptr, spl_filesystem_object *intern, int silent) /* {{{ */
this_ptr         2162 ext/spl/spl_directory.c 			zend_call_method_with_0_params(this_ptr, Z_OBJCE(EX(This)), &intern->u.file.func_getCurr, "getCurrentLine", &retval);
this_ptr         2220 ext/spl/spl_directory.c static int spl_filesystem_file_read_line(zval * this_ptr, spl_filesystem_object *intern, int silent) /* {{{ */
this_ptr         2222 ext/spl/spl_directory.c 	int ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent);
this_ptr         2226 ext/spl/spl_directory.c 		ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent);
this_ptr         2233 ext/spl/spl_directory.c static void spl_filesystem_file_rewind(zval * this_ptr, spl_filesystem_object *intern) /* {{{ */
this_ptr         2246 ext/spl/spl_directory.c 		spl_filesystem_file_read_line(this_ptr, intern, 1);