Searched refs:soap (Results 26 - 50 of 359) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/plugin/
H A Dwsseapi.h81 int (*fprepareinit)(struct soap*);
82 int (*fpreparesend)(struct soap*, const char*, size_t);
83 int (*fpreparefinal)(struct soap*);
84 int (*fdisconnect)(struct soap*);
86 const void *(*security_token_handler)(struct soap *soap, int alg, int *keylen);
122 struct _wsse__Security* soap_wsse_add_Security(struct soap *soap);
123 struct _wsse__Security* soap_wsse_add_Security_actor(struct soap *soap, cons
[all...]
H A Dhttpdatest.c76 struct soap *soap = soap_new(); local
78 soap_register_plugin(soap, http_da);
79 if (!soap_valid_socket(soap_bind(soap, NULL, port, 100)))
80 soap_print_fault(soap, stderr);
84 soap->accept_timeout = 3600; /* let server time out after one hour */
87 int sock = soap_accept(soap);
90 if (soap->errnum)
91 soap_print_fault(soap, stderr);
98 fprintf(stderr, "Accepting socket %d connection from IP %d.%d.%d.%d\n", sock, (int)(soap
115 struct soap *soap = soap_new(); local
161 ns__echoString(struct soap *soap, char *arg, struct ns__echoString *response) argument
[all...]
H A Dhttpda.h9 soap_register_plugin(&soap, http_da);
10 if (soap_call_ns__method(&soap, ...) != SOAP_OK)
11 { if (soap.error == 401) // HTTP authentication is required
12 { if (!strcmp(soap.authrealm, authrealm)) // check authentication realm
14 http_da_save(&soap, &info, authrealm, userid, passwd);
15 if (soap_call_ns__method(&soap, ...) == SOAP_OK)
17 soap_end(&soap);
19 http_da_restore(&soap, &info); // get userid and passwd after soap_end()
20 if (!soap_call_ns__method(&soap, ...) == SOAP_OK)
22 http_da_release(&soap,
[all...]
H A Dhttpform.c54 struct soap soap;
55 soap_init(&soap);
56 soap_register_plugin_arg(&soap, http_form, http_form_handler);
58 ... = soap_copy(&soap); // copies plugin too but not its data: plugin data is shared since fcopy is not set
60 soap_done(&soap); // detach plugin (calls plugin->fdelete)
63 int http_form_handler(struct soap*)
71 char *s = form(soap);
73 { char *key = query_key(soap, &s); // decode next form string key
74 char *val = query_val(soap,
100 http_form(struct soap *soap, struct soap_plugin *p, void *arg) argument
112 http_form_init(struct soap *soap, struct http_form_data *data, int (*handler)(struct soap*)) argument
120 http_form_delete(struct soap *soap, struct soap_plugin *p) argument
124 http_form_parse_header(struct soap *soap, const char *key, const char *val) argument
139 form(struct soap *soap) argument
[all...]
H A Dhttpform.h65 /* This is the local plugin data shared among all copies of the soap struct: */
67 { int (*fparsehdr)(struct soap*, const char*, const char*); /* to save and call the internal HTTP header parser */
70 int http_form(struct soap*, struct soap_plugin*, void*);
72 char *form(struct soap*);
H A Dwsaapi.c130 wsa plugin should be registered with the currenct soap struct context. An
136 soap_register_plugin(soap, soap_wsa);
138 soap_wsa_request(soap, RequestMessageID, ToAddress, RequestAction);
139 soap_wsa_add_From(soap, FromAddress); // optional: add a 'From' address
141 if (soap_call_ns__example(soap, ToAddress, NULL, ...))
142 soap_print_fault(soap, stderr); // an error occurred
156 soap_register_plugin(soap, soap_wsa);
158 soap_wsa_request(soap, RequestMessageID, ToAddress, RequestAction);
159 soap_wsa_add_From(soap, FromAddress); // optional: add a 'From' address
160 soap_wsa_add_ReplyTo(soap, ReplyToAddres
473 soap_wsa_request(struct soap *soap, const char *id, const char *to, const char *action) argument
492 soap_wsa_add_From(struct soap *soap, const char *from) argument
512 soap_wsa_add_NoReply(struct soap *soap) argument
526 soap_wsa_add_ReplyTo(struct soap *soap, const char *replyTo) argument
547 soap_wsa_add_FaultTo(struct soap *soap, const char *faultTo) argument
571 soap_wsa_check(struct soap *soap) argument
598 soap_wsa_reply(struct soap *soap, const char *id, const char *action) argument
680 soap_wsa_fault_subcode(struct soap *soap, int flag, const char *faultsubcode, const char *faultstring, const char *faultdetail) argument
734 soap_wsa_sender_fault_subcode(struct soap *soap, const char *faultsubcode, const char *faultstring, const char *faultdetail) argument
748 soap_wsa_receiver_fault_subcode(struct soap *soap, const char *faultsubcode, const char *faultstring, const char *faultdetail) argument
761 soap_wsa_sender_fault(struct soap *soap, const char *faultstring, const char *faultdetail) argument
774 soap_wsa_receiver_fault(struct soap *soap, const char *faultstring, const char *faultdetail) argument
794 soap_wsa_check_fault(struct soap *soap, SOAP_WSA(FaultCodesType) *fault, char **info) argument
827 soap_wsa_check_fault(struct soap *soap, char **fault) argument
852 soap_wsa_check_fault(struct soap *soap, SOAP_WSA(FaultSubcodeValues) *fault) argument
874 soap_wsa_error(struct soap *soap, SOAP_WSA(FaultCodesType) fault, const char *info) argument
967 soap_wsa_error(struct soap *soap, const char *fault) argument
979 soap_wsa_error(struct soap *soap, SOAP_WSA(FaultSubcodeValues) fault) argument
1015 soap_wsa(struct soap *soap, struct soap_plugin *p, void *arg) argument
1038 soap_wsa_init(struct soap *soap, struct soap_wsa_data *data) argument
1055 soap_wsa_delete(struct soap *soap, struct soap_plugin *p) argument
1076 soap_wsa_header(struct soap *soap) argument
1096 soap_wsa_set_error(struct soap *soap, const char **c, const char **s) argument
1123 soap_wsa_response(struct soap *soap, int status, size_t count) argument
1145 soap_wsa_alloc_header(struct soap *soap) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/plugin/
H A Dhttpdatest.c76 struct soap *soap = soap_new(); local
78 soap_register_plugin(soap, http_da);
79 if (!soap_valid_socket(soap_bind(soap, NULL, port, 100)))
80 soap_print_fault(soap, stderr);
84 soap->accept_timeout = 3600; /* let server time out after one hour */
87 int sock = soap_accept(soap);
90 if (soap->errnum)
91 soap_print_fault(soap, stderr);
98 fprintf(stderr, "Accepting socket %d connection from IP %d.%d.%d.%d\n", sock, (int)(soap
115 struct soap *soap = soap_new(); local
161 ns__echoString(struct soap *soap, char *arg, struct ns__echoString *response) argument
[all...]
H A Dhttpda.h9 soap_register_plugin(&soap, http_da);
10 if (soap_call_ns__method(&soap, ...) != SOAP_OK)
11 { if (soap.error == 401) // HTTP authentication is required
12 { if (!strcmp(soap.authrealm, authrealm)) // check authentication realm
14 http_da_save(&soap, &info, authrealm, userid, passwd);
15 if (soap_call_ns__method(&soap, ...) == SOAP_OK)
17 soap_end(&soap);
19 http_da_restore(&soap, &info); // get userid and passwd after soap_end()
20 if (!soap_call_ns__method(&soap, ...) == SOAP_OK)
22 http_da_release(&soap,
[all...]
H A Dhttpform.c54 struct soap soap;
55 soap_init(&soap);
56 soap_register_plugin_arg(&soap, http_form, http_form_handler);
58 ... = soap_copy(&soap); // copies plugin too but not its data: plugin data is shared since fcopy is not set
60 soap_done(&soap); // detach plugin (calls plugin->fdelete)
63 int http_form_handler(struct soap*)
71 char *s = form(soap);
73 { char *key = query_key(soap, &s); // decode next form string key
74 char *val = query_val(soap,
100 http_form(struct soap *soap, struct soap_plugin *p, void *arg) argument
112 http_form_init(struct soap *soap, struct http_form_data *data, int (*handler)(struct soap*)) argument
120 http_form_delete(struct soap *soap, struct soap_plugin *p) argument
124 http_form_parse_header(struct soap *soap, const char *key, const char *val) argument
139 form(struct soap *soap) argument
[all...]
H A Dhttpform.h65 /* This is the local plugin data shared among all copies of the soap struct: */
67 { int (*fparsehdr)(struct soap*, const char*, const char*); /* to save and call the internal HTTP header parser */
70 int http_form(struct soap*, struct soap_plugin*, void*);
72 char *form(struct soap*);
H A Dwsaapi.c130 wsa plugin should be registered with the currenct soap struct context. An
136 soap_register_plugin(soap, soap_wsa);
138 soap_wsa_request(soap, RequestMessageID, ToAddress, RequestAction);
139 soap_wsa_add_From(soap, FromAddress); // optional: add a 'From' address
141 if (soap_call_ns__example(soap, ToAddress, NULL, ...))
142 soap_print_fault(soap, stderr); // an error occurred
156 soap_register_plugin(soap, soap_wsa);
158 soap_wsa_request(soap, RequestMessageID, ToAddress, RequestAction);
159 soap_wsa_add_From(soap, FromAddress); // optional: add a 'From' address
160 soap_wsa_add_ReplyTo(soap, ReplyToAddres
473 soap_wsa_request(struct soap *soap, const char *id, const char *to, const char *action) argument
492 soap_wsa_add_From(struct soap *soap, const char *from) argument
512 soap_wsa_add_NoReply(struct soap *soap) argument
526 soap_wsa_add_ReplyTo(struct soap *soap, const char *replyTo) argument
547 soap_wsa_add_FaultTo(struct soap *soap, const char *faultTo) argument
571 soap_wsa_check(struct soap *soap) argument
598 soap_wsa_reply(struct soap *soap, const char *id, const char *action) argument
680 soap_wsa_fault_subcode(struct soap *soap, int flag, const char *faultsubcode, const char *faultstring, const char *faultdetail) argument
734 soap_wsa_sender_fault_subcode(struct soap *soap, const char *faultsubcode, const char *faultstring, const char *faultdetail) argument
748 soap_wsa_receiver_fault_subcode(struct soap *soap, const char *faultsubcode, const char *faultstring, const char *faultdetail) argument
761 soap_wsa_sender_fault(struct soap *soap, const char *faultstring, const char *faultdetail) argument
774 soap_wsa_receiver_fault(struct soap *soap, const char *faultstring, const char *faultdetail) argument
794 soap_wsa_check_fault(struct soap *soap, SOAP_WSA(FaultCodesType) *fault, char **info) argument
827 soap_wsa_check_fault(struct soap *soap, char **fault) argument
852 soap_wsa_check_fault(struct soap *soap, SOAP_WSA(FaultSubcodeValues) *fault) argument
874 soap_wsa_error(struct soap *soap, SOAP_WSA(FaultCodesType) fault, const char *info) argument
967 soap_wsa_error(struct soap *soap, const char *fault) argument
979 soap_wsa_error(struct soap *soap, SOAP_WSA(FaultSubcodeValues) fault) argument
1015 soap_wsa(struct soap *soap, struct soap_plugin *p, void *arg) argument
1038 soap_wsa_init(struct soap *soap, struct soap_wsa_data *data) argument
1055 soap_wsa_delete(struct soap *soap, struct soap_plugin *p) argument
1076 soap_wsa_header(struct soap *soap) argument
1096 soap_wsa_set_error(struct soap *soap, const char **c, const char **s) argument
1123 soap_wsa_response(struct soap *soap, int status, size_t count) argument
1145 soap_wsa_alloc_header(struct soap *soap) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/
H A DsoapC.c19 SOAP_FMAC3 void SOAP_FMAC4 soap_serializeheader(struct soap *soap) argument
21 if (soap->header)
22 soap_serialize_SOAP_ENV__Header(soap, soap->header);
25 SOAP_FMAC3 int SOAP_FMAC4 soap_putheader(struct soap *soap) argument
27 if (soap->header)
28 { soap->part = SOAP_IN_HEADER;
29 if (soap_out_SOAP_ENV__Header(soap, "SOA
36 soap_getheader(struct soap *soap) argument
44 soap_header(struct soap *soap) argument
52 soap_fault(struct soap *soap) argument
70 soap_serializefault(struct soap *soap) argument
76 soap_putfault(struct soap *soap) argument
83 soap_getfault(struct soap *soap) argument
88 soap_faultcode(struct soap *soap) argument
96 soap_faultsubcode(struct soap *soap) argument
109 soap_faultstring(struct soap *soap) argument
117 soap_faultdetail(struct soap *soap) argument
137 soap_getindependent(struct soap *soap) argument
151 soap_getelement(struct soap *soap, int *type) argument
798 soap_ignore_element(struct soap *soap) argument
829 soap_putindependent(struct soap *soap) argument
844 soap_putelement(struct soap *soap, const void *ptr, const char *tag, int id, int type) argument
1100 soap_markelement(struct soap *soap, const void *ptr, int type) argument
1460 soap_default_byte(struct soap *soap, char *a) argument
1469 soap_put_byte(struct soap *soap, const char *a, const char *tag, const char *type) argument
1477 soap_out_byte(struct soap *soap, const char *tag, int id, const char *a, const char *type) argument
1482 soap_get_byte(struct soap *soap, char *p, const char *tag, const char *type) argument
1490 soap_in_byte(struct soap *soap, const char *tag, char *a, const char *type) argument
1495 soap_default_int(struct soap *soap, int *a) argument
1504 soap_put_int(struct soap *soap, const int *a, const char *tag, const char *type) argument
1512 soap_out_int(struct soap *soap, const char *tag, int id, const int *a, const char *type) argument
1517 soap_get_int(struct soap *soap, int *p, const char *tag, const char *type) argument
1525 soap_in_int(struct soap *soap, const char *tag, int *a, const char *type) argument
1530 soap_default_LONG64(struct soap *soap, LONG64 *a) argument
1539 soap_put_LONG64(struct soap *soap, const LONG64 *a, const char *tag, const char *type) argument
1547 soap_out_LONG64(struct soap *soap, const char *tag, int id, const LONG64 *a, const char *type) argument
1552 soap_get_LONG64(struct soap *soap, LONG64 *p, const char *tag, const char *type) argument
1560 soap_in_LONG64(struct soap *soap, const char *tag, LONG64 *a, const char *type) argument
1565 soap_default_unsignedByte(struct soap *soap, unsigned char *a) argument
1574 soap_put_unsignedByte(struct soap *soap, const unsigned char *a, const char *tag, const char *type) argument
1582 soap_out_unsignedByte(struct soap *soap, const char *tag, int id, const unsigned char *a, const char *type) argument
1587 soap_get_unsignedByte(struct soap *soap, unsigned char *p, const char *tag, const char *type) argument
1595 soap_in_unsignedByte(struct soap *soap, const char *tag, unsigned char *a, const char *type) argument
1600 soap_default_unsignedInt(struct soap *soap, unsigned int *a) argument
1609 soap_put_unsignedInt(struct soap *soap, const unsigned int *a, const char *tag, const char *type) argument
1617 soap_out_unsignedInt(struct soap *soap, const char *tag, int id, const unsigned int *a, const char *type) argument
1622 soap_get_unsignedInt(struct soap *soap, unsigned int *p, const char *tag, const char *type) argument
1630 soap_in_unsignedInt(struct soap *soap, const char *tag, unsigned int *a, const char *type) argument
1635 soap_default_time(struct soap *soap, time_t *a) argument
1644 soap_put_time(struct soap *soap, const time_t *a, const char *tag, const char *type) argument
1652 soap_out_time(struct soap *soap, const char *tag, int id, const time_t *a, const char *type) argument
1657 soap_get_time(struct soap *soap, time_t *p, const char *tag, const char *type) argument
1665 soap_in_time(struct soap *soap, const char *tag, time_t *a, const char *type) argument
1672 soap_default_SOAP_ENV__Fault(struct soap *soap, struct SOAP_ENV__Fault *a) argument
1686 soap_serialize_SOAP_ENV__Fault(struct soap *soap, const struct SOAP_ENV__Fault *a) argument
1700 soap_put_SOAP_ENV__Fault(struct soap *soap, const struct SOAP_ENV__Fault *a, const char *tag, const char *type) argument
1708 soap_out_SOAP_ENV__Fault(struct soap *soap, const char *tag, int id, const struct SOAP_ENV__Fault *a, const char *type) argument
1734 soap_get_SOAP_ENV__Fault(struct soap *soap, struct SOAP_ENV__Fault *p, const char *tag, const char *type) argument
1742 soap_in_SOAP_ENV__Fault(struct soap *soap, const char *tag, struct SOAP_ENV__Fault *a, const char *type) argument
1830 soap_default_SOAP_ENV__Reason(struct soap *soap, struct SOAP_ENV__Reason *a) argument
1836 soap_serialize_SOAP_ENV__Reason(struct soap *soap, const struct SOAP_ENV__Reason *a) argument
1842 soap_put_SOAP_ENV__Reason(struct soap *soap, const struct SOAP_ENV__Reason *a, const char *tag, const char *type) argument
1850 soap_out_SOAP_ENV__Reason(struct soap *soap, const char *tag, int id, const struct SOAP_ENV__Reason *a, const char *type) argument
1861 soap_get_SOAP_ENV__Reason(struct soap *soap, struct SOAP_ENV__Reason *p, const char *tag, const char *type) argument
1869 soap_in_SOAP_ENV__Reason(struct soap *soap, const char *tag, struct SOAP_ENV__Reason *a, const char *type) argument
1909 soap_default_SOAP_ENV__Detail(struct soap *soap, struct SOAP_ENV__Detail *a) argument
1917 soap_serialize_SOAP_ENV__Detail(struct soap *soap, const struct SOAP_ENV__Detail *a) argument
1923 soap_put_SOAP_ENV__Detail(struct soap *soap, const struct SOAP_ENV__Detail *a, const char *tag, const char *type) argument
1931 soap_out_SOAP_ENV__Detail(struct soap *soap, const char *tag, int id, const struct SOAP_ENV__Detail *a, const char *type) argument
1941 soap_get_SOAP_ENV__Detail(struct soap *soap, struct SOAP_ENV__Detail *p, const char *tag, const char *type) argument
1949 soap_in_SOAP_ENV__Detail(struct soap *soap, const char *tag, struct SOAP_ENV__Detail *a, const char *type) argument
1995 soap_default_SOAP_ENV__Code(struct soap *soap, struct SOAP_ENV__Code *a) argument
2002 soap_serialize_SOAP_ENV__Code(struct soap *soap, const struct SOAP_ENV__Code *a) argument
2009 soap_put_SOAP_ENV__Code(struct soap *soap, const struct SOAP_ENV__Code *a, const char *tag, const char *type) argument
2017 soap_out_SOAP_ENV__Code(struct soap *soap, const char *tag, int id, const struct SOAP_ENV__Code *a, const char *type) argument
2029 soap_get_SOAP_ENV__Code(struct soap *soap, struct SOAP_ENV__Code *p, const char *tag, const char *type) argument
2037 soap_in_SOAP_ENV__Code(struct soap *soap, const char *tag, struct SOAP_ENV__Code *a, const char *type) argument
2083 soap_default_SOAP_ENV__Header(struct soap *soap, struct SOAP_ENV__Header *a) argument
2088 soap_serialize_SOAP_ENV__Header(struct soap *soap, const struct SOAP_ENV__Header *a) argument
2093 soap_put_SOAP_ENV__Header(struct soap *soap, const struct SOAP_ENV__Header *a, const char *tag, const char *type) argument
2101 soap_out_SOAP_ENV__Header(struct soap *soap, const char *tag, int id, const struct SOAP_ENV__Header *a, const char *type) argument
2108 soap_get_SOAP_ENV__Header(struct soap *soap, struct SOAP_ENV__Header *p, const char *tag, const char *type) argument
2116 soap_in_SOAP_ENV__Header(struct soap *soap, const char *tag, struct SOAP_ENV__Header *a, const char *type) argument
2148 soap_default_ns1__getSystemNotifications(struct soap *soap, struct ns1__getSystemNotifications *a) argument
2153 soap_serialize_ns1__getSystemNotifications(struct soap *soap, const struct ns1__getSystemNotifications *a) argument
2158 soap_put_ns1__getSystemNotifications(struct soap *soap, const struct ns1__getSystemNotifications *a, const char *tag, const char *type) argument
2166 soap_out_ns1__getSystemNotifications(struct soap *soap, const char *tag, int id, const struct ns1__getSystemNotifications *a, const char *type) argument
2173 soap_get_ns1__getSystemNotifications(struct soap *soap, struct ns1__getSystemNotifications *p, const char *tag, const char *type) argument
2181 soap_in_ns1__getSystemNotifications(struct soap *soap, const char *tag, struct ns1__getSystemNotifications *a, const char *type) argument
2211 soap_default_ns1__getSystemNotificationsResponse(struct soap *soap, struct ns1__getSystemNotificationsResponse *a) argument
2217 soap_serialize_ns1__getSystemNotificationsResponse(struct soap *soap, const struct ns1__getSystemNotificationsResponse *a) argument
2223 soap_put_ns1__getSystemNotificationsResponse(struct soap *soap, const struct ns1__getSystemNotificationsResponse *a, const char *tag, const char *type) argument
2231 soap_out_ns1__getSystemNotificationsResponse(struct soap *soap, const char *tag, int id, const struct ns1__getSystemNotificationsResponse *a, const char *type) argument
2240 soap_get_ns1__getSystemNotificationsResponse(struct soap *soap, struct ns1__getSystemNotificationsResponse *p, const char *tag, const char *type) argument
2248 soap_in_ns1__getSystemNotificationsResponse(struct soap *soap, const char *tag, struct ns1__getSystemNotificationsResponse *a, const char *type) argument
2284 soap_default_ns1__getNotifications(struct soap *soap, struct ns1__getNotifications *a) argument
2290 soap_serialize_ns1__getNotifications(struct soap *soap, const struct ns1__getNotifications *a) argument
2296 soap_put_ns1__getNotifications(struct soap *soap, const struct ns1__getNotifications *a, const char *tag, const char *type) argument
2304 soap_out_ns1__getNotifications(struct soap *soap, const char *tag, int id, const struct ns1__getNotifications *a, const char *type) argument
2313 soap_get_ns1__getNotifications(struct soap *soap, struct ns1__getNotifications *p, const char *tag, const char *type) argument
2321 soap_in_ns1__getNotifications(struct soap *soap, const char *tag, struct ns1__getNotifications *a, const char *type) argument
2357 soap_default_ns1__getNotificationsResponse(struct soap *soap, struct ns1__getNotificationsResponse *a) argument
2363 soap_serialize_ns1__getNotificationsResponse(struct soap *soap, const struct ns1__getNotificationsResponse *a) argument
2369 soap_put_ns1__getNotificationsResponse(struct soap *soap, const struct ns1__getNotificationsResponse *a, const char *tag, const char *type) argument
2377 soap_out_ns1__getNotificationsResponse(struct soap *soap, const char *tag, int id, const struct ns1__getNotificationsResponse *a, const char *type) argument
2386 soap_get_ns1__getNotificationsResponse(struct soap *soap, struct ns1__getNotificationsResponse *p, const char *tag, const char *type) argument
2394 soap_in_ns1__getNotificationsResponse(struct soap *soap, const char *tag, struct ns1__getNotificationsResponse *a, const char *type) argument
2430 soap_default_ns1__getNetwork(struct soap *soap, struct ns1__getNetwork *a) argument
2436 soap_serialize_ns1__getNetwork(struct soap *soap, const struct ns1__getNetwork *a) argument
2442 soap_put_ns1__getNetwork(struct soap *soap, const struct ns1__getNetwork *a, const char *tag, const char *type) argument
2450 soap_out_ns1__getNetwork(struct soap *soap, const char *tag, int id, const struct ns1__getNetwork *a, const char *type) argument
2459 soap_get_ns1__getNetwork(struct soap *soap, struct ns1__getNetwork *p, const char *tag, const char *type) argument
2467 soap_in_ns1__getNetwork(struct soap *soap, const char *tag, struct ns1__getNetwork *a, const char *type) argument
2507 soap_default_ns1__getNetworkResponse(struct soap *soap, struct ns1__getNetworkResponse *a) argument
2513 soap_serialize_ns1__getNetworkResponse(struct soap *soap, const struct ns1__getNetworkResponse *a) argument
2519 soap_put_ns1__getNetworkResponse(struct soap *soap, const struct ns1__getNetworkResponse *a, const char *tag, const char *type) argument
2527 soap_out_ns1__getNetworkResponse(struct soap *soap, const char *tag, int id, const struct ns1__getNetworkResponse *a, const char *type) argument
2536 soap_get_ns1__getNetworkResponse(struct soap *soap, struct ns1__getNetworkResponse *p, const char *tag, const char *type) argument
2544 soap_in_ns1__getNetworkResponse(struct soap *soap, const char *tag, struct ns1__getNetworkResponse *a, const char *type) argument
2580 soap_default_ns1__getNetworks(struct soap *soap, struct ns1__getNetworks *a) argument
2586 soap_serialize_ns1__getNetworks(struct soap *soap, const struct ns1__getNetworks *a) argument
2592 soap_put_ns1__getNetworks(struct soap *soap, const struct ns1__getNetworks *a, const char *tag, const char *type) argument
2600 soap_out_ns1__getNetworks(struct soap *soap, const char *tag, int id, const struct ns1__getNetworks *a, const char *type) argument
2609 soap_get_ns1__getNetworks(struct soap *soap, struct ns1__getNetworks *p, const char *tag, const char *type) argument
2617 soap_in_ns1__getNetworks(struct soap *soap, const char *tag, struct ns1__getNetworks *a, const char *type) argument
2653 soap_default_ns1__getNetworksResponse(struct soap *soap, struct ns1__getNetworksResponse *a) argument
2659 soap_serialize_ns1__getNetworksResponse(struct soap *soap, const struct ns1__getNetworksResponse *a) argument
2665 soap_put_ns1__getNetworksResponse(struct soap *soap, const struct ns1__getNetworksResponse *a, const char *tag, const char *type) argument
2673 soap_out_ns1__getNetworksResponse(struct soap *soap, const char *tag, int id, const struct ns1__getNetworksResponse *a, const char *type) argument
2682 soap_get_ns1__getNetworksResponse(struct soap *soap, struct ns1__getNetworksResponse *p, const char *tag, const char *type) argument
2690 soap_in_ns1__getNetworksResponse(struct soap *soap, const char *tag, struct ns1__getNetworksResponse *a, const char *type) argument
2726 soap_default_ns1__leaveNetwork(struct soap *soap, struct ns1__leaveNetwork *a) argument
2733 soap_serialize_ns1__leaveNetwork(struct soap *soap, const struct ns1__leaveNetwork *a) argument
2740 soap_put_ns1__leaveNetwork(struct soap *soap, const struct ns1__leaveNetwork *a, const char *tag, const char *type) argument
2748 soap_out_ns1__leaveNetwork(struct soap *soap, const char *tag, int id, const struct ns1__leaveNetwork *a, const char *type) argument
2759 soap_get_ns1__leaveNetwork(struct soap *soap, struct ns1__leaveNetwork *p, const char *tag, const char *type) argument
2767 soap_in_ns1__leaveNetwork(struct soap *soap, const char *tag, struct ns1__leaveNetwork *a, const char *type) argument
2813 soap_default_ns1__leaveNetworkResponse(struct soap *soap, struct ns1__leaveNetworkResponse *a) argument
2818 soap_serialize_ns1__leaveNetworkResponse(struct soap *soap, const struct ns1__leaveNetworkResponse *a) argument
2823 soap_put_ns1__leaveNetworkResponse(struct soap *soap, const struct ns1__leaveNetworkResponse *a, const char *tag, const char *type) argument
2831 soap_out_ns1__leaveNetworkResponse(struct soap *soap, const char *tag, int id, const struct ns1__leaveNetworkResponse *a, const char *type) argument
2838 soap_get_ns1__leaveNetworkResponse(struct soap *soap, struct ns1__leaveNetworkResponse *p, const char *tag, const char *type) argument
2846 soap_in_ns1__leaveNetworkResponse(struct soap *soap, const char *tag, struct ns1__leaveNetworkResponse *a, const char *type) argument
2876 soap_default_ns1__deleteNetworkMember(struct soap *soap, struct ns1__deleteNetworkMember *a) argument
2883 soap_serialize_ns1__deleteNetworkMember(struct soap *soap, const struct ns1__deleteNetworkMember *a) argument
2890 soap_put_ns1__deleteNetworkMember(struct soap *soap, const struct ns1__deleteNetworkMember *a, const char *tag, const char *type) argument
2898 soap_out_ns1__deleteNetworkMember(struct soap *soap, const char *tag, int id, const struct ns1__deleteNetworkMember *a, const char *type) argument
2909 soap_get_ns1__deleteNetworkMember(struct soap *soap, struct ns1__deleteNetworkMember *p, const char *tag, const char *type) argument
2917 soap_in_ns1__deleteNetworkMember(struct soap *soap, const char *tag, struct ns1__deleteNetworkMember *a, const char *type) argument
2963 soap_default_ns1__deleteNetworkMemberResponse(struct soap *soap, struct ns1__deleteNetworkMemberResponse *a) argument
2968 soap_serialize_ns1__deleteNetworkMemberResponse(struct soap *soap, const struct ns1__deleteNetworkMemberResponse *a) argument
2973 soap_put_ns1__deleteNetworkMemberResponse(struct soap *soap, const struct ns1__deleteNetworkMemberResponse *a, const char *tag, const char *type) argument
2981 soap_out_ns1__deleteNetworkMemberResponse(struct soap *soap, const char *tag, int id, const struct ns1__deleteNetworkMemberResponse *a, const char *type) argument
2988 soap_get_ns1__deleteNetworkMemberResponse(struct soap *soap, struct ns1__deleteNetworkMemberResponse *p, const char *tag, const char *type) argument
2996 soap_in_ns1__deleteNetworkMemberResponse(struct soap *soap, const char *tag, struct ns1__deleteNetworkMemberResponse *a, const char *type) argument
3026 soap_default_ns1__declineNetworkInvite(struct soap *soap, struct ns1__declineNetworkInvite *a) argument
3033 soap_serialize_ns1__declineNetworkInvite(struct soap *soap, const struct ns1__declineNetworkInvite *a) argument
3040 soap_put_ns1__declineNetworkInvite(struct soap *soap, const struct ns1__declineNetworkInvite *a, const char *tag, const char *type) argument
3048 soap_out_ns1__declineNetworkInvite(struct soap *soap, const char *tag, int id, const struct ns1__declineNetworkInvite *a, const char *type) argument
3059 soap_get_ns1__declineNetworkInvite(struct soap *soap, struct ns1__declineNetworkInvite *p, const char *tag, const char *type) argument
3067 soap_in_ns1__declineNetworkInvite(struct soap *soap, const char *tag, struct ns1__declineNetworkInvite *a, const char *type) argument
3113 soap_default_ns1__declineNetworkInviteResponse(struct soap *soap, struct ns1__declineNetworkInviteResponse *a) argument
3118 soap_serialize_ns1__declineNetworkInviteResponse(struct soap *soap, const struct ns1__declineNetworkInviteResponse *a) argument
3123 soap_put_ns1__declineNetworkInviteResponse(struct soap *soap, const struct ns1__declineNetworkInviteResponse *a, const char *tag, const char *type) argument
3131 soap_out_ns1__declineNetworkInviteResponse(struct soap *soap, const char *tag, int id, const struct ns1__declineNetworkInviteResponse *a, const char *type) argument
3138 soap_get_ns1__declineNetworkInviteResponse(struct soap *soap, struct ns1__declineNetworkInviteResponse *p, const char *tag, const char *type) argument
3146 soap_in_ns1__declineNetworkInviteResponse(struct soap *soap, const char *tag, struct ns1__declineNetworkInviteResponse *a, const char *type) argument
3176 soap_default_ns1__acceptNetworkInvite(struct soap *soap, struct ns1__acceptNetworkInvite *a) argument
3183 soap_serialize_ns1__acceptNetworkInvite(struct soap *soap, const struct ns1__acceptNetworkInvite *a) argument
3190 soap_put_ns1__acceptNetworkInvite(struct soap *soap, const struct ns1__acceptNetworkInvite *a, const char *tag, const char *type) argument
3198 soap_out_ns1__acceptNetworkInvite(struct soap *soap, const char *tag, int id, const struct ns1__acceptNetworkInvite *a, const char *type) argument
3209 soap_get_ns1__acceptNetworkInvite(struct soap *soap, struct ns1__acceptNetworkInvite *p, const char *tag, const char *type) argument
3217 soap_in_ns1__acceptNetworkInvite(struct soap *soap, const char *tag, struct ns1__acceptNetworkInvite *a, const char *type) argument
3263 soap_default_ns1__acceptNetworkInviteResponse(struct soap *soap, struct ns1__acceptNetworkInviteResponse *a) argument
3268 soap_serialize_ns1__acceptNetworkInviteResponse(struct soap *soap, const struct ns1__acceptNetworkInviteResponse *a) argument
3273 soap_put_ns1__acceptNetworkInviteResponse(struct soap *soap, const struct ns1__acceptNetworkInviteResponse *a, const char *tag, const char *type) argument
3281 soap_out_ns1__acceptNetworkInviteResponse(struct soap *soap, const char *tag, int id, const struct ns1__acceptNetworkInviteResponse *a, const char *type) argument
3288 soap_get_ns1__acceptNetworkInviteResponse(struct soap *soap, struct ns1__acceptNetworkInviteResponse *p, const char *tag, const char *type) argument
3296 soap_in_ns1__acceptNetworkInviteResponse(struct soap *soap, const char *tag, struct ns1__acceptNetworkInviteResponse *a, const char *type) argument
3326 soap_default_ns1__inviteNetworkMemberByUser(struct soap *soap, struct ns1__inviteNetworkMemberByUser *a) argument
3334 soap_serialize_ns1__inviteNetworkMemberByUser(struct soap *soap, const struct ns1__inviteNetworkMemberByUser *a) argument
3342 soap_put_ns1__inviteNetworkMemberByUser(struct soap *soap, const struct ns1__inviteNetworkMemberByUser *a, const char *tag, const char *type) argument
3350 soap_out_ns1__inviteNetworkMemberByUser(struct soap *soap, const char *tag, int id, const struct ns1__inviteNetworkMemberByUser *a, const char *type) argument
3363 soap_get_ns1__inviteNetworkMemberByUser(struct soap *soap, struct ns1__inviteNetworkMemberByUser *p, const char *tag, const char *type) argument
3371 soap_in_ns1__inviteNetworkMemberByUser(struct soap *soap, const char *tag, struct ns1__inviteNetworkMemberByUser *a, const char *type) argument
3423 soap_default_ns1__inviteNetworkMemberByUserResponse(struct soap *soap, struct ns1__inviteNetworkMemberByUserResponse *a) argument
3429 soap_serialize_ns1__inviteNetworkMemberByUserResponse(struct soap *soap, const struct ns1__inviteNetworkMemberByUserResponse *a) argument
3435 soap_put_ns1__inviteNetworkMemberByUserResponse(struct soap *soap, const struct ns1__inviteNetworkMemberByUserResponse *a, const char *tag, const char *type) argument
3443 soap_out_ns1__inviteNetworkMemberByUserResponse(struct soap *soap, const char *tag, int id, const struct ns1__inviteNetworkMemberByUserResponse *a, const char *type) argument
3452 soap_get_ns1__inviteNetworkMemberByUserResponse(struct soap *soap, struct ns1__inviteNetworkMemberByUserResponse *p, const char *tag, const char *type) argument
3460 soap_in_ns1__inviteNetworkMemberByUserResponse(struct soap *soap, const char *tag, struct ns1__inviteNetworkMemberByUserResponse *a, const char *type) argument
3496 soap_default_ns1__inviteNetworkMemberByEmail(struct soap *soap, struct ns1__inviteNetworkMemberByEmail *a) argument
3503 soap_serialize_ns1__inviteNetworkMemberByEmail(struct soap *soap, const struct ns1__inviteNetworkMemberByEmail *a) argument
3510 soap_put_ns1__inviteNetworkMemberByEmail(struct soap *soap, const struct ns1__inviteNetworkMemberByEmail *a, const char *tag, const char *type) argument
3518 soap_out_ns1__inviteNetworkMemberByEmail(struct soap *soap, const char *tag, int id, const struct ns1__inviteNetworkMemberByEmail *a, const char *type) argument
3529 soap_get_ns1__inviteNetworkMemberByEmail(struct soap *soap, struct ns1__inviteNetworkMemberByEmail *p, const char *tag, const char *type) argument
3537 soap_in_ns1__inviteNetworkMemberByEmail(struct soap *soap, const char *tag, struct ns1__inviteNetworkMemberByEmail *a, const char *type) argument
3583 soap_default_ns1__inviteNetworkMemberByEmailResponse(struct soap *soap, struct ns1__inviteNetworkMemberByEmailResponse *a) argument
3589 soap_serialize_ns1__inviteNetworkMemberByEmailResponse(struct soap *soap, const struct ns1__inviteNetworkMemberByEmailResponse *a) argument
3595 soap_put_ns1__inviteNetworkMemberByEmailResponse(struct soap *soap, const struct ns1__inviteNetworkMemberByEmailResponse *a, const char *tag, const char *type) argument
3603 soap_out_ns1__inviteNetworkMemberByEmailResponse(struct soap *soap, const char *tag, int id, const struct ns1__inviteNetworkMemberByEmailResponse *a, const char *type) argument
3612 soap_get_ns1__inviteNetworkMemberByEmailResponse(struct soap *soap, struct ns1__inviteNetworkMemberByEmailResponse *p, const char *tag, const char *type) argument
3620 soap_in_ns1__inviteNetworkMemberByEmailResponse(struct soap *soap, const char *tag, struct ns1__inviteNetworkMemberByEmailResponse *a, const char *type) argument
3656 soap_default_ns1__inviteNetworkMember(struct soap *soap, struct ns1__inviteNetworkMember *a) argument
3663 soap_serialize_ns1__inviteNetworkMember(struct soap *soap, const struct ns1__inviteNetworkMember *a) argument
3670 soap_put_ns1__inviteNetworkMember(struct soap *soap, const struct ns1__inviteNetworkMember *a, const char *tag, const char *type) argument
3678 soap_out_ns1__inviteNetworkMember(struct soap *soap, const char *tag, int id, const struct ns1__inviteNetworkMember *a, const char *type) argument
3689 soap_get_ns1__inviteNetworkMember(struct soap *soap, struct ns1__inviteNetworkMember *p, const char *tag, const char *type) argument
3697 soap_in_ns1__inviteNetworkMember(struct soap *soap, const char *tag, struct ns1__inviteNetworkMember *a, const char *type) argument
3743 soap_default_ns1__inviteNetworkMemberResponse(struct soap *soap, struct ns1__inviteNetworkMemberResponse *a) argument
3749 soap_serialize_ns1__inviteNetworkMemberResponse(struct soap *soap, const struct ns1__inviteNetworkMemberResponse *a) argument
3755 soap_put_ns1__inviteNetworkMemberResponse(struct soap *soap, const struct ns1__inviteNetworkMemberResponse *a, const char *tag, const char *type) argument
3763 soap_out_ns1__inviteNetworkMemberResponse(struct soap *soap, const char *tag, int id, const struct ns1__inviteNetworkMemberResponse *a, const char *type) argument
3772 soap_get_ns1__inviteNetworkMemberResponse(struct soap *soap, struct ns1__inviteNetworkMemberResponse *p, const char *tag, const char *type) argument
3780 soap_in_ns1__inviteNetworkMemberResponse(struct soap *soap, const char *tag, struct ns1__inviteNetworkMemberResponse *a, const char *type) argument
3816 soap_default_ns1__deleteNetwork(struct soap *soap, struct ns1__deleteNetwork *a) argument
3822 soap_serialize_ns1__deleteNetwork(struct soap *soap, const struct ns1__deleteNetwork *a) argument
3828 soap_put_ns1__deleteNetwork(struct soap *soap, const struct ns1__deleteNetwork *a, const char *tag, const char *type) argument
3836 soap_out_ns1__deleteNetwork(struct soap *soap, const char *tag, int id, const struct ns1__deleteNetwork *a, const char *type) argument
3845 soap_get_ns1__deleteNetwork(struct soap *soap, struct ns1__deleteNetwork *p, const char *tag, const char *type) argument
3853 soap_in_ns1__deleteNetwork(struct soap *soap, const char *tag, struct ns1__deleteNetwork *a, const char *type) argument
3893 soap_default_ns1__deleteNetworkResponse(struct soap *soap, struct ns1__deleteNetworkResponse *a) argument
3898 soap_serialize_ns1__deleteNetworkResponse(struct soap *soap, const struct ns1__deleteNetworkResponse *a) argument
3903 soap_put_ns1__deleteNetworkResponse(struct soap *soap, const struct ns1__deleteNetworkResponse *a, const char *tag, const char *type) argument
3911 soap_out_ns1__deleteNetworkResponse(struct soap *soap, const char *tag, int id, const struct ns1__deleteNetworkResponse *a, const char *type) argument
3918 soap_get_ns1__deleteNetworkResponse(struct soap *soap, struct ns1__deleteNetworkResponse *p, const char *tag, const char *type) argument
3926 soap_in_ns1__deleteNetworkResponse(struct soap *soap, const char *tag, struct ns1__deleteNetworkResponse *a, const char *type) argument
3956 soap_default_ns1__addNetwork(struct soap *soap, struct ns1__addNetwork *a) argument
3964 soap_serialize_ns1__addNetwork(struct soap *soap, const struct ns1__addNetwork *a) argument
3972 soap_put_ns1__addNetwork(struct soap *soap, const struct ns1__addNetwork *a, const char *tag, const char *type) argument
3980 soap_out_ns1__addNetwork(struct soap *soap, const char *tag, int id, const struct ns1__addNetwork *a, const char *type) argument
3993 soap_get_ns1__addNetwork(struct soap *soap, struct ns1__addNetwork *p, const char *tag, const char *type) argument
4001 soap_in_ns1__addNetwork(struct soap *soap, const char *tag, struct ns1__addNetwork *a, const char *type) argument
4049 soap_default_ns1__addNetworkResponse(struct soap *soap, struct ns1__addNetworkResponse *a) argument
4055 soap_serialize_ns1__addNetworkResponse(struct soap *soap, const struct ns1__addNetworkResponse *a) argument
4061 soap_put_ns1__addNetworkResponse(struct soap *soap, const struct ns1__addNetworkResponse *a, const char *tag, const char *type) argument
4069 soap_out_ns1__addNetworkResponse(struct soap *soap, const char *tag, int id, const struct ns1__addNetworkResponse *a, const char *type) argument
4078 soap_get_ns1__addNetworkResponse(struct soap *soap, struct ns1__addNetworkResponse *p, const char *tag, const char *type) argument
4086 soap_in_ns1__addNetworkResponse(struct soap *soap, const char *tag, struct ns1__addNetworkResponse *a, const char *type) argument
4122 soap_default_ns1__lookupContacts(struct soap *soap, struct ns1__lookupContacts *a) argument
4128 soap_serialize_ns1__lookupContacts(struct soap *soap, const struct ns1__lookupContacts *a) argument
4134 soap_put_ns1__lookupContacts(struct soap *soap, const struct ns1__lookupContacts *a, const char *tag, const char *type) argument
4142 soap_out_ns1__lookupContacts(struct soap *soap, const char *tag, int id, const struct ns1__lookupContacts *a, const char *type) argument
4151 soap_get_ns1__lookupContacts(struct soap *soap, struct ns1__lookupContacts *p, const char *tag, const char *type) argument
4159 soap_in_ns1__lookupContacts(struct soap *soap, const char *tag, struct ns1__lookupContacts *a, const char *type) argument
4195 soap_default_ns1__lookupContactsResponse(struct soap *soap, struct ns1__lookupContactsResponse *a) argument
4201 soap_serialize_ns1__lookupContactsResponse(struct soap *soap, const struct ns1__lookupContactsResponse *a) argument
4207 soap_put_ns1__lookupContactsResponse(struct soap *soap, const struct ns1__lookupContactsResponse *a, const char *tag, const char *type) argument
4215 soap_out_ns1__lookupContactsResponse(struct soap *soap, const char *tag, int id, const struct ns1__lookupContactsResponse *a, const char *type) argument
4224 soap_get_ns1__lookupContactsResponse(struct soap *soap, struct ns1__lookupContactsResponse *p, const char *tag, const char *type) argument
4232 soap_in_ns1__lookupContactsResponse(struct soap *soap, const char *tag, struct ns1__lookupContactsResponse *a, const char *type) argument
4268 soap_default_ns1__getContact(struct soap *soap, struct ns1__getContact *a) argument
4274 soap_serialize_ns1__getContact(struct soap *soap, const struct ns1__getContact *a) argument
4280 soap_put_ns1__getContact(struct soap *soap, const struct ns1__getContact *a, const char *tag, const char *type) argument
4288 soap_out_ns1__getContact(struct soap *soap, const char *tag, int id, const struct ns1__getContact *a, const char *type) argument
4297 soap_get_ns1__getContact(struct soap *soap, struct ns1__getContact *p, const char *tag, const char *type) argument
4305 soap_in_ns1__getContact(struct soap *soap, const char *tag, struct ns1__getContact *a, const char *type) argument
4341 soap_default_ns1__getContactResponse(struct soap *soap, struct ns1__getContactResponse *a) argument
4347 soap_serialize_ns1__getContactResponse(struct soap *soap, const struct ns1__getContactResponse *a) argument
4353 soap_put_ns1__getContactResponse(struct soap *soap, const struct ns1__getContactResponse *a, const char *tag, const char *type) argument
4361 soap_out_ns1__getContactResponse(struct soap *soap, const char *tag, int id, const struct ns1__getContactResponse *a, const char *type) argument
4370 soap_get_ns1__getContactResponse(struct soap *soap, struct ns1__getContactResponse *p, const char *tag, const char *type) argument
4378 soap_in_ns1__getContactResponse(struct soap *soap, const char *tag, struct ns1__getContactResponse *a, const char *type) argument
4414 soap_default_ns1__updateContact(struct soap *soap, struct ns1__updateContact *a) argument
4420 soap_serialize_ns1__updateContact(struct soap *soap, const struct ns1__updateContact *a) argument
4426 soap_put_ns1__updateContact(struct soap *soap, const struct ns1__updateContact *a, const char *tag, const char *type) argument
4434 soap_out_ns1__updateContact(struct soap *soap, const char *tag, int id, const struct ns1__updateContact *a, const char *type) argument
4443 soap_get_ns1__updateContact(struct soap *soap, struct ns1__updateContact *p, const char *tag, const char *type) argument
4451 soap_in_ns1__updateContact(struct soap *soap, const char *tag, struct ns1__updateContact *a, const char *type) argument
4487 soap_default_ns1__updateContactResponse(struct soap *soap, struct ns1__updateContactResponse *a) argument
4492 soap_serialize_ns1__updateContactResponse(struct soap *soap, const struct ns1__updateContactResponse *a) argument
4497 soap_put_ns1__updateContactResponse(struct soap *soap, const struct ns1__updateContactResponse *a, const char *tag, const char *type) argument
4505 soap_out_ns1__updateContactResponse(struct soap *soap, const char *tag, int id, const struct ns1__updateContactResponse *a, const char *type) argument
4512 soap_get_ns1__updateContactResponse(struct soap *soap, struct ns1__updateContactResponse *p, const char *tag, const char *type) argument
4520 soap_in_ns1__updateContactResponse(struct soap *soap, const char *tag, struct ns1__updateContactResponse *a, const char *type) argument
4550 soap_default_ns1__changePassword(struct soap *soap, struct ns1__changePassword *a) argument
4557 soap_serialize_ns1__changePassword(struct soap *soap, const struct ns1__changePassword *a) argument
4564 soap_put_ns1__changePassword(struct soap *soap, const struct ns1__changePassword *a, const char *tag, const char *type) argument
4572 soap_out_ns1__changePassword(struct soap *soap, const char *tag, int id, const struct ns1__changePassword *a, const char *type) argument
4583 soap_get_ns1__changePassword(struct soap *soap, struct ns1__changePassword *p, const char *tag, const char *type) argument
4591 soap_in_ns1__changePassword(struct soap *soap, const char *tag, struct ns1__changePassword *a, const char *type) argument
4633 soap_default_ns1__changePasswordResponse(struct soap *soap, struct ns1__changePasswordResponse *a) argument
4638 soap_serialize_ns1__changePasswordResponse(struct soap *soap, const struct ns1__changePasswordResponse *a) argument
4643 soap_put_ns1__changePasswordResponse(struct soap *soap, const struct ns1__changePasswordResponse *a, const char *tag, const char *type) argument
4651 soap_out_ns1__changePasswordResponse(struct soap *soap, const char *tag, int id, const struct ns1__changePasswordResponse *a, const char *type) argument
4658 soap_get_ns1__changePasswordResponse(struct soap *soap, struct ns1__changePasswordResponse *p, const char *tag, const char *type) argument
4666 soap_in_ns1__changePasswordResponse(struct soap *soap, const char *tag, struct ns1__changePasswordResponse *a, const char *type) argument
4696 soap_default_ns1__deleteUser(struct soap *soap, struct ns1__deleteUser *a) argument
4702 soap_serialize_ns1__deleteUser(struct soap *soap, const struct ns1__deleteUser *a) argument
4708 soap_put_ns1__deleteUser(struct soap *soap, const struct ns1__deleteUser *a, const char *tag, const char *type) argument
4716 soap_out_ns1__deleteUser(struct soap *soap, const char *tag, int id, const struct ns1__deleteUser *a, const char *type) argument
4725 soap_get_ns1__deleteUser(struct soap *soap, struct ns1__deleteUser *p, const char *tag, const char *type) argument
4733 soap_in_ns1__deleteUser(struct soap *soap, const char *tag, struct ns1__deleteUser *a, const char *type) argument
4769 soap_default_ns1__deleteUserResponse(struct soap *soap, struct ns1__deleteUserResponse *a) argument
4774 soap_serialize_ns1__deleteUserResponse(struct soap *soap, const struct ns1__deleteUserResponse *a) argument
4779 soap_put_ns1__deleteUserResponse(struct soap *soap, const struct ns1__deleteUserResponse *a, const char *tag, const char *type) argument
4787 soap_out_ns1__deleteUserResponse(struct soap *soap, const char *tag, int id, const struct ns1__deleteUserResponse *a, const char *type) argument
4794 soap_get_ns1__deleteUserResponse(struct soap *soap, struct ns1__deleteUserResponse *p, const char *tag, const char *type) argument
4802 soap_in_ns1__deleteUserResponse(struct soap *soap, const char *tag, struct ns1__deleteUserResponse *a, const char *type) argument
4832 soap_default_ns1__vrfyLogin(struct soap *soap, struct ns1__vrfyLogin *a) argument
4837 soap_serialize_ns1__vrfyLogin(struct soap *soap, const struct ns1__vrfyLogin *a) argument
4842 soap_put_ns1__vrfyLogin(struct soap *soap, const struct ns1__vrfyLogin *a, const char *tag, const char *type) argument
4850 soap_out_ns1__vrfyLogin(struct soap *soap, const char *tag, int id, const struct ns1__vrfyLogin *a, const char *type) argument
4857 soap_get_ns1__vrfyLogin(struct soap *soap, struct ns1__vrfyLogin *p, const char *tag, const char *type) argument
4865 soap_in_ns1__vrfyLogin(struct soap *soap, const char *tag, struct ns1__vrfyLogin *a, const char *type) argument
4895 soap_default_ns1__vrfyLoginResponse(struct soap *soap, struct ns1__vrfyLoginResponse *a) argument
4900 soap_serialize_ns1__vrfyLoginResponse(struct soap *soap, const struct ns1__vrfyLoginResponse *a) argument
4905 soap_put_ns1__vrfyLoginResponse(struct soap *soap, const struct ns1__vrfyLoginResponse *a, const char *tag, const char *type) argument
4913 soap_out_ns1__vrfyLoginResponse(struct soap *soap, const char *tag, int id, const struct ns1__vrfyLoginResponse *a, const char *type) argument
4920 soap_get_ns1__vrfyLoginResponse(struct soap *soap, struct ns1__vrfyLoginResponse *p, const char *tag, const char *type) argument
4928 soap_in_ns1__vrfyLoginResponse(struct soap *soap, const char *tag, struct ns1__vrfyLoginResponse *a, const char *type) argument
4958 soap_default_ns4__UpdateMemberContactNotification(struct soap *soap, struct ns4__UpdateMemberContactNotification *a) argument
4968 soap_serialize_ns4__UpdateMemberContactNotification(struct soap *soap, const struct ns4__UpdateMemberContactNotification *a) argument
4978 soap_put_ns4__UpdateMemberContactNotification(struct soap *soap, const struct ns4__UpdateMemberContactNotification *a, const char *tag, const char *type) argument
4986 soap_out_ns4__UpdateMemberContactNotification(struct soap *soap, const char *tag, int id, const struct ns4__UpdateMemberContactNotification *a, const char *type) argument
5003 soap_get_ns4__UpdateMemberContactNotification(struct soap *soap, struct ns4__UpdateMemberContactNotification *p, const char *tag, const char *type) argument
5011 soap_in_ns4__UpdateMemberContactNotification(struct soap *soap, const char *tag, struct ns4__UpdateMemberContactNotification *a, const char *type) argument
5071 soap_default_ns4__SignupNetworkMemberNotification(struct soap *soap, struct ns4__SignupNetworkMemberNotification *a) argument
5082 soap_serialize_ns4__SignupNetworkMemberNotification(struct soap *soap, const struct ns4__SignupNetworkMemberNotification *a) argument
5093 soap_put_ns4__SignupNetworkMemberNotification(struct soap *soap, const struct ns4__SignupNetworkMemberNotification *a, const char *tag, const char *type) argument
5101 soap_out_ns4__SignupNetworkMemberNotification(struct soap *soap, const char *tag, int id, const struct ns4__SignupNetworkMemberNotification *a, const char *type) argument
5120 soap_get_ns4__SignupNetworkMemberNotification(struct soap *soap, struct ns4__SignupNetworkMemberNotification *p, const char *tag, const char *type) argument
5128 soap_in_ns4__SignupNetworkMemberNotification(struct soap *soap, const char *tag, struct ns4__SignupNetworkMemberNotification *a, const char *type) argument
5194 soap_default_ns4__DeleteNetworkMemberNotification(struct soap *soap, struct ns4__DeleteNetworkMemberNotification *a) argument
5204 soap_serialize_ns4__DeleteNetworkMemberNotification(struct soap *soap, const struct ns4__DeleteNetworkMemberNotification *a) argument
5214 soap_put_ns4__DeleteNetworkMemberNotification(struct soap *soap, const struct ns4__DeleteNetworkMemberNotification *a, const char *tag, const char *type) argument
5222 soap_out_ns4__DeleteNetworkMemberNotification(struct soap *soap, const char *tag, int id, const struct ns4__DeleteNetworkMemberNotification *a, const char *type) argument
5239 soap_get_ns4__DeleteNetworkMemberNotification(struct soap *soap, struct ns4__DeleteNetworkMemberNotification *p, const char *tag, const char *type) argument
5247 soap_in_ns4__DeleteNetworkMemberNotification(struct soap *soap, const char *tag, struct ns4__DeleteNetworkMemberNotification *a, const char *type) argument
5307 soap_default_ns4__DeclineNetworkInviteNotification(struct soap *soap, struct ns4__DeclineNetworkInviteNotification *a) argument
5317 soap_serialize_ns4__DeclineNetworkInviteNotification(struct soap *soap, const struct ns4__DeclineNetworkInviteNotification *a) argument
5327 soap_put_ns4__DeclineNetworkInviteNotification(struct soap *soap, const struct ns4__DeclineNetworkInviteNotification *a, const char *tag, const char *type) argument
5335 soap_out_ns4__DeclineNetworkInviteNotification(struct soap *soap, const char *tag, int id, const struct ns4__DeclineNetworkInviteNotification *a, const char *type) argument
5352 soap_get_ns4__DeclineNetworkInviteNotification(struct soap *soap, struct ns4__DeclineNetworkInviteNotification *p, const char *tag, const char *type) argument
5360 soap_in_ns4__DeclineNetworkInviteNotification(struct soap *soap, const char *tag, struct ns4__DeclineNetworkInviteNotification *a, const char *type) argument
5420 soap_default_ns4__AddNetworkMemberNotification(struct soap *soap, struct ns4__AddNetworkMemberNotification *a) argument
5430 soap_serialize_ns4__AddNetworkMemberNotification(struct soap *soap, const struct ns4__AddNetworkMemberNotification *a) argument
5440 soap_put_ns4__AddNetworkMemberNotification(struct soap *soap, const struct ns4__AddNetworkMemberNotification *a, const char *tag, const char *type) argument
5448 soap_out_ns4__AddNetworkMemberNotification(struct soap *soap, const char *tag, int id, const struct ns4__AddNetworkMemberNotification *a, const char *type) argument
5465 soap_get_ns4__AddNetworkMemberNotification(struct soap *soap, struct ns4__AddNetworkMemberNotification *p, const char *tag, const char *type) argument
5473 soap_in_ns4__AddNetworkMemberNotification(struct soap *soap, const char *tag, struct ns4__AddNetworkMemberNotification *a, const char *type) argument
5533 soap_default_ns5__PeerSynPktEvent(struct soap *soap, struct ns5__PeerSynPktEvent *a) argument
5547 soap_serialize_ns5__PeerSynPktEvent(struct soap *soap, const struct ns5__PeerSynPktEvent *a) argument
5561 soap_put_ns5__PeerSynPktEvent(struct soap *soap, const struct ns5__PeerSynPktEvent *a, const char *tag, const char *type) argument
5569 soap_out_ns5__PeerSynPktEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerSynPktEvent *a, const char *type) argument
5594 soap_get_ns5__PeerSynPktEvent(struct soap *soap, struct ns5__PeerSynPktEvent *p, const char *tag, const char *type) argument
5602 soap_in_ns5__PeerSynPktEvent(struct soap *soap, const char *tag, struct ns5__PeerSynPktEvent *a, const char *type) argument
5686 soap_default_ns5__PeerDisconnectedEvent(struct soap *soap, struct ns5__PeerDisconnectedEvent *a) argument
5699 soap_serialize_ns5__PeerDisconnectedEvent(struct soap *soap, const struct ns5__PeerDisconnectedEvent *a) argument
5712 soap_put_ns5__PeerDisconnectedEvent(struct soap *soap, const struct ns5__PeerDisconnectedEvent *a, const char *tag, const char *type) argument
5720 soap_out_ns5__PeerDisconnectedEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerDisconnectedEvent *a, const char *type) argument
5743 soap_get_ns5__PeerDisconnectedEvent(struct soap *soap, struct ns5__PeerDisconnectedEvent *p, const char *tag, const char *type) argument
5751 soap_in_ns5__PeerDisconnectedEvent(struct soap *soap, const char *tag, struct ns5__PeerDisconnectedEvent *a, const char *type) argument
5829 soap_default_ns5__PeerConnectedEvent(struct soap *soap, struct ns5__PeerConnectedEvent *a) argument
5842 soap_serialize_ns5__PeerConnectedEvent(struct soap *soap, const struct ns5__PeerConnectedEvent *a) argument
5855 soap_put_ns5__PeerConnectedEvent(struct soap *soap, const struct ns5__PeerConnectedEvent *a, const char *tag, const char *type) argument
5863 soap_out_ns5__PeerConnectedEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectedEvent *a, const char *type) argument
5886 soap_get_ns5__PeerConnectedEvent(struct soap *soap, struct ns5__PeerConnectedEvent *p, const char *tag, const char *type) argument
5894 soap_in_ns5__PeerConnectedEvent(struct soap *soap, const char *tag, struct ns5__PeerConnectedEvent *a, const char *type) argument
5972 soap_default_ns5__PeerConnectRequestEvent(struct soap *soap, struct ns5__PeerConnectRequestEvent *a) argument
5987 soap_serialize_ns5__PeerConnectRequestEvent(struct soap *soap, const struct ns5__PeerConnectRequestEvent *a) argument
6002 soap_put_ns5__PeerConnectRequestEvent(struct soap *soap, const struct ns5__PeerConnectRequestEvent *a, const char *tag, const char *type) argument
6010 soap_out_ns5__PeerConnectRequestEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectRequestEvent *a, const char *type) argument
6037 soap_get_ns5__PeerConnectRequestEvent(struct soap *soap, struct ns5__PeerConnectRequestEvent *p, const char *tag, const char *type) argument
6045 soap_in_ns5__PeerConnectRequestEvent(struct soap *soap, const char *tag, struct ns5__PeerConnectRequestEvent *a, const char *type) argument
6135 soap_default_ns5__PeerConnectRejectEvent(struct soap *soap, struct ns5__PeerConnectRejectEvent *a) argument
6149 soap_serialize_ns5__PeerConnectRejectEvent(struct soap *soap, const struct ns5__PeerConnectRejectEvent *a) argument
6163 soap_put_ns5__PeerConnectRejectEvent(struct soap *soap, const struct ns5__PeerConnectRejectEvent *a, const char *tag, const char *type) argument
6171 soap_out_ns5__PeerConnectRejectEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectRejectEvent *a, const char *type) argument
6196 soap_get_ns5__PeerConnectRejectEvent(struct soap *soap, struct ns5__PeerConnectRejectEvent *p, const char *tag, const char *type) argument
6204 soap_in_ns5__PeerConnectRejectEvent(struct soap *soap, const char *tag, struct ns5__PeerConnectRejectEvent *a, const char *type) argument
6288 soap_default_ns5__PeerConnectEvent(struct soap *soap, struct ns5__PeerConnectEvent *a) argument
6304 soap_serialize_ns5__PeerConnectEvent(struct soap *soap, const struct ns5__PeerConnectEvent *a) argument
6320 soap_put_ns5__PeerConnectEvent(struct soap *soap, const struct ns5__PeerConnectEvent *a, const char *tag, const char *type) argument
6328 soap_out_ns5__PeerConnectEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectEvent *a, const char *type) argument
6357 soap_get_ns5__PeerConnectEvent(struct soap *soap, struct ns5__PeerConnectEvent *p, const char *tag, const char *type) argument
6365 soap_in_ns5__PeerConnectEvent(struct soap *soap, const char *tag, struct ns5__PeerConnectEvent *a, const char *type) argument
6461 soap_default_ns5__PeerConnectErrorEvent(struct soap *soap, struct ns5__PeerConnectErrorEvent *a) argument
6475 soap_serialize_ns5__PeerConnectErrorEvent(struct soap *soap, const struct ns5__PeerConnectErrorEvent *a) argument
6489 soap_put_ns5__PeerConnectErrorEvent(struct soap *soap, const struct ns5__PeerConnectErrorEvent *a, const char *tag, const char *type) argument
6497 soap_out_ns5__PeerConnectErrorEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectErrorEvent *a, const char *type) argument
6522 soap_get_ns5__PeerConnectErrorEvent(struct soap *soap, struct ns5__PeerConnectErrorEvent *p, const char *tag, const char *type) argument
6530 soap_in_ns5__PeerConnectErrorEvent(struct soap *soap, const char *tag, struct ns5__PeerConnectErrorEvent *a, const char *type) argument
6614 soap_default_ns5__PeerConnectBusyEvent(struct soap *soap, struct ns5__PeerConnectBusyEvent *a) argument
6627 soap_serialize_ns5__PeerConnectBusyEvent(struct soap *soap, const struct ns5__PeerConnectBusyEvent *a) argument
6640 soap_put_ns5__PeerConnectBusyEvent(struct soap *soap, const struct ns5__PeerConnectBusyEvent *a, const char *tag, const char *type) argument
6648 soap_out_ns5__PeerConnectBusyEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectBusyEvent *a, const char *type) argument
6671 soap_get_ns5__PeerConnectBusyEvent(struct soap *soap, struct ns5__PeerConnectBusyEvent *p, const char *tag, const char *type) argument
6679 soap_in_ns5__PeerConnectBusyEvent(struct soap *soap, const char *tag, struct ns5__PeerConnectBusyEvent *a, const char *type) argument
6757 soap_default_ns4__InviteNetworkNotification(struct soap *soap, struct ns4__InviteNetworkNotification *a) argument
6766 soap_serialize_ns4__InviteNetworkNotification(struct soap *soap, const struct ns4__InviteNetworkNotification *a) argument
6775 soap_put_ns4__InviteNetworkNotification(struct soap *soap, const struct ns4__InviteNetworkNotification *a, const char *tag, const char *type) argument
6783 soap_out_ns4__InviteNetworkNotification(struct soap *soap, const char *tag, int id, const struct ns4__InviteNetworkNotification *a, const char *type) argument
6798 soap_get_ns4__InviteNetworkNotification(struct soap *soap, struct ns4__InviteNetworkNotification *p, const char *tag, const char *type) argument
6806 soap_in_ns4__InviteNetworkNotification(struct soap *soap, const char *tag, struct ns4__InviteNetworkNotification *a, const char *type) argument
6860 soap_default_ns4__DeleteNetworkNotification(struct soap *soap, struct ns4__DeleteNetworkNotification *a) argument
6869 soap_serialize_ns4__DeleteNetworkNotification(struct soap *soap, const struct ns4__DeleteNetworkNotification *a) argument
6878 soap_put_ns4__DeleteNetworkNotification(struct soap *soap, const struct ns4__DeleteNetworkNotification *a, const char *tag, const char *type) argument
6886 soap_out_ns4__DeleteNetworkNotification(struct soap *soap, const char *tag, int id, const struct ns4__DeleteNetworkNotification *a, const char *type) argument
6901 soap_get_ns4__DeleteNetworkNotification(struct soap *soap, struct ns4__DeleteNetworkNotification *p, const char *tag, const char *type) argument
6909 soap_in_ns4__DeleteNetworkNotification(struct soap *soap, const char *tag, struct ns4__DeleteNetworkNotification *a, const char *type) argument
6963 soap_default_ns4__NetworkMemberNotification(struct soap *soap, struct ns4__NetworkMemberNotification *a) argument
6973 soap_serialize_ns4__NetworkMemberNotification(struct soap *soap, const struct ns4__NetworkMemberNotification *a) argument
6983 soap_put_ns4__NetworkMemberNotification(struct soap *soap, const struct ns4__NetworkMemberNotification *a, const char *tag, const char *type) argument
6991 soap_out_ns4__NetworkMemberNotification(struct soap *soap, const char *tag, int id, const struct ns4__NetworkMemberNotification *a, const char *type) argument
7008 soap_get_ns4__NetworkMemberNotification(struct soap *soap, struct ns4__NetworkMemberNotification *p, const char *tag, const char *type) argument
7016 soap_in_ns4__NetworkMemberNotification(struct soap *soap, const char *tag, struct ns4__NetworkMemberNotification *a, const char *type) argument
7076 soap_default_ns5__PeerEventIndex(struct soap *soap, struct ns5__PeerEventIndex *a) argument
7085 soap_serialize_ns5__PeerEventIndex(struct soap *soap, const struct ns5__PeerEventIndex *a) argument
7094 soap_put_ns5__PeerEventIndex(struct soap *soap, const struct ns5__PeerEventIndex *a, const char *tag, const char *type) argument
7102 soap_out_ns5__PeerEventIndex(struct soap *soap, const char *tag, int id, const struct ns5__PeerEventIndex *a, const char *type) argument
7117 soap_get_ns5__PeerEventIndex(struct soap *soap, struct ns5__PeerEventIndex *p, const char *tag, const char *type) argument
7125 soap_in_ns5__PeerEventIndex(struct soap *soap, const char *tag, struct ns5__PeerEventIndex *a, const char *type) argument
7179 soap_default_ns5__PeerConnectionEvent(struct soap *soap, struct ns5__PeerConnectionEvent *a) argument
7191 soap_serialize_ns5__PeerConnectionEvent(struct soap *soap, const struct ns5__PeerConnectionEvent *a) argument
7203 soap_put_ns5__PeerConnectionEvent(struct soap *soap, const struct ns5__PeerConnectionEvent *a, const char *tag, const char *type) argument
7211 soap_out_ns5__PeerConnectionEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectionEvent *a, const char *type) argument
7232 soap_get_ns5__PeerConnectionEvent(struct soap *soap, struct ns5__PeerConnectionEvent *p, const char *tag, const char *type) argument
7240 soap_in_ns5__PeerConnectionEvent(struct soap *soap, const char *tag, struct ns5__PeerConnectionEvent *a, const char *type) argument
7312 soap_default_ns4__NotificationIndex(struct soap *soap, struct ns4__NotificationIndex *a) argument
7320 soap_serialize_ns4__NotificationIndex(struct soap *soap, const struct ns4__NotificationIndex *a) argument
7328 soap_put_ns4__NotificationIndex(struct soap *soap, const struct ns4__NotificationIndex *a, const char *tag, const char *type) argument
7336 soap_out_ns4__NotificationIndex(struct soap *soap, const char *tag, int id, const struct ns4__NotificationIndex *a, const char *type) argument
7349 soap_get_ns4__NotificationIndex(struct soap *soap, struct ns4__NotificationIndex *p, const char *tag, const char *type) argument
7357 soap_in_ns4__NotificationIndex(struct soap *soap, const char *tag, struct ns4__NotificationIndex *a, const char *type) argument
7405 soap_default_ns4__NetworkNotification(struct soap *soap, struct ns4__NetworkNotification *a) argument
7414 soap_serialize_ns4__NetworkNotification(struct soap *soap, const struct ns4__NetworkNotification *a) argument
7423 soap_put_ns4__NetworkNotification(struct soap *soap, const struct ns4__NetworkNotification *a, const char *tag, const char *type) argument
7431 soap_out_ns4__NetworkNotification(struct soap *soap, const char *tag, int id, const struct ns4__NetworkNotification *a, const char *type) argument
7446 soap_get_ns4__NetworkNotification(struct soap *soap, struct ns4__NetworkNotification *p, const char *tag, const char *type) argument
7454 soap_in_ns4__NetworkNotification(struct soap *soap, const char *tag, struct ns4__NetworkNotification *a, const char *type) argument
7508 soap_default_ns2__Usert(struct soap *soap, struct ns2__Usert *a) argument
7517 soap_serialize_ns2__Usert(struct soap *soap, const struct ns2__Usert *a) argument
7526 soap_put_ns2__Usert(struct soap *soap, const struct ns2__Usert *a, const char *tag, const char *type) argument
7534 soap_out_ns2__Usert(struct soap *soap, const char *tag, int id, const struct ns2__Usert *a, const char *type) argument
7549 soap_get_ns2__Usert(struct soap *soap, struct ns2__Usert *p, const char *tag, const char *type) argument
7557 soap_in_ns2__Usert(struct soap *soap, const char *tag, struct ns2__Usert *a, const char *type) argument
7611 soap_default_ns5__PeerRegister(struct soap *soap, struct ns5__PeerRegister *a) argument
7619 soap_serialize_ns5__PeerRegister(struct soap *soap, const struct ns5__PeerRegister *a) argument
7627 soap_put_ns5__PeerRegister(struct soap *soap, const struct ns5__PeerRegister *a, const char *tag, const char *type) argument
7635 soap_out_ns5__PeerRegister(struct soap *soap, const char *tag, int id, const struct ns5__PeerRegister *a, const char *type) argument
7648 soap_get_ns5__PeerRegister(struct soap *soap, struct ns5__PeerRegister *p, const char *tag, const char *type) argument
7656 soap_in_ns5__PeerRegister(struct soap *soap, const char *tag, struct ns5__PeerRegister *a, const char *type) argument
7704 soap_default_ns5__PeerEventType(struct soap *soap, struct ns5__PeerEventType *a) argument
7709 soap_serialize_ns5__PeerEventType(struct soap *soap, const struct ns5__PeerEventType *a) argument
7714 soap_put_ns5__PeerEventType(struct soap *soap, const struct ns5__PeerEventType *a, const char *tag, const char *type) argument
7722 soap_out_ns5__PeerEventType(struct soap *soap, const char *tag, int id, const struct ns5__PeerEventType *a, const char *type) argument
7729 soap_get_ns5__PeerEventType(struct soap *soap, struct ns5__PeerEventType *p, const char *tag, const char *type) argument
7737 soap_in_ns5__PeerEventType(struct soap *soap, const char *tag, struct ns5__PeerEventType *a, const char *type) argument
7767 soap_default_ns5__PeerConnectionType(struct soap *soap, struct ns5__PeerConnectionType *a) argument
7772 soap_serialize_ns5__PeerConnectionType(struct soap *soap, const struct ns5__PeerConnectionType *a) argument
7777 soap_put_ns5__PeerConnectionType(struct soap *soap, const struct ns5__PeerConnectionType *a, const char *tag, const char *type) argument
7785 soap_out_ns5__PeerConnectionType(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectionType *a, const char *type) argument
7792 soap_get_ns5__PeerConnectionType(struct soap *soap, struct ns5__PeerConnectionType *p, const char *tag, const char *type) argument
7800 soap_in_ns5__PeerConnectionType(struct soap *soap, const char *tag, struct ns5__PeerConnectionType *a, const char *type) argument
7830 soap_default_ns5__PeerConnectionStats(struct soap *soap, struct ns5__PeerConnectionStats *a) argument
7838 soap_serialize_ns5__PeerConnectionStats(struct soap *soap, const struct ns5__PeerConnectionStats *a) argument
7846 soap_put_ns5__PeerConnectionStats(struct soap *soap, const struct ns5__PeerConnectionStats *a, const char *tag, const char *type) argument
7854 soap_out_ns5__PeerConnectionStats(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectionStats *a, const char *type) argument
7867 soap_get_ns5__PeerConnectionStats(struct soap *soap, struct ns5__PeerConnectionStats *p, const char *tag, const char *type) argument
7875 soap_in_ns5__PeerConnectionStats(struct soap *soap, const char *tag, struct ns5__PeerConnectionStats *a, const char *type) argument
7923 soap_default_ns5__PeerConnectionState(struct soap *soap, struct ns5__PeerConnectionState *a) argument
7928 soap_serialize_ns5__PeerConnectionState(struct soap *soap, const struct ns5__PeerConnectionState *a) argument
7933 soap_put_ns5__PeerConnectionState(struct soap *soap, const struct ns5__PeerConnectionState *a, const char *tag, const char *type) argument
7941 soap_out_ns5__PeerConnectionState(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectionState *a, const char *type) argument
7948 soap_get_ns5__PeerConnectionState(struct soap *soap, struct ns5__PeerConnectionState *p, const char *tag, const char *type) argument
7956 soap_in_ns5__PeerConnectionState(struct soap *soap, const char *tag, struct ns5__PeerConnectionState *a, const char *type) argument
7986 soap_default_ns5__PeerConnectionInfo(struct soap *soap, struct ns5__PeerConnectionInfo *a) argument
7997 soap_serialize_ns5__PeerConnectionInfo(struct soap *soap, const struct ns5__PeerConnectionInfo *a) argument
8008 soap_put_ns5__PeerConnectionInfo(struct soap *soap, const struct ns5__PeerConnectionInfo *a, const char *tag, const char *type) argument
8016 soap_out_ns5__PeerConnectionInfo(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectionInfo *a, const char *type) argument
8035 soap_get_ns5__PeerConnectionInfo(struct soap *soap, struct ns5__PeerConnectionInfo *p, const char *tag, const char *type) argument
8043 soap_in_ns5__PeerConnectionInfo(struct soap *soap, const char *tag, struct ns5__PeerConnectionInfo *a, const char *type) argument
8109 soap_default_ns5__PeerConnectionConnectedStatus(struct soap *soap, struct ns5__PeerConnectionConnectedStatus *a) argument
8114 soap_serialize_ns5__PeerConnectionConnectedStatus(struct soap *soap, const struct ns5__PeerConnectionConnectedStatus *a) argument
8119 soap_put_ns5__PeerConnectionConnectedStatus(struct soap *soap, const struct ns5__PeerConnectionConnectedStatus *a, const char *tag, const char *type) argument
8127 soap_out_ns5__PeerConnectionConnectedStatus(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectionConnectedStatus *a, const char *type) argument
8134 soap_get_ns5__PeerConnectionConnectedStatus(struct soap *soap, struct ns5__PeerConnectionConnectedStatus *p, const char *tag, const char *type) argument
8142 soap_in_ns5__PeerConnectionConnectedStatus(struct soap *soap, const char *tag, struct ns5__PeerConnectionConnectedStatus *a, const char *type) argument
8172 soap_default_ns5__PeerConnectionConnectStatus(struct soap *soap, struct ns5__PeerConnectionConnectStatus *a) argument
8177 soap_serialize_ns5__PeerConnectionConnectStatus(struct soap *soap, const struct ns5__PeerConnectionConnectStatus *a) argument
8182 soap_put_ns5__PeerConnectionConnectStatus(struct soap *soap, const struct ns5__PeerConnectionConnectStatus *a, const char *tag, const char *type) argument
8190 soap_out_ns5__PeerConnectionConnectStatus(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectionConnectStatus *a, const char *type) argument
8197 soap_get_ns5__PeerConnectionConnectStatus(struct soap *soap, struct ns5__PeerConnectionConnectStatus *p, const char *tag, const char *type) argument
8205 soap_in_ns5__PeerConnectionConnectStatus(struct soap *soap, const char *tag, struct ns5__PeerConnectionConnectStatus *a, const char *type) argument
8235 soap_default_ns5__PeerConnection(struct soap *soap, struct ns5__PeerConnection *a) argument
8250 soap_serialize_ns5__PeerConnection(struct soap *soap, const struct ns5__PeerConnection *a) argument
8265 soap_put_ns5__PeerConnection(struct soap *soap, const struct ns5__PeerConnection *a, const char *tag, const char *type) argument
8273 soap_out_ns5__PeerConnection(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnection *a, const char *type) argument
8300 soap_get_ns5__PeerConnection(struct soap *soap, struct ns5__PeerConnection *p, const char *tag, const char *type) argument
8308 soap_in_ns5__PeerConnection(struct soap *soap, const char *tag, struct ns5__PeerConnection *a, const char *type) argument
8398 soap_default_ns5__PeerEvent(struct soap *soap, struct ns5__PeerEvent *a) argument
8407 soap_serialize_ns5__PeerEvent(struct soap *soap, const struct ns5__PeerEvent *a) argument
8416 soap_put_ns5__PeerEvent(struct soap *soap, const struct ns5__PeerEvent *a, const char *tag, const char *type) argument
8424 soap_out_ns5__PeerEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerEvent *a, const char *type) argument
8439 soap_get_ns5__PeerEvent(struct soap *soap, struct ns5__PeerEvent *p, const char *tag, const char *type) argument
8447 soap_in_ns5__PeerEvent(struct soap *soap, const char *tag, struct ns5__PeerEvent *a, const char *type) argument
8501 soap_default_ns5__PeerAssistAttr(struct soap *soap, struct ns5__PeerAssistAttr *a) argument
8509 soap_serialize_ns5__PeerAssistAttr(struct soap *soap, const struct ns5__PeerAssistAttr *a) argument
8517 soap_put_ns5__PeerAssistAttr(struct soap *soap, const struct ns5__PeerAssistAttr *a, const char *tag, const char *type) argument
8525 soap_out_ns5__PeerAssistAttr(struct soap *soap, const char *tag, int id, const struct ns5__PeerAssistAttr *a, const char *type) argument
8538 soap_get_ns5__PeerAssistAttr(struct soap *soap, struct ns5__PeerAssistAttr *p, const char *tag, const char *type) argument
8546 soap_in_ns5__PeerAssistAttr(struct soap *soap, const char *tag, struct ns5__PeerAssistAttr *a, const char *type) argument
8594 soap_default_ns5__PeerAssist(struct soap *soap, struct ns5__PeerAssist *a) argument
8604 soap_serialize_ns5__PeerAssist(struct soap *soap, const struct ns5__PeerAssist *a) argument
8614 soap_put_ns5__PeerAssist(struct soap *soap, const struct ns5__PeerAssist *a, const char *tag, const char *type) argument
8622 soap_out_ns5__PeerAssist(struct soap *soap, const char *tag, int id, const struct ns5__PeerAssist *a, const char *type) argument
8639 soap_get_ns5__PeerAssist(struct soap *soap, struct ns5__PeerAssist *p, const char *tag, const char *type) argument
8647 soap_in_ns5__PeerAssist(struct soap *soap, const char *tag, struct ns5__PeerAssist *a, const char *type) argument
8707 soap_default_ns5__PeerAccess(struct soap *soap, struct ns5__PeerAccess *a) argument
8715 soap_serialize_ns5__PeerAccess(struct soap *soap, const struct ns5__PeerAccess *a) argument
8723 soap_put_ns5__PeerAccess(struct soap *soap, const struct ns5__PeerAccess *a, const char *tag, const char *type) argument
8731 soap_out_ns5__PeerAccess(struct soap *soap, const char *tag, int id, const struct ns5__PeerAccess *a, const char *type) argument
8744 soap_get_ns5__PeerAccess(struct soap *soap, struct ns5__PeerAccess *p, const char *tag, const char *type) argument
8752 soap_in_ns5__PeerAccess(struct soap *soap, const char *tag, struct ns5__PeerAccess *a, const char *type) argument
8800 soap_default_ns4__NotificationType(struct soap *soap, struct ns4__NotificationType *a) argument
8805 soap_serialize_ns4__NotificationType(struct soap *soap, const struct ns4__NotificationType *a) argument
8810 soap_put_ns4__NotificationType(struct soap *soap, const struct ns4__NotificationType *a, const char *tag, const char *type) argument
8818 soap_out_ns4__NotificationType(struct soap *soap, const char *tag, int id, const struct ns4__NotificationType *a, const char *type) argument
8825 soap_get_ns4__NotificationType(struct soap *soap, struct ns4__NotificationType *p, const char *tag, const char *type) argument
8833 soap_in_ns4__NotificationType(struct soap *soap, const char *tag, struct ns4__NotificationType *a, const char *type) argument
8863 soap_default_ns4__Notification(struct soap *soap, struct ns4__Notification *a) argument
8871 soap_serialize_ns4__Notification(struct soap *soap, const struct ns4__Notification *a) argument
8879 soap_put_ns4__Notification(struct soap *soap, const struct ns4__Notification *a, const char *tag, const char *type) argument
8887 soap_out_ns4__Notification(struct soap *soap, const char *tag, int id, const struct ns4__Notification *a, const char *type) argument
8900 soap_get_ns4__Notification(struct soap *soap, struct ns4__Notification *p, const char *tag, const char *type) argument
8908 soap_in_ns4__Notification(struct soap *soap, const char *tag, struct ns4__Notification *a, const char *type) argument
8956 soap_default_ns3__Vector(struct soap *soap, struct ns3__Vector *a) argument
8963 soap_serialize_ns3__Vector(struct soap *soap, const struct ns3__Vector *a) argument
8968 soap_put_ns3__Vector(struct soap *soap, const struct ns3__Vector *a, const char *tag, const char *type) argument
8976 soap_out_ns3__Vector(struct soap *soap, const char *tag, int id, const struct ns3__Vector *a, const char *type) argument
8988 soap_get_ns3__Vector(struct soap *soap, struct ns3__Vector *p, const char *tag, const char *type) argument
8996 soap_in_ns3__Vector(struct soap *soap, const char *tag, struct ns3__Vector *a, const char *type) argument
9051 soap_default_ns2__UserStats(struct soap *soap, struct ns2__UserStats *a) argument
9059 soap_serialize_ns2__UserStats(struct soap *soap, const struct ns2__UserStats *a) argument
9067 soap_put_ns2__UserStats(struct soap *soap, const struct ns2__UserStats *a, const char *tag, const char *type) argument
9075 soap_out_ns2__UserStats(struct soap *soap, const char *tag, int id, const struct ns2__UserStats *a, const char *type) argument
9088 soap_get_ns2__UserStats(struct soap *soap, struct ns2__UserStats *p, const char *tag, const char *type) argument
9096 soap_in_ns2__UserStats(struct soap *soap, const char *tag, struct ns2__UserStats *a, const char *type) argument
9144 soap_default_ns2__UserAttr(struct soap *soap, struct ns2__UserAttr *a) argument
9152 soap_serialize_ns2__UserAttr(struct soap *soap, const struct ns2__UserAttr *a) argument
9160 soap_put_ns2__UserAttr(struct soap *soap, const struct ns2__UserAttr *a, const char *tag, const char *type) argument
9168 soap_out_ns2__UserAttr(struct soap *soap, const char *tag, int id, const struct ns2__UserAttr *a, const char *type) argument
9181 soap_get_ns2__UserAttr(struct soap *soap, struct ns2__UserAttr *p, const char *tag, const char *type) argument
9189 soap_in_ns2__UserAttr(struct soap *soap, const char *tag, struct ns2__UserAttr *a, const char *type) argument
9237 soap_default_ns2__SystemNotification(struct soap *soap, struct ns2__SystemNotification *a) argument
9248 soap_serialize_ns2__SystemNotification(struct soap *soap, const struct ns2__SystemNotification *a) argument
9259 soap_put_ns2__SystemNotification(struct soap *soap, const struct ns2__SystemNotification *a, const char *tag, const char *type) argument
9267 soap_out_ns2__SystemNotification(struct soap *soap, const char *tag, int id, const struct ns2__SystemNotification *a, const char *type) argument
9286 soap_get_ns2__SystemNotification(struct soap *soap, struct ns2__SystemNotification *p, const char *tag, const char *type) argument
9294 soap_in_ns2__SystemNotification(struct soap *soap, const char *tag, struct ns2__SystemNotification *a, const char *type) argument
9360 soap_default_ns2__IPAttr(struct soap *soap, struct ns2__IPAttr *a) argument
9368 soap_serialize_ns2__IPAttr(struct soap *soap, const struct ns2__IPAttr *a) argument
9376 soap_put_ns2__IPAttr(struct soap *soap, const struct ns2__IPAttr *a, const char *tag, const char *type) argument
9384 soap_out_ns2__IPAttr(struct soap *soap, const char *tag, int id, const struct ns2__IPAttr *a, const char *type) argument
9397 soap_get_ns2__IPAttr(struct soap *soap, struct ns2__IPAttr *p, const char *tag, const char *type) argument
9405 soap_in_ns2__IPAttr(struct soap *soap, const char *tag, struct ns2__IPAttr *a, const char *type) argument
9453 soap_default_ns2__IPAddress(struct soap *soap, struct ns2__IPAddress *a) argument
9460 soap_serialize_ns2__IPAddress(struct soap *soap, const struct ns2__IPAddress *a) argument
9467 soap_put_ns2__IPAddress(struct soap *soap, const struct ns2__IPAddress *a, const char *tag, const char *type) argument
9475 soap_out_ns2__IPAddress(struct soap *soap, const char *tag, int id, const struct ns2__IPAddress *a, const char *type) argument
9486 soap_get_ns2__IPAddress(struct soap *soap, struct ns2__IPAddress *p, const char *tag, const char *type) argument
9494 soap_in_ns2__IPAddress(struct soap *soap, const char *tag, struct ns2__IPAddress *a, const char *type) argument
9536 soap_default_ns2__User(struct soap *soap, struct ns2__User *a) argument
9544 soap_serialize_ns2__User(struct soap *soap, const struct ns2__User *a) argument
9552 soap_put_ns2__User(struct soap *soap, const struct ns2__User *a, const char *tag, const char *type) argument
9560 soap_out_ns2__User(struct soap *soap, const char *tag, int id, const struct ns2__User *a, const char *type) argument
9573 soap_get_ns2__User(struct soap *soap, struct ns2__User *p, const char *tag, const char *type) argument
9581 soap_in_ns2__User(struct soap *soap, const char *tag, struct ns2__User *a, const char *type) argument
9629 soap_default_ns2__Member(struct soap *soap, struct ns2__Member *a) argument
9636 soap_serialize_ns2__Member(struct soap *soap, const struct ns2__Member *a) argument
9643 soap_put_ns2__Member(struct soap *soap, const struct ns2__Member *a, const char *tag, const char *type) argument
9651 soap_out_ns2__Member(struct soap *soap, const char *tag, int id, const struct ns2__Member *a, const char *type) argument
9662 soap_get_ns2__Member(struct soap *soap, struct ns2__Member *p, const char *tag, const char *type) argument
9670 soap_in_ns2__Member(struct soap *soap, const char *tag, struct ns2__Member *a, const char *type) argument
9712 soap_default_ArrayOf_USCORExsd_USCOREanyType(struct soap *soap, struct ArrayOf_USCORExsd_USCOREanyType *a) argument
9718 soap_serialize_ArrayOf_USCORExsd_USCOREanyType(struct soap *soap, struct ArrayOf_USCORExsd_USCOREanyType const*a) argument
9722 soap_put_ArrayOf_USCORExsd_USCOREanyType(struct soap *soap, const struct ArrayOf_USCORExsd_USCOREanyType *a, const char *tag, const char *type) argument
9730 soap_out_ArrayOf_USCORExsd_USCOREanyType(struct soap *soap, const char *tag, int id, const struct ArrayOf_USCORExsd_USCOREanyType *a, const char *type) argument
9745 soap_get_ArrayOf_USCORExsd_USCOREanyType(struct soap *soap, struct ArrayOf_USCORExsd_USCOREanyType *p, const char *tag, const char *type) argument
9753 soap_in_ArrayOf_USCORExsd_USCOREanyType(struct soap *soap, const char *tag, struct ArrayOf_USCORExsd_USCOREanyType *a, const char *type) argument
9820 soap_default_ns2__Network(struct soap *soap, struct ns2__Network *a) argument
9829 soap_serialize_ns2__Network(struct soap *soap, const struct ns2__Network *a) argument
9838 soap_put_ns2__Network(struct soap *soap, const struct ns2__Network *a, const char *tag, const char *type) argument
9846 soap_out_ns2__Network(struct soap *soap, const char *tag, int id, const struct ns2__Network *a, const char *type) argument
9861 soap_get_ns2__Network(struct soap *soap, struct ns2__Network *p, const char *tag, const char *type) argument
9869 soap_in_ns2__Network(struct soap *soap, const char *tag, struct ns2__Network *a, const char *type) argument
9923 soap_default_ns2__Contact(struct soap *soap, struct ns2__Contact *a) argument
9933 soap_serialize_ns2__Contact(struct soap *soap, const struct ns2__Contact *a) argument
9943 soap_put_ns2__Contact(struct soap *soap, const struct ns2__Contact *a, const char *tag, const char *type) argument
9951 soap_out_ns2__Contact(struct soap *soap, const char *tag, int id, const struct ns2__Contact *a, const char *type) argument
9968 soap_get_ns2__Contact(struct soap *soap, struct ns2__Contact *p, const char *tag, const char *type) argument
9976 soap_in_ns2__Contact(struct soap *soap, const char *tag, struct ns2__Contact *a, const char *type) argument
10036 soap_default_xsd__base64Binary(struct soap *soap, struct xsd__base64Binary *a) argument
10045 soap_serialize_xsd__base64Binary(struct soap *soap, struct xsd__base64Binary const*a) argument
10052 soap_put_xsd__base64Binary(struct soap *soap, const struct xsd__base64Binary *a, const char *tag, const char *type) argument
10060 soap_out_xsd__base64Binary(struct soap *soap, const char *tag, int id, const struct xsd__base64Binary *a, const char *type) argument
10076 soap_get_xsd__base64Binary(struct soap *soap, struct xsd__base64Binary *p, const char *tag, const char *type) argument
10084 soap_in_xsd__base64Binary(struct soap *soap, const char *tag, struct xsd__base64Binary *a, const char *type) argument
10124 soap_serialize_PointerToSOAP_ENV__Reason(struct soap *soap, struct SOAP_ENV__Reason *const*a) argument
10130 soap_put_PointerToSOAP_ENV__Reason(struct soap *soap, struct SOAP_ENV__Reason *const*a, const char *tag, const char *type) argument
10138 soap_out_PointerToSOAP_ENV__Reason(struct soap *soap, const char *tag, int id, struct SOAP_ENV__Reason *const*a, const char *type) argument
10146 soap_get_PointerToSOAP_ENV__Reason(struct soap *soap, struct SOAP_ENV__Reason **p, const char *tag, const char *type) argument
10154 soap_in_PointerToSOAP_ENV__Reason(struct soap *soap, const char *tag, struct SOAP_ENV__Reason **a, const char *type) argument
10179 soap_serialize_PointerToSOAP_ENV__Detail(struct soap *soap, struct SOAP_ENV__Detail *const*a) argument
10185 soap_put_PointerToSOAP_ENV__Detail(struct soap *soap, struct SOAP_ENV__Detail *const*a, const char *tag, const char *type) argument
10193 soap_out_PointerToSOAP_ENV__Detail(struct soap *soap, const char *tag, int id, struct SOAP_ENV__Detail *const*a, const char *type) argument
10201 soap_get_PointerToSOAP_ENV__Detail(struct soap *soap, struct SOAP_ENV__Detail **p, const char *tag, const char *type) argument
10209 soap_in_PointerToSOAP_ENV__Detail(struct soap *soap, const char *tag, struct SOAP_ENV__Detail **a, const char *type) argument
10234 soap_serialize_PointerToSOAP_ENV__Code(struct soap *soap, struct SOAP_ENV__Code *const*a) argument
10240 soap_put_PointerToSOAP_ENV__Code(struct soap *soap, struct SOAP_ENV__Code *const*a, const char *tag, const char *type) argument
10248 soap_out_PointerToSOAP_ENV__Code(struct soap *soap, const char *tag, int id, struct SOAP_ENV__Code *const*a, const char *type) argument
10256 soap_get_PointerToSOAP_ENV__Code(struct soap *soap, struct SOAP_ENV__Code **p, const char *tag, const char *type) argument
10264 soap_in_PointerToSOAP_ENV__Code(struct soap *soap, const char *tag, struct SOAP_ENV__Code **a, const char *type) argument
10287 soap_serialize_PointerTons1__getSystemNotificationsResponse(struct soap *soap, struct ns1__getSystemNotificationsResponse *const*a) argument
10293 soap_put_PointerTons1__getSystemNotificationsResponse(struct soap *soap, struct ns1__getSystemNotificationsResponse *const*a, const char *tag, const char *type) argument
10301 soap_out_PointerTons1__getSystemNotificationsResponse(struct soap *soap, const char *tag, int id, struct ns1__getSystemNotificationsResponse *const*a, const char *type) argument
10309 soap_get_PointerTons1__getSystemNotificationsResponse(struct soap *soap, struct ns1__getSystemNotificationsResponse **p, const char *tag, const char *type) argument
10317 soap_in_PointerTons1__getSystemNotificationsResponse(struct soap *soap, const char *tag, struct ns1__getSystemNotificationsResponse **a, const char *type) argument
10338 soap_serialize_PointerTons1__getNotificationsResponse(struct soap *soap, struct ns1__getNotificationsResponse *const*a) argument
10344 soap_put_PointerTons1__getNotificationsResponse(struct soap *soap, struct ns1__getNotificationsResponse *const*a, const char *tag, const char *type) argument
10352 soap_out_PointerTons1__getNotificationsResponse(struct soap *soap, const char *tag, int id, struct ns1__getNotificationsResponse *const*a, const char *type) argument
10360 soap_get_PointerTons1__getNotificationsResponse(struct soap *soap, struct ns1__getNotificationsResponse **p, const char *tag, const char *type) argument
10368 soap_in_PointerTons1__getNotificationsResponse(struct soap *soap, const char *tag, struct ns1__getNotificationsResponse **a, const char *type) argument
10389 soap_serialize_PointerTons1__getNetworkResponse(struct soap *soap, struct ns1__getNetworkResponse *const*a) argument
10395 soap_put_PointerTons1__getNetworkResponse(struct soap *soap, struct ns1__getNetworkResponse *const*a, const char *tag, const char *type) argument
10403 soap_out_PointerTons1__getNetworkResponse(struct soap *soap, const char *tag, int id, struct ns1__getNetworkResponse *const*a, const char *type) argument
10411 soap_get_PointerTons1__getNetworkResponse(struct soap *soap, struct ns1__getNetworkResponse **p, const char *tag, const char *type) argument
10419 soap_in_PointerTons1__getNetworkResponse(struct soap *soap, const char *tag, struct ns1__getNetworkResponse **a, const char *type) argument
10440 soap_serialize_PointerTons1__getNetworksResponse(struct soap *soap, struct ns1__getNetworksResponse *const*a) argument
10446 soap_put_PointerTons1__getNetworksResponse(struct soap *soap, struct ns1__getNetworksResponse *const*a, const char *tag, const char *type) argument
10454 soap_out_PointerTons1__getNetworksResponse(struct soap *soap, const char *tag, int id, struct ns1__getNetworksResponse *const*a, const char *type) argument
10462 soap_get_PointerTons1__getNetworksResponse(struct soap *soap, struct ns1__getNetworksResponse **p, const char *tag, const char *type) argument
10470 soap_in_PointerTons1__getNetworksResponse(struct soap *soap, const char *tag, struct ns1__getNetworksResponse **a, const char *type) argument
10491 soap_serialize_PointerTons1__leaveNetworkResponse(struct soap *soap, struct ns1__leaveNetworkResponse *const*a) argument
10497 soap_put_PointerTons1__leaveNetworkResponse(struct soap *soap, struct ns1__leaveNetworkResponse *const*a, const char *tag, const char *type) argument
10505 soap_out_PointerTons1__leaveNetworkResponse(struct soap *soap, const char *tag, int id, struct ns1__leaveNetworkResponse *const*a, const char *type) argument
10513 soap_get_PointerTons1__leaveNetworkResponse(struct soap *soap, struct ns1__leaveNetworkResponse **p, const char *tag, const char *type) argument
10521 soap_in_PointerTons1__leaveNetworkResponse(struct soap *soap, const char *tag, struct ns1__leaveNetworkResponse **a, const char *type) argument
10542 soap_serialize_PointerTons1__deleteNetworkMemberResponse(struct soap *soap, struct ns1__deleteNetworkMemberResponse *const*a) argument
10548 soap_put_PointerTons1__deleteNetworkMemberResponse(struct soap *soap, struct ns1__deleteNetworkMemberResponse *const*a, const char *tag, const char *type) argument
10556 soap_out_PointerTons1__deleteNetworkMemberResponse(struct soap *soap, const char *tag, int id, struct ns1__deleteNetworkMemberResponse *const*a, const char *type) argument
10564 soap_get_PointerTons1__deleteNetworkMemberResponse(struct soap *soap, struct ns1__deleteNetworkMemberResponse **p, const char *tag, const char *type) argument
10572 soap_in_PointerTons1__deleteNetworkMemberResponse(struct soap *soap, const char *tag, struct ns1__deleteNetworkMemberResponse **a, const char *type) argument
10593 soap_serialize_PointerTons1__declineNetworkInviteResponse(struct soap *soap, struct ns1__declineNetworkInviteResponse *const*a) argument
10599 soap_put_PointerTons1__declineNetworkInviteResponse(struct soap *soap, struct ns1__declineNetworkInviteResponse *const*a, const char *tag, const char *type) argument
10607 soap_out_PointerTons1__declineNetworkInviteResponse(struct soap *soap, const char *tag, int id, struct ns1__declineNetworkInviteResponse *const*a, const char *type) argument
10615 soap_get_PointerTons1__declineNetworkInviteResponse(struct soap *soap, struct ns1__declineNetworkInviteResponse **p, const char *tag, const char *type) argument
10623 soap_in_PointerTons1__declineNetworkInviteResponse(struct soap *soap, const char *tag, struct ns1__declineNetworkInviteResponse **a, const char *type) argument
10644 soap_serialize_PointerTons1__acceptNetworkInviteResponse(struct soap *soap, struct ns1__acceptNetworkInviteResponse *const*a) argument
10650 soap_put_PointerTons1__acceptNetworkInviteResponse(struct soap *soap, struct ns1__acceptNetworkInviteResponse *const*a, const char *tag, const char *type) argument
10658 soap_out_PointerTons1__acceptNetworkInviteResponse(struct soap *soap, const char *tag, int id, struct ns1__acceptNetworkInviteResponse *const*a, const char *type) argument
10666 soap_get_PointerTons1__acceptNetworkInviteResponse(struct soap *soap, struct ns1__acceptNetworkInviteResponse **p, const char *tag, const char *type) argument
10674 soap_in_PointerTons1__acceptNetworkInviteResponse(struct soap *soap, const char *tag, struct ns1__acceptNetworkInviteResponse **a, const char *type) argument
10695 soap_serialize_PointerTons1__inviteNetworkMemberByUserResponse(struct soap *soap, struct ns1__inviteNetworkMemberByUserResponse *const*a) argument
10701 soap_put_PointerTons1__inviteNetworkMemberByUserResponse(struct soap *soap, struct ns1__inviteNetworkMemberByUserResponse *const*a, const char *tag, const char *type) argument
10709 soap_out_PointerTons1__inviteNetworkMemberByUserResponse(struct soap *soap, const char *tag, int id, struct ns1__inviteNetworkMemberByUserResponse *const*a, const char *type) argument
10717 soap_get_PointerTons1__inviteNetworkMemberByUserResponse(struct soap *soap, struct ns1__inviteNetworkMemberByUserResponse **p, const char *tag, const char *type) argument
10725 soap_in_PointerTons1__inviteNetworkMemberByUserResponse(struct soap *soap, const char *tag, struct ns1__inviteNetworkMemberByUserResponse **a, const char *type) argument
10746 soap_serialize_PointerTons2__User(struct soap *soap, struct ns2__User *const*a) argument
10752 soap_put_PointerTons2__User(struct soap *soap, struct ns2__User *const*a, const char *tag, const char *type) argument
10760 soap_out_PointerTons2__User(struct soap *soap, const char *tag, int id, struct ns2__User *const*a, const char *type) argument
10768 soap_get_PointerTons2__User(struct soap *soap, struct ns2__User **p, const char *tag, const char *type) argument
10776 soap_in_PointerTons2__User(struct soap *soap, const char *tag, struct ns2__User **a, const char *type) argument
10797 soap_serialize_PointerTons1__inviteNetworkMemberByEmailResponse(struct soap *soap, struct ns1__inviteNetworkMemberByEmailResponse *const*a) argument
10803 soap_put_PointerTons1__inviteNetworkMemberByEmailResponse(struct soap *soap, struct ns1__inviteNetworkMemberByEmailResponse *const*a, const char *tag, const char *type) argument
10811 soap_out_PointerTons1__inviteNetworkMemberByEmailResponse(struct soap *soap, const char *tag, int id, struct ns1__inviteNetworkMemberByEmailResponse *const*a, const char *type) argument
10819 soap_get_PointerTons1__inviteNetworkMemberByEmailResponse(struct soap *soap, struct ns1__inviteNetworkMemberByEmailResponse **p, const char *tag, const char *type) argument
10827 soap_in_PointerTons1__inviteNetworkMemberByEmailResponse(struct soap *soap, const char *tag, struct ns1__inviteNetworkMemberByEmailResponse **a, const char *type) argument
10848 soap_serialize_PointerTons1__inviteNetworkMemberResponse(struct soap *soap, struct ns1__inviteNetworkMemberResponse *const*a) argument
10854 soap_put_PointerTons1__inviteNetworkMemberResponse(struct soap *soap, struct ns1__inviteNetworkMemberResponse *const*a, const char *tag, const char *type) argument
10862 soap_out_PointerTons1__inviteNetworkMemberResponse(struct soap *soap, const char *tag, int id, struct ns1__inviteNetworkMemberResponse *const*a, const char *type) argument
10870 soap_get_PointerTons1__inviteNetworkMemberResponse(struct soap *soap, struct ns1__inviteNetworkMemberResponse **p, const char *tag, const char *type) argument
10878 soap_in_PointerTons1__inviteNetworkMemberResponse(struct soap *soap, const char *tag, struct ns1__inviteNetworkMemberResponse **a, const char *type) argument
10899 soap_serialize_PointerTons2__Member(struct soap *soap, struct ns2__Member *const*a) argument
10905 soap_put_PointerTons2__Member(struct soap *soap, struct ns2__Member *const*a, const char *tag, const char *type) argument
10913 soap_out_PointerTons2__Member(struct soap *soap, const char *tag, int id, struct ns2__Member *const*a, const char *type) argument
10921 soap_get_PointerTons2__Member(struct soap *soap, struct ns2__Member **p, const char *tag, const char *type) argument
10929 soap_in_PointerTons2__Member(struct soap *soap, const char *tag, struct ns2__Member **a, const char *type) argument
10950 soap_serialize_PointerTons1__deleteNetworkResponse(struct soap *soap, struct ns1__deleteNetworkResponse *const*a) argument
10956 soap_put_PointerTons1__deleteNetworkResponse(struct soap *soap, struct ns1__deleteNetworkResponse *const*a, const char *tag, const char *type) argument
10964 soap_out_PointerTons1__deleteNetworkResponse(struct soap *soap, const char *tag, int id, struct ns1__deleteNetworkResponse *const*a, const char *type) argument
10972 soap_get_PointerTons1__deleteNetworkResponse(struct soap *soap, struct ns1__deleteNetworkResponse **p, const char *tag, const char *type) argument
10980 soap_in_PointerTons1__deleteNetworkResponse(struct soap *soap, const char *tag, struct ns1__deleteNetworkResponse **a, const char *type) argument
11001 soap_serialize_PointerTons1__addNetworkResponse(struct soap *soap, struct ns1__addNetworkResponse *const*a) argument
11007 soap_put_PointerTons1__addNetworkResponse(struct soap *soap, struct ns1__addNetworkResponse *const*a, const char *tag, const char *type) argument
11015 soap_out_PointerTons1__addNetworkResponse(struct soap *soap, const char *tag, int id, struct ns1__addNetworkResponse *const*a, const char *type) argument
11023 soap_get_PointerTons1__addNetworkResponse(struct soap *soap, struct ns1__addNetworkResponse **p, const char *tag, const char *type) argument
11031 soap_in_PointerTons1__addNetworkResponse(struct soap *soap, const char *tag, struct ns1__addNetworkResponse **a, const char *type) argument
11052 soap_serialize_PointerTons2__Network(struct soap *soap, struct ns2__Network *const*a) argument
11058 soap_put_PointerTons2__Network(struct soap *soap, struct ns2__Network *const*a, const char *tag, const char *type) argument
11066 soap_out_PointerTons2__Network(struct soap *soap, const char *tag, int id, struct ns2__Network *const*a, const char *type) argument
11074 soap_get_PointerTons2__Network(struct soap *soap, struct ns2__Network **p, const char *tag, const char *type) argument
11082 soap_in_PointerTons2__Network(struct soap *soap, const char *tag, struct ns2__Network **a, const char *type) argument
11103 soap_serialize_PointerTons1__lookupContactsResponse(struct soap *soap, struct ns1__lookupContactsResponse *const*a) argument
11109 soap_put_PointerTons1__lookupContactsResponse(struct soap *soap, struct ns1__lookupContactsResponse *const*a, const char *tag, const char *type) argument
11117 soap_out_PointerTons1__lookupContactsResponse(struct soap *soap, const char *tag, int id, struct ns1__lookupContactsResponse *const*a, const char *type) argument
11125 soap_get_PointerTons1__lookupContactsResponse(struct soap *soap, struct ns1__lookupContactsResponse **p, const char *tag, const char *type) argument
11133 soap_in_PointerTons1__lookupContactsResponse(struct soap *soap, const char *tag, struct ns1__lookupContactsResponse **a, const char *type) argument
11154 soap_serialize_PointerTons1__getContactResponse(struct soap *soap, struct ns1__getContactResponse *const*a) argument
11160 soap_put_PointerTons1__getContactResponse(struct soap *soap, struct ns1__getContactResponse *const*a, const char *tag, const char *type) argument
11168 soap_out_PointerTons1__getContactResponse(struct soap *soap, const char *tag, int id, struct ns1__getContactResponse *const*a, const char *type) argument
11176 soap_get_PointerTons1__getContactResponse(struct soap *soap, struct ns1__getContactResponse **p, const char *tag, const char *type) argument
11184 soap_in_PointerTons1__getContactResponse(struct soap *soap, const char *tag, struct ns1__getContactResponse **a, const char *type) argument
11205 soap_serialize_PointerTons1__updateContactResponse(struct soap *soap, struct ns1__updateContactResponse *const*a) argument
11211 soap_put_PointerTons1__updateContactResponse(struct soap *soap, struct ns1__updateContactResponse *const*a, const char *tag, const char *type) argument
11219 soap_out_PointerTons1__updateContactResponse(struct soap *soap, const char *tag, int id, struct ns1__updateContactResponse *const*a, const char *type) argument
11227 soap_get_PointerTons1__updateContactResponse(struct soap *soap, struct ns1__updateContactResponse **p, const char *tag, const char *type) argument
11235 soap_in_PointerTons1__updateContactResponse(struct soap *soap, const char *tag, struct ns1__updateContactResponse **a, const char *type) argument
11256 soap_serialize_PointerTons2__Contact(struct soap *soap, struct ns2__Contact *const*a) argument
11262 soap_put_PointerTons2__Contact(struct soap *soap, struct ns2__Contact *const*a, const char *tag, const char *type) argument
11270 soap_out_PointerTons2__Contact(struct soap *soap, const char *tag, int id, struct ns2__Contact *const*a, const char *type) argument
11278 soap_get_PointerTons2__Contact(struct soap *soap, struct ns2__Contact **p, const char *tag, const char *type) argument
11286 soap_in_PointerTons2__Contact(struct soap *soap, const char *tag, struct ns2__Contact **a, const char *type) argument
11307 soap_serialize_PointerTons1__changePasswordResponse(struct soap *soap, struct ns1__changePasswordResponse *const*a) argument
11313 soap_put_PointerTons1__changePasswordResponse(struct soap *soap, struct ns1__changePasswordResponse *const*a, const char *tag, const char *type) argument
11321 soap_out_PointerTons1__changePasswordResponse(struct soap *soap, const char *tag, int id, struct ns1__changePasswordResponse *const*a, const char *type) argument
11329 soap_get_PointerTons1__changePasswordResponse(struct soap *soap, struct ns1__changePasswordResponse **p, const char *tag, const char *type) argument
11337 soap_in_PointerTons1__changePasswordResponse(struct soap *soap, const char *tag, struct ns1__changePasswordResponse **a, const char *type) argument
11358 soap_serialize_PointerTons1__deleteUserResponse(struct soap *soap, struct ns1__deleteUserResponse *const*a) argument
11364 soap_put_PointerTons1__deleteUserResponse(struct soap *soap, struct ns1__deleteUserResponse *const*a, const char *tag, const char *type) argument
11372 soap_out_PointerTons1__deleteUserResponse(struct soap *soap, const char *tag, int id, struct ns1__deleteUserResponse *const*a, const char *type) argument
11380 soap_get_PointerTons1__deleteUserResponse(struct soap *soap, struct ns1__deleteUserResponse **p, const char *tag, const char *type) argument
11388 soap_in_PointerTons1__deleteUserResponse(struct soap *soap, const char *tag, struct ns1__deleteUserResponse **a, const char *type) argument
11409 soap_serialize_PointerTons1__vrfyLoginResponse(struct soap *soap, struct ns1__vrfyLoginResponse *const*a) argument
11415 soap_put_PointerTons1__vrfyLoginResponse(struct soap *soap, struct ns1__vrfyLoginResponse *const*a, const char *tag, const char *type) argument
11423 soap_out_PointerTons1__vrfyLoginResponse(struct soap *soap, const char *tag, int id, struct ns1__vrfyLoginResponse *const*a, const char *type) argument
11431 soap_get_PointerTons1__vrfyLoginResponse(struct soap *soap, struct ns1__vrfyLoginResponse **p, const char *tag, const char *type) argument
11439 soap_in_PointerTons1__vrfyLoginResponse(struct soap *soap, const char *tag, struct ns1__vrfyLoginResponse **a, const char *type) argument
11460 soap_serialize_PointerToxsd__base64Binary(struct soap *soap, struct xsd__base64Binary *const*a) argument
11466 soap_put_PointerToxsd__base64Binary(struct soap *soap, struct xsd__base64Binary *const*a, const char *tag, const char *type) argument
11474 soap_out_PointerToxsd__base64Binary(struct soap *soap, const char *tag, int id, struct xsd__base64Binary *const*a, const char *type) argument
11482 soap_get_PointerToxsd__base64Binary(struct soap *soap, struct xsd__base64Binary **p, const char *tag, const char *type) argument
11490 soap_in_PointerToxsd__base64Binary(struct soap *soap, const char *tag, struct xsd__base64Binary **a, const char *type) argument
11511 soap_serialize_PointerTotime(struct soap *soap, time_t *const*a) argument
11516 soap_put_PointerTotime(struct soap *soap, time_t *const*a, const char *tag, const char *type) argument
11524 soap_out_PointerTotime(struct soap *soap, const char *tag, int id, time_t *const*a, const char *type) argument
11532 soap_get_PointerTotime(struct soap *soap, time_t **p, const char *tag, const char *type) argument
11540 soap_in_PointerTotime(struct soap *soap, const char *tag, time_t **a, const char *type) argument
11561 soap_serialize_PointerToArrayOf_USCORExsd_USCOREanyType(struct soap *soap, struct ArrayOf_USCORExsd_USCOREanyType *const*a) argument
11567 soap_put_PointerToArrayOf_USCORExsd_USCOREanyType(struct soap *soap, struct ArrayOf_USCORExsd_USCOREanyType *const*a, const char *tag, const char *type) argument
11575 soap_out_PointerToArrayOf_USCORExsd_USCOREanyType(struct soap *soap, const char *tag, int id, struct ArrayOf_USCORExsd_USCOREanyType *const*a, const char *type) argument
11583 soap_get_PointerToArrayOf_USCORExsd_USCOREanyType(struct soap *soap, struct ArrayOf_USCORExsd_USCOREanyType **p, const char *tag, const char *type) argument
11591 soap_in_PointerToArrayOf_USCORExsd_USCOREanyType(struct soap *soap, const char *tag, struct ArrayOf_USCORExsd_USCOREanyType **a, const char *type) argument
11612 soap_serialize_PointerToLONG64(struct soap *soap, LONG64 *const*a) argument
11617 soap_put_PointerToLONG64(struct soap *soap, LONG64 *const*a, const char *tag, const char *type) argument
11625 soap_out_PointerToLONG64(struct soap *soap, const char *tag, int id, LONG64 *const*a, const char *type) argument
11633 soap_get_PointerToLONG64(struct soap *soap, LONG64 **p, const char *tag, const char *type) argument
11641 soap_in_PointerToLONG64(struct soap *soap, const char *tag, LONG64 **a, const char *type) argument
11662 soap_serialize_PointerToint(struct soap *soap, int *const*a) argument
11667 soap_put_PointerToint(struct soap *soap, int *const*a, const char *tag, const char *type) argument
11675 soap_out_PointerToint(struct soap *soap, const char *tag, int id, int *const*a, const char *type) argument
11683 soap_get_PointerToint(struct soap *soap, int **p, const char *tag, const char *type) argument
11691 soap_in_PointerToint(struct soap *soap, const char *tag, int **a, const char *type) argument
11712 soap_serialize_PointerTounsignedByte(struct soap *soap, unsigned char *const*a) argument
11717 soap_put_PointerTounsignedByte(struct soap *soap, unsigned char *const*a, const char *tag, const char *type) argument
11725 soap_out_PointerTounsignedByte(struct soap *soap, const char *tag, int id, unsigned char *const*a, const char *type) argument
11733 soap_get_PointerTounsignedByte(struct soap *soap, unsigned char **p, const char *tag, const char *type) argument
11741 soap_in_PointerTounsignedByte(struct soap *soap, const char *tag, unsigned char **a, const char *type) argument
11762 soap_default__QName(struct soap *soap, char **a) argument
11766 soap_serialize__QName(struct soap *soap, char *const*a) argument
11770 soap_put__QName(struct soap *soap, char *const*a, const char *tag, const char *type) argument
11778 soap_out__QName(struct soap *soap, const char *tag, int id, char *const*a, const char *type) argument
11783 soap_get__QName(struct soap *soap, char **p, const char *tag, const char *type) argument
11791 soap_in__QName(struct soap *soap, const char *tag, char **a, const char *type) argument
11796 soap_default_string(struct soap *soap, char **a) argument
11805 soap_serialize_string(struct soap *soap, char *const*a) argument
11810 soap_put_string(struct soap *soap, char *const*a, const char *tag, const char *type) argument
11818 soap_out_string(struct soap *soap, const char *tag, int id, char *const*a, const char *type) argument
11823 soap_get_string(struct soap *soap, char **p, const char *tag, const char *type) argument
11831 soap_in_string(struct soap *soap, const char *tag, char **a, const char *type) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/
H A DsoapC.c19 SOAP_FMAC3 void SOAP_FMAC4 soap_serializeheader(struct soap *soap) argument
21 if (soap->header)
22 soap_serialize_SOAP_ENV__Header(soap, soap->header);
25 SOAP_FMAC3 int SOAP_FMAC4 soap_putheader(struct soap *soap) argument
27 if (soap->header)
28 { soap->part = SOAP_IN_HEADER;
29 if (soap_out_SOAP_ENV__Header(soap, "SOA
36 soap_getheader(struct soap *soap) argument
44 soap_header(struct soap *soap) argument
52 soap_fault(struct soap *soap) argument
70 soap_serializefault(struct soap *soap) argument
76 soap_putfault(struct soap *soap) argument
83 soap_getfault(struct soap *soap) argument
88 soap_faultcode(struct soap *soap) argument
96 soap_faultsubcode(struct soap *soap) argument
109 soap_faultstring(struct soap *soap) argument
117 soap_faultdetail(struct soap *soap) argument
137 soap_getindependent(struct soap *soap) argument
151 soap_getelement(struct soap *soap, int *type) argument
798 soap_ignore_element(struct soap *soap) argument
829 soap_putindependent(struct soap *soap) argument
844 soap_putelement(struct soap *soap, const void *ptr, const char *tag, int id, int type) argument
1100 soap_markelement(struct soap *soap, const void *ptr, int type) argument
1460 soap_default_byte(struct soap *soap, char *a) argument
1469 soap_put_byte(struct soap *soap, const char *a, const char *tag, const char *type) argument
1477 soap_out_byte(struct soap *soap, const char *tag, int id, const char *a, const char *type) argument
1482 soap_get_byte(struct soap *soap, char *p, const char *tag, const char *type) argument
1490 soap_in_byte(struct soap *soap, const char *tag, char *a, const char *type) argument
1495 soap_default_int(struct soap *soap, int *a) argument
1504 soap_put_int(struct soap *soap, const int *a, const char *tag, const char *type) argument
1512 soap_out_int(struct soap *soap, const char *tag, int id, const int *a, const char *type) argument
1517 soap_get_int(struct soap *soap, int *p, const char *tag, const char *type) argument
1525 soap_in_int(struct soap *soap, const char *tag, int *a, const char *type) argument
1530 soap_default_LONG64(struct soap *soap, LONG64 *a) argument
1539 soap_put_LONG64(struct soap *soap, const LONG64 *a, const char *tag, const char *type) argument
1547 soap_out_LONG64(struct soap *soap, const char *tag, int id, const LONG64 *a, const char *type) argument
1552 soap_get_LONG64(struct soap *soap, LONG64 *p, const char *tag, const char *type) argument
1560 soap_in_LONG64(struct soap *soap, const char *tag, LONG64 *a, const char *type) argument
1565 soap_default_unsignedByte(struct soap *soap, unsigned char *a) argument
1574 soap_put_unsignedByte(struct soap *soap, const unsigned char *a, const char *tag, const char *type) argument
1582 soap_out_unsignedByte(struct soap *soap, const char *tag, int id, const unsigned char *a, const char *type) argument
1587 soap_get_unsignedByte(struct soap *soap, unsigned char *p, const char *tag, const char *type) argument
1595 soap_in_unsignedByte(struct soap *soap, const char *tag, unsigned char *a, const char *type) argument
1600 soap_default_unsignedInt(struct soap *soap, unsigned int *a) argument
1609 soap_put_unsignedInt(struct soap *soap, const unsigned int *a, const char *tag, const char *type) argument
1617 soap_out_unsignedInt(struct soap *soap, const char *tag, int id, const unsigned int *a, const char *type) argument
1622 soap_get_unsignedInt(struct soap *soap, unsigned int *p, const char *tag, const char *type) argument
1630 soap_in_unsignedInt(struct soap *soap, const char *tag, unsigned int *a, const char *type) argument
1635 soap_default_time(struct soap *soap, time_t *a) argument
1644 soap_put_time(struct soap *soap, const time_t *a, const char *tag, const char *type) argument
1652 soap_out_time(struct soap *soap, const char *tag, int id, const time_t *a, const char *type) argument
1657 soap_get_time(struct soap *soap, time_t *p, const char *tag, const char *type) argument
1665 soap_in_time(struct soap *soap, const char *tag, time_t *a, const char *type) argument
1672 soap_default_SOAP_ENV__Fault(struct soap *soap, struct SOAP_ENV__Fault *a) argument
1686 soap_serialize_SOAP_ENV__Fault(struct soap *soap, const struct SOAP_ENV__Fault *a) argument
1700 soap_put_SOAP_ENV__Fault(struct soap *soap, const struct SOAP_ENV__Fault *a, const char *tag, const char *type) argument
1708 soap_out_SOAP_ENV__Fault(struct soap *soap, const char *tag, int id, const struct SOAP_ENV__Fault *a, const char *type) argument
1734 soap_get_SOAP_ENV__Fault(struct soap *soap, struct SOAP_ENV__Fault *p, const char *tag, const char *type) argument
1742 soap_in_SOAP_ENV__Fault(struct soap *soap, const char *tag, struct SOAP_ENV__Fault *a, const char *type) argument
1830 soap_default_SOAP_ENV__Reason(struct soap *soap, struct SOAP_ENV__Reason *a) argument
1836 soap_serialize_SOAP_ENV__Reason(struct soap *soap, const struct SOAP_ENV__Reason *a) argument
1842 soap_put_SOAP_ENV__Reason(struct soap *soap, const struct SOAP_ENV__Reason *a, const char *tag, const char *type) argument
1850 soap_out_SOAP_ENV__Reason(struct soap *soap, const char *tag, int id, const struct SOAP_ENV__Reason *a, const char *type) argument
1861 soap_get_SOAP_ENV__Reason(struct soap *soap, struct SOAP_ENV__Reason *p, const char *tag, const char *type) argument
1869 soap_in_SOAP_ENV__Reason(struct soap *soap, const char *tag, struct SOAP_ENV__Reason *a, const char *type) argument
1909 soap_default_SOAP_ENV__Detail(struct soap *soap, struct SOAP_ENV__Detail *a) argument
1917 soap_serialize_SOAP_ENV__Detail(struct soap *soap, const struct SOAP_ENV__Detail *a) argument
1923 soap_put_SOAP_ENV__Detail(struct soap *soap, const struct SOAP_ENV__Detail *a, const char *tag, const char *type) argument
1931 soap_out_SOAP_ENV__Detail(struct soap *soap, const char *tag, int id, const struct SOAP_ENV__Detail *a, const char *type) argument
1941 soap_get_SOAP_ENV__Detail(struct soap *soap, struct SOAP_ENV__Detail *p, const char *tag, const char *type) argument
1949 soap_in_SOAP_ENV__Detail(struct soap *soap, const char *tag, struct SOAP_ENV__Detail *a, const char *type) argument
1995 soap_default_SOAP_ENV__Code(struct soap *soap, struct SOAP_ENV__Code *a) argument
2002 soap_serialize_SOAP_ENV__Code(struct soap *soap, const struct SOAP_ENV__Code *a) argument
2009 soap_put_SOAP_ENV__Code(struct soap *soap, const struct SOAP_ENV__Code *a, const char *tag, const char *type) argument
2017 soap_out_SOAP_ENV__Code(struct soap *soap, const char *tag, int id, const struct SOAP_ENV__Code *a, const char *type) argument
2029 soap_get_SOAP_ENV__Code(struct soap *soap, struct SOAP_ENV__Code *p, const char *tag, const char *type) argument
2037 soap_in_SOAP_ENV__Code(struct soap *soap, const char *tag, struct SOAP_ENV__Code *a, const char *type) argument
2083 soap_default_SOAP_ENV__Header(struct soap *soap, struct SOAP_ENV__Header *a) argument
2088 soap_serialize_SOAP_ENV__Header(struct soap *soap, const struct SOAP_ENV__Header *a) argument
2093 soap_put_SOAP_ENV__Header(struct soap *soap, const struct SOAP_ENV__Header *a, const char *tag, const char *type) argument
2101 soap_out_SOAP_ENV__Header(struct soap *soap, const char *tag, int id, const struct SOAP_ENV__Header *a, const char *type) argument
2108 soap_get_SOAP_ENV__Header(struct soap *soap, struct SOAP_ENV__Header *p, const char *tag, const char *type) argument
2116 soap_in_SOAP_ENV__Header(struct soap *soap, const char *tag, struct SOAP_ENV__Header *a, const char *type) argument
2148 soap_default_ns1__getSystemNotifications(struct soap *soap, struct ns1__getSystemNotifications *a) argument
2153 soap_serialize_ns1__getSystemNotifications(struct soap *soap, const struct ns1__getSystemNotifications *a) argument
2158 soap_put_ns1__getSystemNotifications(struct soap *soap, const struct ns1__getSystemNotifications *a, const char *tag, const char *type) argument
2166 soap_out_ns1__getSystemNotifications(struct soap *soap, const char *tag, int id, const struct ns1__getSystemNotifications *a, const char *type) argument
2173 soap_get_ns1__getSystemNotifications(struct soap *soap, struct ns1__getSystemNotifications *p, const char *tag, const char *type) argument
2181 soap_in_ns1__getSystemNotifications(struct soap *soap, const char *tag, struct ns1__getSystemNotifications *a, const char *type) argument
2211 soap_default_ns1__getSystemNotificationsResponse(struct soap *soap, struct ns1__getSystemNotificationsResponse *a) argument
2217 soap_serialize_ns1__getSystemNotificationsResponse(struct soap *soap, const struct ns1__getSystemNotificationsResponse *a) argument
2223 soap_put_ns1__getSystemNotificationsResponse(struct soap *soap, const struct ns1__getSystemNotificationsResponse *a, const char *tag, const char *type) argument
2231 soap_out_ns1__getSystemNotificationsResponse(struct soap *soap, const char *tag, int id, const struct ns1__getSystemNotificationsResponse *a, const char *type) argument
2240 soap_get_ns1__getSystemNotificationsResponse(struct soap *soap, struct ns1__getSystemNotificationsResponse *p, const char *tag, const char *type) argument
2248 soap_in_ns1__getSystemNotificationsResponse(struct soap *soap, const char *tag, struct ns1__getSystemNotificationsResponse *a, const char *type) argument
2284 soap_default_ns1__getNotifications(struct soap *soap, struct ns1__getNotifications *a) argument
2290 soap_serialize_ns1__getNotifications(struct soap *soap, const struct ns1__getNotifications *a) argument
2296 soap_put_ns1__getNotifications(struct soap *soap, const struct ns1__getNotifications *a, const char *tag, const char *type) argument
2304 soap_out_ns1__getNotifications(struct soap *soap, const char *tag, int id, const struct ns1__getNotifications *a, const char *type) argument
2313 soap_get_ns1__getNotifications(struct soap *soap, struct ns1__getNotifications *p, const char *tag, const char *type) argument
2321 soap_in_ns1__getNotifications(struct soap *soap, const char *tag, struct ns1__getNotifications *a, const char *type) argument
2357 soap_default_ns1__getNotificationsResponse(struct soap *soap, struct ns1__getNotificationsResponse *a) argument
2363 soap_serialize_ns1__getNotificationsResponse(struct soap *soap, const struct ns1__getNotificationsResponse *a) argument
2369 soap_put_ns1__getNotificationsResponse(struct soap *soap, const struct ns1__getNotificationsResponse *a, const char *tag, const char *type) argument
2377 soap_out_ns1__getNotificationsResponse(struct soap *soap, const char *tag, int id, const struct ns1__getNotificationsResponse *a, const char *type) argument
2386 soap_get_ns1__getNotificationsResponse(struct soap *soap, struct ns1__getNotificationsResponse *p, const char *tag, const char *type) argument
2394 soap_in_ns1__getNotificationsResponse(struct soap *soap, const char *tag, struct ns1__getNotificationsResponse *a, const char *type) argument
2430 soap_default_ns1__getNetwork(struct soap *soap, struct ns1__getNetwork *a) argument
2436 soap_serialize_ns1__getNetwork(struct soap *soap, const struct ns1__getNetwork *a) argument
2442 soap_put_ns1__getNetwork(struct soap *soap, const struct ns1__getNetwork *a, const char *tag, const char *type) argument
2450 soap_out_ns1__getNetwork(struct soap *soap, const char *tag, int id, const struct ns1__getNetwork *a, const char *type) argument
2459 soap_get_ns1__getNetwork(struct soap *soap, struct ns1__getNetwork *p, const char *tag, const char *type) argument
2467 soap_in_ns1__getNetwork(struct soap *soap, const char *tag, struct ns1__getNetwork *a, const char *type) argument
2507 soap_default_ns1__getNetworkResponse(struct soap *soap, struct ns1__getNetworkResponse *a) argument
2513 soap_serialize_ns1__getNetworkResponse(struct soap *soap, const struct ns1__getNetworkResponse *a) argument
2519 soap_put_ns1__getNetworkResponse(struct soap *soap, const struct ns1__getNetworkResponse *a, const char *tag, const char *type) argument
2527 soap_out_ns1__getNetworkResponse(struct soap *soap, const char *tag, int id, const struct ns1__getNetworkResponse *a, const char *type) argument
2536 soap_get_ns1__getNetworkResponse(struct soap *soap, struct ns1__getNetworkResponse *p, const char *tag, const char *type) argument
2544 soap_in_ns1__getNetworkResponse(struct soap *soap, const char *tag, struct ns1__getNetworkResponse *a, const char *type) argument
2580 soap_default_ns1__getNetworks(struct soap *soap, struct ns1__getNetworks *a) argument
2586 soap_serialize_ns1__getNetworks(struct soap *soap, const struct ns1__getNetworks *a) argument
2592 soap_put_ns1__getNetworks(struct soap *soap, const struct ns1__getNetworks *a, const char *tag, const char *type) argument
2600 soap_out_ns1__getNetworks(struct soap *soap, const char *tag, int id, const struct ns1__getNetworks *a, const char *type) argument
2609 soap_get_ns1__getNetworks(struct soap *soap, struct ns1__getNetworks *p, const char *tag, const char *type) argument
2617 soap_in_ns1__getNetworks(struct soap *soap, const char *tag, struct ns1__getNetworks *a, const char *type) argument
2653 soap_default_ns1__getNetworksResponse(struct soap *soap, struct ns1__getNetworksResponse *a) argument
2659 soap_serialize_ns1__getNetworksResponse(struct soap *soap, const struct ns1__getNetworksResponse *a) argument
2665 soap_put_ns1__getNetworksResponse(struct soap *soap, const struct ns1__getNetworksResponse *a, const char *tag, const char *type) argument
2673 soap_out_ns1__getNetworksResponse(struct soap *soap, const char *tag, int id, const struct ns1__getNetworksResponse *a, const char *type) argument
2682 soap_get_ns1__getNetworksResponse(struct soap *soap, struct ns1__getNetworksResponse *p, const char *tag, const char *type) argument
2690 soap_in_ns1__getNetworksResponse(struct soap *soap, const char *tag, struct ns1__getNetworksResponse *a, const char *type) argument
2726 soap_default_ns1__leaveNetwork(struct soap *soap, struct ns1__leaveNetwork *a) argument
2733 soap_serialize_ns1__leaveNetwork(struct soap *soap, const struct ns1__leaveNetwork *a) argument
2740 soap_put_ns1__leaveNetwork(struct soap *soap, const struct ns1__leaveNetwork *a, const char *tag, const char *type) argument
2748 soap_out_ns1__leaveNetwork(struct soap *soap, const char *tag, int id, const struct ns1__leaveNetwork *a, const char *type) argument
2759 soap_get_ns1__leaveNetwork(struct soap *soap, struct ns1__leaveNetwork *p, const char *tag, const char *type) argument
2767 soap_in_ns1__leaveNetwork(struct soap *soap, const char *tag, struct ns1__leaveNetwork *a, const char *type) argument
2813 soap_default_ns1__leaveNetworkResponse(struct soap *soap, struct ns1__leaveNetworkResponse *a) argument
2818 soap_serialize_ns1__leaveNetworkResponse(struct soap *soap, const struct ns1__leaveNetworkResponse *a) argument
2823 soap_put_ns1__leaveNetworkResponse(struct soap *soap, const struct ns1__leaveNetworkResponse *a, const char *tag, const char *type) argument
2831 soap_out_ns1__leaveNetworkResponse(struct soap *soap, const char *tag, int id, const struct ns1__leaveNetworkResponse *a, const char *type) argument
2838 soap_get_ns1__leaveNetworkResponse(struct soap *soap, struct ns1__leaveNetworkResponse *p, const char *tag, const char *type) argument
2846 soap_in_ns1__leaveNetworkResponse(struct soap *soap, const char *tag, struct ns1__leaveNetworkResponse *a, const char *type) argument
2876 soap_default_ns1__deleteNetworkMember(struct soap *soap, struct ns1__deleteNetworkMember *a) argument
2883 soap_serialize_ns1__deleteNetworkMember(struct soap *soap, const struct ns1__deleteNetworkMember *a) argument
2890 soap_put_ns1__deleteNetworkMember(struct soap *soap, const struct ns1__deleteNetworkMember *a, const char *tag, const char *type) argument
2898 soap_out_ns1__deleteNetworkMember(struct soap *soap, const char *tag, int id, const struct ns1__deleteNetworkMember *a, const char *type) argument
2909 soap_get_ns1__deleteNetworkMember(struct soap *soap, struct ns1__deleteNetworkMember *p, const char *tag, const char *type) argument
2917 soap_in_ns1__deleteNetworkMember(struct soap *soap, const char *tag, struct ns1__deleteNetworkMember *a, const char *type) argument
2963 soap_default_ns1__deleteNetworkMemberResponse(struct soap *soap, struct ns1__deleteNetworkMemberResponse *a) argument
2968 soap_serialize_ns1__deleteNetworkMemberResponse(struct soap *soap, const struct ns1__deleteNetworkMemberResponse *a) argument
2973 soap_put_ns1__deleteNetworkMemberResponse(struct soap *soap, const struct ns1__deleteNetworkMemberResponse *a, const char *tag, const char *type) argument
2981 soap_out_ns1__deleteNetworkMemberResponse(struct soap *soap, const char *tag, int id, const struct ns1__deleteNetworkMemberResponse *a, const char *type) argument
2988 soap_get_ns1__deleteNetworkMemberResponse(struct soap *soap, struct ns1__deleteNetworkMemberResponse *p, const char *tag, const char *type) argument
2996 soap_in_ns1__deleteNetworkMemberResponse(struct soap *soap, const char *tag, struct ns1__deleteNetworkMemberResponse *a, const char *type) argument
3026 soap_default_ns1__declineNetworkInvite(struct soap *soap, struct ns1__declineNetworkInvite *a) argument
3033 soap_serialize_ns1__declineNetworkInvite(struct soap *soap, const struct ns1__declineNetworkInvite *a) argument
3040 soap_put_ns1__declineNetworkInvite(struct soap *soap, const struct ns1__declineNetworkInvite *a, const char *tag, const char *type) argument
3048 soap_out_ns1__declineNetworkInvite(struct soap *soap, const char *tag, int id, const struct ns1__declineNetworkInvite *a, const char *type) argument
3059 soap_get_ns1__declineNetworkInvite(struct soap *soap, struct ns1__declineNetworkInvite *p, const char *tag, const char *type) argument
3067 soap_in_ns1__declineNetworkInvite(struct soap *soap, const char *tag, struct ns1__declineNetworkInvite *a, const char *type) argument
3113 soap_default_ns1__declineNetworkInviteResponse(struct soap *soap, struct ns1__declineNetworkInviteResponse *a) argument
3118 soap_serialize_ns1__declineNetworkInviteResponse(struct soap *soap, const struct ns1__declineNetworkInviteResponse *a) argument
3123 soap_put_ns1__declineNetworkInviteResponse(struct soap *soap, const struct ns1__declineNetworkInviteResponse *a, const char *tag, const char *type) argument
3131 soap_out_ns1__declineNetworkInviteResponse(struct soap *soap, const char *tag, int id, const struct ns1__declineNetworkInviteResponse *a, const char *type) argument
3138 soap_get_ns1__declineNetworkInviteResponse(struct soap *soap, struct ns1__declineNetworkInviteResponse *p, const char *tag, const char *type) argument
3146 soap_in_ns1__declineNetworkInviteResponse(struct soap *soap, const char *tag, struct ns1__declineNetworkInviteResponse *a, const char *type) argument
3176 soap_default_ns1__acceptNetworkInvite(struct soap *soap, struct ns1__acceptNetworkInvite *a) argument
3183 soap_serialize_ns1__acceptNetworkInvite(struct soap *soap, const struct ns1__acceptNetworkInvite *a) argument
3190 soap_put_ns1__acceptNetworkInvite(struct soap *soap, const struct ns1__acceptNetworkInvite *a, const char *tag, const char *type) argument
3198 soap_out_ns1__acceptNetworkInvite(struct soap *soap, const char *tag, int id, const struct ns1__acceptNetworkInvite *a, const char *type) argument
3209 soap_get_ns1__acceptNetworkInvite(struct soap *soap, struct ns1__acceptNetworkInvite *p, const char *tag, const char *type) argument
3217 soap_in_ns1__acceptNetworkInvite(struct soap *soap, const char *tag, struct ns1__acceptNetworkInvite *a, const char *type) argument
3263 soap_default_ns1__acceptNetworkInviteResponse(struct soap *soap, struct ns1__acceptNetworkInviteResponse *a) argument
3268 soap_serialize_ns1__acceptNetworkInviteResponse(struct soap *soap, const struct ns1__acceptNetworkInviteResponse *a) argument
3273 soap_put_ns1__acceptNetworkInviteResponse(struct soap *soap, const struct ns1__acceptNetworkInviteResponse *a, const char *tag, const char *type) argument
3281 soap_out_ns1__acceptNetworkInviteResponse(struct soap *soap, const char *tag, int id, const struct ns1__acceptNetworkInviteResponse *a, const char *type) argument
3288 soap_get_ns1__acceptNetworkInviteResponse(struct soap *soap, struct ns1__acceptNetworkInviteResponse *p, const char *tag, const char *type) argument
3296 soap_in_ns1__acceptNetworkInviteResponse(struct soap *soap, const char *tag, struct ns1__acceptNetworkInviteResponse *a, const char *type) argument
3326 soap_default_ns1__inviteNetworkMemberByUser(struct soap *soap, struct ns1__inviteNetworkMemberByUser *a) argument
3334 soap_serialize_ns1__inviteNetworkMemberByUser(struct soap *soap, const struct ns1__inviteNetworkMemberByUser *a) argument
3342 soap_put_ns1__inviteNetworkMemberByUser(struct soap *soap, const struct ns1__inviteNetworkMemberByUser *a, const char *tag, const char *type) argument
3350 soap_out_ns1__inviteNetworkMemberByUser(struct soap *soap, const char *tag, int id, const struct ns1__inviteNetworkMemberByUser *a, const char *type) argument
3363 soap_get_ns1__inviteNetworkMemberByUser(struct soap *soap, struct ns1__inviteNetworkMemberByUser *p, const char *tag, const char *type) argument
3371 soap_in_ns1__inviteNetworkMemberByUser(struct soap *soap, const char *tag, struct ns1__inviteNetworkMemberByUser *a, const char *type) argument
3423 soap_default_ns1__inviteNetworkMemberByUserResponse(struct soap *soap, struct ns1__inviteNetworkMemberByUserResponse *a) argument
3429 soap_serialize_ns1__inviteNetworkMemberByUserResponse(struct soap *soap, const struct ns1__inviteNetworkMemberByUserResponse *a) argument
3435 soap_put_ns1__inviteNetworkMemberByUserResponse(struct soap *soap, const struct ns1__inviteNetworkMemberByUserResponse *a, const char *tag, const char *type) argument
3443 soap_out_ns1__inviteNetworkMemberByUserResponse(struct soap *soap, const char *tag, int id, const struct ns1__inviteNetworkMemberByUserResponse *a, const char *type) argument
3452 soap_get_ns1__inviteNetworkMemberByUserResponse(struct soap *soap, struct ns1__inviteNetworkMemberByUserResponse *p, const char *tag, const char *type) argument
3460 soap_in_ns1__inviteNetworkMemberByUserResponse(struct soap *soap, const char *tag, struct ns1__inviteNetworkMemberByUserResponse *a, const char *type) argument
3496 soap_default_ns1__inviteNetworkMemberByEmail(struct soap *soap, struct ns1__inviteNetworkMemberByEmail *a) argument
3503 soap_serialize_ns1__inviteNetworkMemberByEmail(struct soap *soap, const struct ns1__inviteNetworkMemberByEmail *a) argument
3510 soap_put_ns1__inviteNetworkMemberByEmail(struct soap *soap, const struct ns1__inviteNetworkMemberByEmail *a, const char *tag, const char *type) argument
3518 soap_out_ns1__inviteNetworkMemberByEmail(struct soap *soap, const char *tag, int id, const struct ns1__inviteNetworkMemberByEmail *a, const char *type) argument
3529 soap_get_ns1__inviteNetworkMemberByEmail(struct soap *soap, struct ns1__inviteNetworkMemberByEmail *p, const char *tag, const char *type) argument
3537 soap_in_ns1__inviteNetworkMemberByEmail(struct soap *soap, const char *tag, struct ns1__inviteNetworkMemberByEmail *a, const char *type) argument
3583 soap_default_ns1__inviteNetworkMemberByEmailResponse(struct soap *soap, struct ns1__inviteNetworkMemberByEmailResponse *a) argument
3589 soap_serialize_ns1__inviteNetworkMemberByEmailResponse(struct soap *soap, const struct ns1__inviteNetworkMemberByEmailResponse *a) argument
3595 soap_put_ns1__inviteNetworkMemberByEmailResponse(struct soap *soap, const struct ns1__inviteNetworkMemberByEmailResponse *a, const char *tag, const char *type) argument
3603 soap_out_ns1__inviteNetworkMemberByEmailResponse(struct soap *soap, const char *tag, int id, const struct ns1__inviteNetworkMemberByEmailResponse *a, const char *type) argument
3612 soap_get_ns1__inviteNetworkMemberByEmailResponse(struct soap *soap, struct ns1__inviteNetworkMemberByEmailResponse *p, const char *tag, const char *type) argument
3620 soap_in_ns1__inviteNetworkMemberByEmailResponse(struct soap *soap, const char *tag, struct ns1__inviteNetworkMemberByEmailResponse *a, const char *type) argument
3656 soap_default_ns1__inviteNetworkMember(struct soap *soap, struct ns1__inviteNetworkMember *a) argument
3663 soap_serialize_ns1__inviteNetworkMember(struct soap *soap, const struct ns1__inviteNetworkMember *a) argument
3670 soap_put_ns1__inviteNetworkMember(struct soap *soap, const struct ns1__inviteNetworkMember *a, const char *tag, const char *type) argument
3678 soap_out_ns1__inviteNetworkMember(struct soap *soap, const char *tag, int id, const struct ns1__inviteNetworkMember *a, const char *type) argument
3689 soap_get_ns1__inviteNetworkMember(struct soap *soap, struct ns1__inviteNetworkMember *p, const char *tag, const char *type) argument
3697 soap_in_ns1__inviteNetworkMember(struct soap *soap, const char *tag, struct ns1__inviteNetworkMember *a, const char *type) argument
3743 soap_default_ns1__inviteNetworkMemberResponse(struct soap *soap, struct ns1__inviteNetworkMemberResponse *a) argument
3749 soap_serialize_ns1__inviteNetworkMemberResponse(struct soap *soap, const struct ns1__inviteNetworkMemberResponse *a) argument
3755 soap_put_ns1__inviteNetworkMemberResponse(struct soap *soap, const struct ns1__inviteNetworkMemberResponse *a, const char *tag, const char *type) argument
3763 soap_out_ns1__inviteNetworkMemberResponse(struct soap *soap, const char *tag, int id, const struct ns1__inviteNetworkMemberResponse *a, const char *type) argument
3772 soap_get_ns1__inviteNetworkMemberResponse(struct soap *soap, struct ns1__inviteNetworkMemberResponse *p, const char *tag, const char *type) argument
3780 soap_in_ns1__inviteNetworkMemberResponse(struct soap *soap, const char *tag, struct ns1__inviteNetworkMemberResponse *a, const char *type) argument
3816 soap_default_ns1__deleteNetwork(struct soap *soap, struct ns1__deleteNetwork *a) argument
3822 soap_serialize_ns1__deleteNetwork(struct soap *soap, const struct ns1__deleteNetwork *a) argument
3828 soap_put_ns1__deleteNetwork(struct soap *soap, const struct ns1__deleteNetwork *a, const char *tag, const char *type) argument
3836 soap_out_ns1__deleteNetwork(struct soap *soap, const char *tag, int id, const struct ns1__deleteNetwork *a, const char *type) argument
3845 soap_get_ns1__deleteNetwork(struct soap *soap, struct ns1__deleteNetwork *p, const char *tag, const char *type) argument
3853 soap_in_ns1__deleteNetwork(struct soap *soap, const char *tag, struct ns1__deleteNetwork *a, const char *type) argument
3893 soap_default_ns1__deleteNetworkResponse(struct soap *soap, struct ns1__deleteNetworkResponse *a) argument
3898 soap_serialize_ns1__deleteNetworkResponse(struct soap *soap, const struct ns1__deleteNetworkResponse *a) argument
3903 soap_put_ns1__deleteNetworkResponse(struct soap *soap, const struct ns1__deleteNetworkResponse *a, const char *tag, const char *type) argument
3911 soap_out_ns1__deleteNetworkResponse(struct soap *soap, const char *tag, int id, const struct ns1__deleteNetworkResponse *a, const char *type) argument
3918 soap_get_ns1__deleteNetworkResponse(struct soap *soap, struct ns1__deleteNetworkResponse *p, const char *tag, const char *type) argument
3926 soap_in_ns1__deleteNetworkResponse(struct soap *soap, const char *tag, struct ns1__deleteNetworkResponse *a, const char *type) argument
3956 soap_default_ns1__addNetwork(struct soap *soap, struct ns1__addNetwork *a) argument
3964 soap_serialize_ns1__addNetwork(struct soap *soap, const struct ns1__addNetwork *a) argument
3972 soap_put_ns1__addNetwork(struct soap *soap, const struct ns1__addNetwork *a, const char *tag, const char *type) argument
3980 soap_out_ns1__addNetwork(struct soap *soap, const char *tag, int id, const struct ns1__addNetwork *a, const char *type) argument
3993 soap_get_ns1__addNetwork(struct soap *soap, struct ns1__addNetwork *p, const char *tag, const char *type) argument
4001 soap_in_ns1__addNetwork(struct soap *soap, const char *tag, struct ns1__addNetwork *a, const char *type) argument
4049 soap_default_ns1__addNetworkResponse(struct soap *soap, struct ns1__addNetworkResponse *a) argument
4055 soap_serialize_ns1__addNetworkResponse(struct soap *soap, const struct ns1__addNetworkResponse *a) argument
4061 soap_put_ns1__addNetworkResponse(struct soap *soap, const struct ns1__addNetworkResponse *a, const char *tag, const char *type) argument
4069 soap_out_ns1__addNetworkResponse(struct soap *soap, const char *tag, int id, const struct ns1__addNetworkResponse *a, const char *type) argument
4078 soap_get_ns1__addNetworkResponse(struct soap *soap, struct ns1__addNetworkResponse *p, const char *tag, const char *type) argument
4086 soap_in_ns1__addNetworkResponse(struct soap *soap, const char *tag, struct ns1__addNetworkResponse *a, const char *type) argument
4122 soap_default_ns1__lookupContacts(struct soap *soap, struct ns1__lookupContacts *a) argument
4128 soap_serialize_ns1__lookupContacts(struct soap *soap, const struct ns1__lookupContacts *a) argument
4134 soap_put_ns1__lookupContacts(struct soap *soap, const struct ns1__lookupContacts *a, const char *tag, const char *type) argument
4142 soap_out_ns1__lookupContacts(struct soap *soap, const char *tag, int id, const struct ns1__lookupContacts *a, const char *type) argument
4151 soap_get_ns1__lookupContacts(struct soap *soap, struct ns1__lookupContacts *p, const char *tag, const char *type) argument
4159 soap_in_ns1__lookupContacts(struct soap *soap, const char *tag, struct ns1__lookupContacts *a, const char *type) argument
4195 soap_default_ns1__lookupContactsResponse(struct soap *soap, struct ns1__lookupContactsResponse *a) argument
4201 soap_serialize_ns1__lookupContactsResponse(struct soap *soap, const struct ns1__lookupContactsResponse *a) argument
4207 soap_put_ns1__lookupContactsResponse(struct soap *soap, const struct ns1__lookupContactsResponse *a, const char *tag, const char *type) argument
4215 soap_out_ns1__lookupContactsResponse(struct soap *soap, const char *tag, int id, const struct ns1__lookupContactsResponse *a, const char *type) argument
4224 soap_get_ns1__lookupContactsResponse(struct soap *soap, struct ns1__lookupContactsResponse *p, const char *tag, const char *type) argument
4232 soap_in_ns1__lookupContactsResponse(struct soap *soap, const char *tag, struct ns1__lookupContactsResponse *a, const char *type) argument
4268 soap_default_ns1__getContact(struct soap *soap, struct ns1__getContact *a) argument
4274 soap_serialize_ns1__getContact(struct soap *soap, const struct ns1__getContact *a) argument
4280 soap_put_ns1__getContact(struct soap *soap, const struct ns1__getContact *a, const char *tag, const char *type) argument
4288 soap_out_ns1__getContact(struct soap *soap, const char *tag, int id, const struct ns1__getContact *a, const char *type) argument
4297 soap_get_ns1__getContact(struct soap *soap, struct ns1__getContact *p, const char *tag, const char *type) argument
4305 soap_in_ns1__getContact(struct soap *soap, const char *tag, struct ns1__getContact *a, const char *type) argument
4341 soap_default_ns1__getContactResponse(struct soap *soap, struct ns1__getContactResponse *a) argument
4347 soap_serialize_ns1__getContactResponse(struct soap *soap, const struct ns1__getContactResponse *a) argument
4353 soap_put_ns1__getContactResponse(struct soap *soap, const struct ns1__getContactResponse *a, const char *tag, const char *type) argument
4361 soap_out_ns1__getContactResponse(struct soap *soap, const char *tag, int id, const struct ns1__getContactResponse *a, const char *type) argument
4370 soap_get_ns1__getContactResponse(struct soap *soap, struct ns1__getContactResponse *p, const char *tag, const char *type) argument
4378 soap_in_ns1__getContactResponse(struct soap *soap, const char *tag, struct ns1__getContactResponse *a, const char *type) argument
4414 soap_default_ns1__updateContact(struct soap *soap, struct ns1__updateContact *a) argument
4420 soap_serialize_ns1__updateContact(struct soap *soap, const struct ns1__updateContact *a) argument
4426 soap_put_ns1__updateContact(struct soap *soap, const struct ns1__updateContact *a, const char *tag, const char *type) argument
4434 soap_out_ns1__updateContact(struct soap *soap, const char *tag, int id, const struct ns1__updateContact *a, const char *type) argument
4443 soap_get_ns1__updateContact(struct soap *soap, struct ns1__updateContact *p, const char *tag, const char *type) argument
4451 soap_in_ns1__updateContact(struct soap *soap, const char *tag, struct ns1__updateContact *a, const char *type) argument
4487 soap_default_ns1__updateContactResponse(struct soap *soap, struct ns1__updateContactResponse *a) argument
4492 soap_serialize_ns1__updateContactResponse(struct soap *soap, const struct ns1__updateContactResponse *a) argument
4497 soap_put_ns1__updateContactResponse(struct soap *soap, const struct ns1__updateContactResponse *a, const char *tag, const char *type) argument
4505 soap_out_ns1__updateContactResponse(struct soap *soap, const char *tag, int id, const struct ns1__updateContactResponse *a, const char *type) argument
4512 soap_get_ns1__updateContactResponse(struct soap *soap, struct ns1__updateContactResponse *p, const char *tag, const char *type) argument
4520 soap_in_ns1__updateContactResponse(struct soap *soap, const char *tag, struct ns1__updateContactResponse *a, const char *type) argument
4550 soap_default_ns1__changePassword(struct soap *soap, struct ns1__changePassword *a) argument
4557 soap_serialize_ns1__changePassword(struct soap *soap, const struct ns1__changePassword *a) argument
4564 soap_put_ns1__changePassword(struct soap *soap, const struct ns1__changePassword *a, const char *tag, const char *type) argument
4572 soap_out_ns1__changePassword(struct soap *soap, const char *tag, int id, const struct ns1__changePassword *a, const char *type) argument
4583 soap_get_ns1__changePassword(struct soap *soap, struct ns1__changePassword *p, const char *tag, const char *type) argument
4591 soap_in_ns1__changePassword(struct soap *soap, const char *tag, struct ns1__changePassword *a, const char *type) argument
4633 soap_default_ns1__changePasswordResponse(struct soap *soap, struct ns1__changePasswordResponse *a) argument
4638 soap_serialize_ns1__changePasswordResponse(struct soap *soap, const struct ns1__changePasswordResponse *a) argument
4643 soap_put_ns1__changePasswordResponse(struct soap *soap, const struct ns1__changePasswordResponse *a, const char *tag, const char *type) argument
4651 soap_out_ns1__changePasswordResponse(struct soap *soap, const char *tag, int id, const struct ns1__changePasswordResponse *a, const char *type) argument
4658 soap_get_ns1__changePasswordResponse(struct soap *soap, struct ns1__changePasswordResponse *p, const char *tag, const char *type) argument
4666 soap_in_ns1__changePasswordResponse(struct soap *soap, const char *tag, struct ns1__changePasswordResponse *a, const char *type) argument
4696 soap_default_ns1__deleteUser(struct soap *soap, struct ns1__deleteUser *a) argument
4702 soap_serialize_ns1__deleteUser(struct soap *soap, const struct ns1__deleteUser *a) argument
4708 soap_put_ns1__deleteUser(struct soap *soap, const struct ns1__deleteUser *a, const char *tag, const char *type) argument
4716 soap_out_ns1__deleteUser(struct soap *soap, const char *tag, int id, const struct ns1__deleteUser *a, const char *type) argument
4725 soap_get_ns1__deleteUser(struct soap *soap, struct ns1__deleteUser *p, const char *tag, const char *type) argument
4733 soap_in_ns1__deleteUser(struct soap *soap, const char *tag, struct ns1__deleteUser *a, const char *type) argument
4769 soap_default_ns1__deleteUserResponse(struct soap *soap, struct ns1__deleteUserResponse *a) argument
4774 soap_serialize_ns1__deleteUserResponse(struct soap *soap, const struct ns1__deleteUserResponse *a) argument
4779 soap_put_ns1__deleteUserResponse(struct soap *soap, const struct ns1__deleteUserResponse *a, const char *tag, const char *type) argument
4787 soap_out_ns1__deleteUserResponse(struct soap *soap, const char *tag, int id, const struct ns1__deleteUserResponse *a, const char *type) argument
4794 soap_get_ns1__deleteUserResponse(struct soap *soap, struct ns1__deleteUserResponse *p, const char *tag, const char *type) argument
4802 soap_in_ns1__deleteUserResponse(struct soap *soap, const char *tag, struct ns1__deleteUserResponse *a, const char *type) argument
4832 soap_default_ns1__vrfyLogin(struct soap *soap, struct ns1__vrfyLogin *a) argument
4837 soap_serialize_ns1__vrfyLogin(struct soap *soap, const struct ns1__vrfyLogin *a) argument
4842 soap_put_ns1__vrfyLogin(struct soap *soap, const struct ns1__vrfyLogin *a, const char *tag, const char *type) argument
4850 soap_out_ns1__vrfyLogin(struct soap *soap, const char *tag, int id, const struct ns1__vrfyLogin *a, const char *type) argument
4857 soap_get_ns1__vrfyLogin(struct soap *soap, struct ns1__vrfyLogin *p, const char *tag, const char *type) argument
4865 soap_in_ns1__vrfyLogin(struct soap *soap, const char *tag, struct ns1__vrfyLogin *a, const char *type) argument
4895 soap_default_ns1__vrfyLoginResponse(struct soap *soap, struct ns1__vrfyLoginResponse *a) argument
4900 soap_serialize_ns1__vrfyLoginResponse(struct soap *soap, const struct ns1__vrfyLoginResponse *a) argument
4905 soap_put_ns1__vrfyLoginResponse(struct soap *soap, const struct ns1__vrfyLoginResponse *a, const char *tag, const char *type) argument
4913 soap_out_ns1__vrfyLoginResponse(struct soap *soap, const char *tag, int id, const struct ns1__vrfyLoginResponse *a, const char *type) argument
4920 soap_get_ns1__vrfyLoginResponse(struct soap *soap, struct ns1__vrfyLoginResponse *p, const char *tag, const char *type) argument
4928 soap_in_ns1__vrfyLoginResponse(struct soap *soap, const char *tag, struct ns1__vrfyLoginResponse *a, const char *type) argument
4958 soap_default_ns4__UpdateMemberContactNotification(struct soap *soap, struct ns4__UpdateMemberContactNotification *a) argument
4968 soap_serialize_ns4__UpdateMemberContactNotification(struct soap *soap, const struct ns4__UpdateMemberContactNotification *a) argument
4978 soap_put_ns4__UpdateMemberContactNotification(struct soap *soap, const struct ns4__UpdateMemberContactNotification *a, const char *tag, const char *type) argument
4986 soap_out_ns4__UpdateMemberContactNotification(struct soap *soap, const char *tag, int id, const struct ns4__UpdateMemberContactNotification *a, const char *type) argument
5003 soap_get_ns4__UpdateMemberContactNotification(struct soap *soap, struct ns4__UpdateMemberContactNotification *p, const char *tag, const char *type) argument
5011 soap_in_ns4__UpdateMemberContactNotification(struct soap *soap, const char *tag, struct ns4__UpdateMemberContactNotification *a, const char *type) argument
5071 soap_default_ns4__SignupNetworkMemberNotification(struct soap *soap, struct ns4__SignupNetworkMemberNotification *a) argument
5082 soap_serialize_ns4__SignupNetworkMemberNotification(struct soap *soap, const struct ns4__SignupNetworkMemberNotification *a) argument
5093 soap_put_ns4__SignupNetworkMemberNotification(struct soap *soap, const struct ns4__SignupNetworkMemberNotification *a, const char *tag, const char *type) argument
5101 soap_out_ns4__SignupNetworkMemberNotification(struct soap *soap, const char *tag, int id, const struct ns4__SignupNetworkMemberNotification *a, const char *type) argument
5120 soap_get_ns4__SignupNetworkMemberNotification(struct soap *soap, struct ns4__SignupNetworkMemberNotification *p, const char *tag, const char *type) argument
5128 soap_in_ns4__SignupNetworkMemberNotification(struct soap *soap, const char *tag, struct ns4__SignupNetworkMemberNotification *a, const char *type) argument
5194 soap_default_ns4__DeleteNetworkMemberNotification(struct soap *soap, struct ns4__DeleteNetworkMemberNotification *a) argument
5204 soap_serialize_ns4__DeleteNetworkMemberNotification(struct soap *soap, const struct ns4__DeleteNetworkMemberNotification *a) argument
5214 soap_put_ns4__DeleteNetworkMemberNotification(struct soap *soap, const struct ns4__DeleteNetworkMemberNotification *a, const char *tag, const char *type) argument
5222 soap_out_ns4__DeleteNetworkMemberNotification(struct soap *soap, const char *tag, int id, const struct ns4__DeleteNetworkMemberNotification *a, const char *type) argument
5239 soap_get_ns4__DeleteNetworkMemberNotification(struct soap *soap, struct ns4__DeleteNetworkMemberNotification *p, const char *tag, const char *type) argument
5247 soap_in_ns4__DeleteNetworkMemberNotification(struct soap *soap, const char *tag, struct ns4__DeleteNetworkMemberNotification *a, const char *type) argument
5307 soap_default_ns4__DeclineNetworkInviteNotification(struct soap *soap, struct ns4__DeclineNetworkInviteNotification *a) argument
5317 soap_serialize_ns4__DeclineNetworkInviteNotification(struct soap *soap, const struct ns4__DeclineNetworkInviteNotification *a) argument
5327 soap_put_ns4__DeclineNetworkInviteNotification(struct soap *soap, const struct ns4__DeclineNetworkInviteNotification *a, const char *tag, const char *type) argument
5335 soap_out_ns4__DeclineNetworkInviteNotification(struct soap *soap, const char *tag, int id, const struct ns4__DeclineNetworkInviteNotification *a, const char *type) argument
5352 soap_get_ns4__DeclineNetworkInviteNotification(struct soap *soap, struct ns4__DeclineNetworkInviteNotification *p, const char *tag, const char *type) argument
5360 soap_in_ns4__DeclineNetworkInviteNotification(struct soap *soap, const char *tag, struct ns4__DeclineNetworkInviteNotification *a, const char *type) argument
5420 soap_default_ns4__AddNetworkMemberNotification(struct soap *soap, struct ns4__AddNetworkMemberNotification *a) argument
5430 soap_serialize_ns4__AddNetworkMemberNotification(struct soap *soap, const struct ns4__AddNetworkMemberNotification *a) argument
5440 soap_put_ns4__AddNetworkMemberNotification(struct soap *soap, const struct ns4__AddNetworkMemberNotification *a, const char *tag, const char *type) argument
5448 soap_out_ns4__AddNetworkMemberNotification(struct soap *soap, const char *tag, int id, const struct ns4__AddNetworkMemberNotification *a, const char *type) argument
5465 soap_get_ns4__AddNetworkMemberNotification(struct soap *soap, struct ns4__AddNetworkMemberNotification *p, const char *tag, const char *type) argument
5473 soap_in_ns4__AddNetworkMemberNotification(struct soap *soap, const char *tag, struct ns4__AddNetworkMemberNotification *a, const char *type) argument
5533 soap_default_ns5__PeerSynPktEvent(struct soap *soap, struct ns5__PeerSynPktEvent *a) argument
5547 soap_serialize_ns5__PeerSynPktEvent(struct soap *soap, const struct ns5__PeerSynPktEvent *a) argument
5561 soap_put_ns5__PeerSynPktEvent(struct soap *soap, const struct ns5__PeerSynPktEvent *a, const char *tag, const char *type) argument
5569 soap_out_ns5__PeerSynPktEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerSynPktEvent *a, const char *type) argument
5594 soap_get_ns5__PeerSynPktEvent(struct soap *soap, struct ns5__PeerSynPktEvent *p, const char *tag, const char *type) argument
5602 soap_in_ns5__PeerSynPktEvent(struct soap *soap, const char *tag, struct ns5__PeerSynPktEvent *a, const char *type) argument
5686 soap_default_ns5__PeerDisconnectedEvent(struct soap *soap, struct ns5__PeerDisconnectedEvent *a) argument
5699 soap_serialize_ns5__PeerDisconnectedEvent(struct soap *soap, const struct ns5__PeerDisconnectedEvent *a) argument
5712 soap_put_ns5__PeerDisconnectedEvent(struct soap *soap, const struct ns5__PeerDisconnectedEvent *a, const char *tag, const char *type) argument
5720 soap_out_ns5__PeerDisconnectedEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerDisconnectedEvent *a, const char *type) argument
5743 soap_get_ns5__PeerDisconnectedEvent(struct soap *soap, struct ns5__PeerDisconnectedEvent *p, const char *tag, const char *type) argument
5751 soap_in_ns5__PeerDisconnectedEvent(struct soap *soap, const char *tag, struct ns5__PeerDisconnectedEvent *a, const char *type) argument
5829 soap_default_ns5__PeerConnectedEvent(struct soap *soap, struct ns5__PeerConnectedEvent *a) argument
5842 soap_serialize_ns5__PeerConnectedEvent(struct soap *soap, const struct ns5__PeerConnectedEvent *a) argument
5855 soap_put_ns5__PeerConnectedEvent(struct soap *soap, const struct ns5__PeerConnectedEvent *a, const char *tag, const char *type) argument
5863 soap_out_ns5__PeerConnectedEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectedEvent *a, const char *type) argument
5886 soap_get_ns5__PeerConnectedEvent(struct soap *soap, struct ns5__PeerConnectedEvent *p, const char *tag, const char *type) argument
5894 soap_in_ns5__PeerConnectedEvent(struct soap *soap, const char *tag, struct ns5__PeerConnectedEvent *a, const char *type) argument
5972 soap_default_ns5__PeerConnectRequestEvent(struct soap *soap, struct ns5__PeerConnectRequestEvent *a) argument
5987 soap_serialize_ns5__PeerConnectRequestEvent(struct soap *soap, const struct ns5__PeerConnectRequestEvent *a) argument
6002 soap_put_ns5__PeerConnectRequestEvent(struct soap *soap, const struct ns5__PeerConnectRequestEvent *a, const char *tag, const char *type) argument
6010 soap_out_ns5__PeerConnectRequestEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectRequestEvent *a, const char *type) argument
6037 soap_get_ns5__PeerConnectRequestEvent(struct soap *soap, struct ns5__PeerConnectRequestEvent *p, const char *tag, const char *type) argument
6045 soap_in_ns5__PeerConnectRequestEvent(struct soap *soap, const char *tag, struct ns5__PeerConnectRequestEvent *a, const char *type) argument
6135 soap_default_ns5__PeerConnectRejectEvent(struct soap *soap, struct ns5__PeerConnectRejectEvent *a) argument
6149 soap_serialize_ns5__PeerConnectRejectEvent(struct soap *soap, const struct ns5__PeerConnectRejectEvent *a) argument
6163 soap_put_ns5__PeerConnectRejectEvent(struct soap *soap, const struct ns5__PeerConnectRejectEvent *a, const char *tag, const char *type) argument
6171 soap_out_ns5__PeerConnectRejectEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectRejectEvent *a, const char *type) argument
6196 soap_get_ns5__PeerConnectRejectEvent(struct soap *soap, struct ns5__PeerConnectRejectEvent *p, const char *tag, const char *type) argument
6204 soap_in_ns5__PeerConnectRejectEvent(struct soap *soap, const char *tag, struct ns5__PeerConnectRejectEvent *a, const char *type) argument
6288 soap_default_ns5__PeerConnectEvent(struct soap *soap, struct ns5__PeerConnectEvent *a) argument
6304 soap_serialize_ns5__PeerConnectEvent(struct soap *soap, const struct ns5__PeerConnectEvent *a) argument
6320 soap_put_ns5__PeerConnectEvent(struct soap *soap, const struct ns5__PeerConnectEvent *a, const char *tag, const char *type) argument
6328 soap_out_ns5__PeerConnectEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectEvent *a, const char *type) argument
6357 soap_get_ns5__PeerConnectEvent(struct soap *soap, struct ns5__PeerConnectEvent *p, const char *tag, const char *type) argument
6365 soap_in_ns5__PeerConnectEvent(struct soap *soap, const char *tag, struct ns5__PeerConnectEvent *a, const char *type) argument
6461 soap_default_ns5__PeerConnectErrorEvent(struct soap *soap, struct ns5__PeerConnectErrorEvent *a) argument
6475 soap_serialize_ns5__PeerConnectErrorEvent(struct soap *soap, const struct ns5__PeerConnectErrorEvent *a) argument
6489 soap_put_ns5__PeerConnectErrorEvent(struct soap *soap, const struct ns5__PeerConnectErrorEvent *a, const char *tag, const char *type) argument
6497 soap_out_ns5__PeerConnectErrorEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectErrorEvent *a, const char *type) argument
6522 soap_get_ns5__PeerConnectErrorEvent(struct soap *soap, struct ns5__PeerConnectErrorEvent *p, const char *tag, const char *type) argument
6530 soap_in_ns5__PeerConnectErrorEvent(struct soap *soap, const char *tag, struct ns5__PeerConnectErrorEvent *a, const char *type) argument
6614 soap_default_ns5__PeerConnectBusyEvent(struct soap *soap, struct ns5__PeerConnectBusyEvent *a) argument
6627 soap_serialize_ns5__PeerConnectBusyEvent(struct soap *soap, const struct ns5__PeerConnectBusyEvent *a) argument
6640 soap_put_ns5__PeerConnectBusyEvent(struct soap *soap, const struct ns5__PeerConnectBusyEvent *a, const char *tag, const char *type) argument
6648 soap_out_ns5__PeerConnectBusyEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectBusyEvent *a, const char *type) argument
6671 soap_get_ns5__PeerConnectBusyEvent(struct soap *soap, struct ns5__PeerConnectBusyEvent *p, const char *tag, const char *type) argument
6679 soap_in_ns5__PeerConnectBusyEvent(struct soap *soap, const char *tag, struct ns5__PeerConnectBusyEvent *a, const char *type) argument
6757 soap_default_ns4__InviteNetworkNotification(struct soap *soap, struct ns4__InviteNetworkNotification *a) argument
6766 soap_serialize_ns4__InviteNetworkNotification(struct soap *soap, const struct ns4__InviteNetworkNotification *a) argument
6775 soap_put_ns4__InviteNetworkNotification(struct soap *soap, const struct ns4__InviteNetworkNotification *a, const char *tag, const char *type) argument
6783 soap_out_ns4__InviteNetworkNotification(struct soap *soap, const char *tag, int id, const struct ns4__InviteNetworkNotification *a, const char *type) argument
6798 soap_get_ns4__InviteNetworkNotification(struct soap *soap, struct ns4__InviteNetworkNotification *p, const char *tag, const char *type) argument
6806 soap_in_ns4__InviteNetworkNotification(struct soap *soap, const char *tag, struct ns4__InviteNetworkNotification *a, const char *type) argument
6860 soap_default_ns4__DeleteNetworkNotification(struct soap *soap, struct ns4__DeleteNetworkNotification *a) argument
6869 soap_serialize_ns4__DeleteNetworkNotification(struct soap *soap, const struct ns4__DeleteNetworkNotification *a) argument
6878 soap_put_ns4__DeleteNetworkNotification(struct soap *soap, const struct ns4__DeleteNetworkNotification *a, const char *tag, const char *type) argument
6886 soap_out_ns4__DeleteNetworkNotification(struct soap *soap, const char *tag, int id, const struct ns4__DeleteNetworkNotification *a, const char *type) argument
6901 soap_get_ns4__DeleteNetworkNotification(struct soap *soap, struct ns4__DeleteNetworkNotification *p, const char *tag, const char *type) argument
6909 soap_in_ns4__DeleteNetworkNotification(struct soap *soap, const char *tag, struct ns4__DeleteNetworkNotification *a, const char *type) argument
6963 soap_default_ns4__NetworkMemberNotification(struct soap *soap, struct ns4__NetworkMemberNotification *a) argument
6973 soap_serialize_ns4__NetworkMemberNotification(struct soap *soap, const struct ns4__NetworkMemberNotification *a) argument
6983 soap_put_ns4__NetworkMemberNotification(struct soap *soap, const struct ns4__NetworkMemberNotification *a, const char *tag, const char *type) argument
6991 soap_out_ns4__NetworkMemberNotification(struct soap *soap, const char *tag, int id, const struct ns4__NetworkMemberNotification *a, const char *type) argument
7008 soap_get_ns4__NetworkMemberNotification(struct soap *soap, struct ns4__NetworkMemberNotification *p, const char *tag, const char *type) argument
7016 soap_in_ns4__NetworkMemberNotification(struct soap *soap, const char *tag, struct ns4__NetworkMemberNotification *a, const char *type) argument
7076 soap_default_ns5__PeerEventIndex(struct soap *soap, struct ns5__PeerEventIndex *a) argument
7085 soap_serialize_ns5__PeerEventIndex(struct soap *soap, const struct ns5__PeerEventIndex *a) argument
7094 soap_put_ns5__PeerEventIndex(struct soap *soap, const struct ns5__PeerEventIndex *a, const char *tag, const char *type) argument
7102 soap_out_ns5__PeerEventIndex(struct soap *soap, const char *tag, int id, const struct ns5__PeerEventIndex *a, const char *type) argument
7117 soap_get_ns5__PeerEventIndex(struct soap *soap, struct ns5__PeerEventIndex *p, const char *tag, const char *type) argument
7125 soap_in_ns5__PeerEventIndex(struct soap *soap, const char *tag, struct ns5__PeerEventIndex *a, const char *type) argument
7179 soap_default_ns5__PeerConnectionEvent(struct soap *soap, struct ns5__PeerConnectionEvent *a) argument
7191 soap_serialize_ns5__PeerConnectionEvent(struct soap *soap, const struct ns5__PeerConnectionEvent *a) argument
7203 soap_put_ns5__PeerConnectionEvent(struct soap *soap, const struct ns5__PeerConnectionEvent *a, const char *tag, const char *type) argument
7211 soap_out_ns5__PeerConnectionEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectionEvent *a, const char *type) argument
7232 soap_get_ns5__PeerConnectionEvent(struct soap *soap, struct ns5__PeerConnectionEvent *p, const char *tag, const char *type) argument
7240 soap_in_ns5__PeerConnectionEvent(struct soap *soap, const char *tag, struct ns5__PeerConnectionEvent *a, const char *type) argument
7312 soap_default_ns4__NotificationIndex(struct soap *soap, struct ns4__NotificationIndex *a) argument
7320 soap_serialize_ns4__NotificationIndex(struct soap *soap, const struct ns4__NotificationIndex *a) argument
7328 soap_put_ns4__NotificationIndex(struct soap *soap, const struct ns4__NotificationIndex *a, const char *tag, const char *type) argument
7336 soap_out_ns4__NotificationIndex(struct soap *soap, const char *tag, int id, const struct ns4__NotificationIndex *a, const char *type) argument
7349 soap_get_ns4__NotificationIndex(struct soap *soap, struct ns4__NotificationIndex *p, const char *tag, const char *type) argument
7357 soap_in_ns4__NotificationIndex(struct soap *soap, const char *tag, struct ns4__NotificationIndex *a, const char *type) argument
7405 soap_default_ns4__NetworkNotification(struct soap *soap, struct ns4__NetworkNotification *a) argument
7414 soap_serialize_ns4__NetworkNotification(struct soap *soap, const struct ns4__NetworkNotification *a) argument
7423 soap_put_ns4__NetworkNotification(struct soap *soap, const struct ns4__NetworkNotification *a, const char *tag, const char *type) argument
7431 soap_out_ns4__NetworkNotification(struct soap *soap, const char *tag, int id, const struct ns4__NetworkNotification *a, const char *type) argument
7446 soap_get_ns4__NetworkNotification(struct soap *soap, struct ns4__NetworkNotification *p, const char *tag, const char *type) argument
7454 soap_in_ns4__NetworkNotification(struct soap *soap, const char *tag, struct ns4__NetworkNotification *a, const char *type) argument
7508 soap_default_ns2__Usert(struct soap *soap, struct ns2__Usert *a) argument
7517 soap_serialize_ns2__Usert(struct soap *soap, const struct ns2__Usert *a) argument
7526 soap_put_ns2__Usert(struct soap *soap, const struct ns2__Usert *a, const char *tag, const char *type) argument
7534 soap_out_ns2__Usert(struct soap *soap, const char *tag, int id, const struct ns2__Usert *a, const char *type) argument
7549 soap_get_ns2__Usert(struct soap *soap, struct ns2__Usert *p, const char *tag, const char *type) argument
7557 soap_in_ns2__Usert(struct soap *soap, const char *tag, struct ns2__Usert *a, const char *type) argument
7611 soap_default_ns5__PeerRegister(struct soap *soap, struct ns5__PeerRegister *a) argument
7619 soap_serialize_ns5__PeerRegister(struct soap *soap, const struct ns5__PeerRegister *a) argument
7627 soap_put_ns5__PeerRegister(struct soap *soap, const struct ns5__PeerRegister *a, const char *tag, const char *type) argument
7635 soap_out_ns5__PeerRegister(struct soap *soap, const char *tag, int id, const struct ns5__PeerRegister *a, const char *type) argument
7648 soap_get_ns5__PeerRegister(struct soap *soap, struct ns5__PeerRegister *p, const char *tag, const char *type) argument
7656 soap_in_ns5__PeerRegister(struct soap *soap, const char *tag, struct ns5__PeerRegister *a, const char *type) argument
7704 soap_default_ns5__PeerEventType(struct soap *soap, struct ns5__PeerEventType *a) argument
7709 soap_serialize_ns5__PeerEventType(struct soap *soap, const struct ns5__PeerEventType *a) argument
7714 soap_put_ns5__PeerEventType(struct soap *soap, const struct ns5__PeerEventType *a, const char *tag, const char *type) argument
7722 soap_out_ns5__PeerEventType(struct soap *soap, const char *tag, int id, const struct ns5__PeerEventType *a, const char *type) argument
7729 soap_get_ns5__PeerEventType(struct soap *soap, struct ns5__PeerEventType *p, const char *tag, const char *type) argument
7737 soap_in_ns5__PeerEventType(struct soap *soap, const char *tag, struct ns5__PeerEventType *a, const char *type) argument
7767 soap_default_ns5__PeerConnectionType(struct soap *soap, struct ns5__PeerConnectionType *a) argument
7772 soap_serialize_ns5__PeerConnectionType(struct soap *soap, const struct ns5__PeerConnectionType *a) argument
7777 soap_put_ns5__PeerConnectionType(struct soap *soap, const struct ns5__PeerConnectionType *a, const char *tag, const char *type) argument
7785 soap_out_ns5__PeerConnectionType(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectionType *a, const char *type) argument
7792 soap_get_ns5__PeerConnectionType(struct soap *soap, struct ns5__PeerConnectionType *p, const char *tag, const char *type) argument
7800 soap_in_ns5__PeerConnectionType(struct soap *soap, const char *tag, struct ns5__PeerConnectionType *a, const char *type) argument
7830 soap_default_ns5__PeerConnectionStats(struct soap *soap, struct ns5__PeerConnectionStats *a) argument
7838 soap_serialize_ns5__PeerConnectionStats(struct soap *soap, const struct ns5__PeerConnectionStats *a) argument
7846 soap_put_ns5__PeerConnectionStats(struct soap *soap, const struct ns5__PeerConnectionStats *a, const char *tag, const char *type) argument
7854 soap_out_ns5__PeerConnectionStats(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectionStats *a, const char *type) argument
7867 soap_get_ns5__PeerConnectionStats(struct soap *soap, struct ns5__PeerConnectionStats *p, const char *tag, const char *type) argument
7875 soap_in_ns5__PeerConnectionStats(struct soap *soap, const char *tag, struct ns5__PeerConnectionStats *a, const char *type) argument
7923 soap_default_ns5__PeerConnectionState(struct soap *soap, struct ns5__PeerConnectionState *a) argument
7928 soap_serialize_ns5__PeerConnectionState(struct soap *soap, const struct ns5__PeerConnectionState *a) argument
7933 soap_put_ns5__PeerConnectionState(struct soap *soap, const struct ns5__PeerConnectionState *a, const char *tag, const char *type) argument
7941 soap_out_ns5__PeerConnectionState(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectionState *a, const char *type) argument
7948 soap_get_ns5__PeerConnectionState(struct soap *soap, struct ns5__PeerConnectionState *p, const char *tag, const char *type) argument
7956 soap_in_ns5__PeerConnectionState(struct soap *soap, const char *tag, struct ns5__PeerConnectionState *a, const char *type) argument
7986 soap_default_ns5__PeerConnectionInfo(struct soap *soap, struct ns5__PeerConnectionInfo *a) argument
7997 soap_serialize_ns5__PeerConnectionInfo(struct soap *soap, const struct ns5__PeerConnectionInfo *a) argument
8008 soap_put_ns5__PeerConnectionInfo(struct soap *soap, const struct ns5__PeerConnectionInfo *a, const char *tag, const char *type) argument
8016 soap_out_ns5__PeerConnectionInfo(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectionInfo *a, const char *type) argument
8035 soap_get_ns5__PeerConnectionInfo(struct soap *soap, struct ns5__PeerConnectionInfo *p, const char *tag, const char *type) argument
8043 soap_in_ns5__PeerConnectionInfo(struct soap *soap, const char *tag, struct ns5__PeerConnectionInfo *a, const char *type) argument
8109 soap_default_ns5__PeerConnectionConnectedStatus(struct soap *soap, struct ns5__PeerConnectionConnectedStatus *a) argument
8114 soap_serialize_ns5__PeerConnectionConnectedStatus(struct soap *soap, const struct ns5__PeerConnectionConnectedStatus *a) argument
8119 soap_put_ns5__PeerConnectionConnectedStatus(struct soap *soap, const struct ns5__PeerConnectionConnectedStatus *a, const char *tag, const char *type) argument
8127 soap_out_ns5__PeerConnectionConnectedStatus(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectionConnectedStatus *a, const char *type) argument
8134 soap_get_ns5__PeerConnectionConnectedStatus(struct soap *soap, struct ns5__PeerConnectionConnectedStatus *p, const char *tag, const char *type) argument
8142 soap_in_ns5__PeerConnectionConnectedStatus(struct soap *soap, const char *tag, struct ns5__PeerConnectionConnectedStatus *a, const char *type) argument
8172 soap_default_ns5__PeerConnectionConnectStatus(struct soap *soap, struct ns5__PeerConnectionConnectStatus *a) argument
8177 soap_serialize_ns5__PeerConnectionConnectStatus(struct soap *soap, const struct ns5__PeerConnectionConnectStatus *a) argument
8182 soap_put_ns5__PeerConnectionConnectStatus(struct soap *soap, const struct ns5__PeerConnectionConnectStatus *a, const char *tag, const char *type) argument
8190 soap_out_ns5__PeerConnectionConnectStatus(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnectionConnectStatus *a, const char *type) argument
8197 soap_get_ns5__PeerConnectionConnectStatus(struct soap *soap, struct ns5__PeerConnectionConnectStatus *p, const char *tag, const char *type) argument
8205 soap_in_ns5__PeerConnectionConnectStatus(struct soap *soap, const char *tag, struct ns5__PeerConnectionConnectStatus *a, const char *type) argument
8235 soap_default_ns5__PeerConnection(struct soap *soap, struct ns5__PeerConnection *a) argument
8250 soap_serialize_ns5__PeerConnection(struct soap *soap, const struct ns5__PeerConnection *a) argument
8265 soap_put_ns5__PeerConnection(struct soap *soap, const struct ns5__PeerConnection *a, const char *tag, const char *type) argument
8273 soap_out_ns5__PeerConnection(struct soap *soap, const char *tag, int id, const struct ns5__PeerConnection *a, const char *type) argument
8300 soap_get_ns5__PeerConnection(struct soap *soap, struct ns5__PeerConnection *p, const char *tag, const char *type) argument
8308 soap_in_ns5__PeerConnection(struct soap *soap, const char *tag, struct ns5__PeerConnection *a, const char *type) argument
8398 soap_default_ns5__PeerEvent(struct soap *soap, struct ns5__PeerEvent *a) argument
8407 soap_serialize_ns5__PeerEvent(struct soap *soap, const struct ns5__PeerEvent *a) argument
8416 soap_put_ns5__PeerEvent(struct soap *soap, const struct ns5__PeerEvent *a, const char *tag, const char *type) argument
8424 soap_out_ns5__PeerEvent(struct soap *soap, const char *tag, int id, const struct ns5__PeerEvent *a, const char *type) argument
8439 soap_get_ns5__PeerEvent(struct soap *soap, struct ns5__PeerEvent *p, const char *tag, const char *type) argument
8447 soap_in_ns5__PeerEvent(struct soap *soap, const char *tag, struct ns5__PeerEvent *a, const char *type) argument
8501 soap_default_ns5__PeerAssistAttr(struct soap *soap, struct ns5__PeerAssistAttr *a) argument
8509 soap_serialize_ns5__PeerAssistAttr(struct soap *soap, const struct ns5__PeerAssistAttr *a) argument
8517 soap_put_ns5__PeerAssistAttr(struct soap *soap, const struct ns5__PeerAssistAttr *a, const char *tag, const char *type) argument
8525 soap_out_ns5__PeerAssistAttr(struct soap *soap, const char *tag, int id, const struct ns5__PeerAssistAttr *a, const char *type) argument
8538 soap_get_ns5__PeerAssistAttr(struct soap *soap, struct ns5__PeerAssistAttr *p, const char *tag, const char *type) argument
8546 soap_in_ns5__PeerAssistAttr(struct soap *soap, const char *tag, struct ns5__PeerAssistAttr *a, const char *type) argument
8594 soap_default_ns5__PeerAssist(struct soap *soap, struct ns5__PeerAssist *a) argument
8604 soap_serialize_ns5__PeerAssist(struct soap *soap, const struct ns5__PeerAssist *a) argument
8614 soap_put_ns5__PeerAssist(struct soap *soap, const struct ns5__PeerAssist *a, const char *tag, const char *type) argument
8622 soap_out_ns5__PeerAssist(struct soap *soap, const char *tag, int id, const struct ns5__PeerAssist *a, const char *type) argument
8639 soap_get_ns5__PeerAssist(struct soap *soap, struct ns5__PeerAssist *p, const char *tag, const char *type) argument
8647 soap_in_ns5__PeerAssist(struct soap *soap, const char *tag, struct ns5__PeerAssist *a, const char *type) argument
8707 soap_default_ns5__PeerAccess(struct soap *soap, struct ns5__PeerAccess *a) argument
8715 soap_serialize_ns5__PeerAccess(struct soap *soap, const struct ns5__PeerAccess *a) argument
8723 soap_put_ns5__PeerAccess(struct soap *soap, const struct ns5__PeerAccess *a, const char *tag, const char *type) argument
8731 soap_out_ns5__PeerAccess(struct soap *soap, const char *tag, int id, const struct ns5__PeerAccess *a, const char *type) argument
8744 soap_get_ns5__PeerAccess(struct soap *soap, struct ns5__PeerAccess *p, const char *tag, const char *type) argument
8752 soap_in_ns5__PeerAccess(struct soap *soap, const char *tag, struct ns5__PeerAccess *a, const char *type) argument
8800 soap_default_ns4__NotificationType(struct soap *soap, struct ns4__NotificationType *a) argument
8805 soap_serialize_ns4__NotificationType(struct soap *soap, const struct ns4__NotificationType *a) argument
8810 soap_put_ns4__NotificationType(struct soap *soap, const struct ns4__NotificationType *a, const char *tag, const char *type) argument
8818 soap_out_ns4__NotificationType(struct soap *soap, const char *tag, int id, const struct ns4__NotificationType *a, const char *type) argument
8825 soap_get_ns4__NotificationType(struct soap *soap, struct ns4__NotificationType *p, const char *tag, const char *type) argument
8833 soap_in_ns4__NotificationType(struct soap *soap, const char *tag, struct ns4__NotificationType *a, const char *type) argument
8863 soap_default_ns4__Notification(struct soap *soap, struct ns4__Notification *a) argument
8871 soap_serialize_ns4__Notification(struct soap *soap, const struct ns4__Notification *a) argument
8879 soap_put_ns4__Notification(struct soap *soap, const struct ns4__Notification *a, const char *tag, const char *type) argument
8887 soap_out_ns4__Notification(struct soap *soap, const char *tag, int id, const struct ns4__Notification *a, const char *type) argument
8900 soap_get_ns4__Notification(struct soap *soap, struct ns4__Notification *p, const char *tag, const char *type) argument
8908 soap_in_ns4__Notification(struct soap *soap, const char *tag, struct ns4__Notification *a, const char *type) argument
8956 soap_default_ns3__Vector(struct soap *soap, struct ns3__Vector *a) argument
8963 soap_serialize_ns3__Vector(struct soap *soap, const struct ns3__Vector *a) argument
8968 soap_put_ns3__Vector(struct soap *soap, const struct ns3__Vector *a, const char *tag, const char *type) argument
8976 soap_out_ns3__Vector(struct soap *soap, const char *tag, int id, const struct ns3__Vector *a, const char *type) argument
8988 soap_get_ns3__Vector(struct soap *soap, struct ns3__Vector *p, const char *tag, const char *type) argument
8996 soap_in_ns3__Vector(struct soap *soap, const char *tag, struct ns3__Vector *a, const char *type) argument
9051 soap_default_ns2__UserStats(struct soap *soap, struct ns2__UserStats *a) argument
9059 soap_serialize_ns2__UserStats(struct soap *soap, const struct ns2__UserStats *a) argument
9067 soap_put_ns2__UserStats(struct soap *soap, const struct ns2__UserStats *a, const char *tag, const char *type) argument
9075 soap_out_ns2__UserStats(struct soap *soap, const char *tag, int id, const struct ns2__UserStats *a, const char *type) argument
9088 soap_get_ns2__UserStats(struct soap *soap, struct ns2__UserStats *p, const char *tag, const char *type) argument
9096 soap_in_ns2__UserStats(struct soap *soap, const char *tag, struct ns2__UserStats *a, const char *type) argument
9144 soap_default_ns2__UserAttr(struct soap *soap, struct ns2__UserAttr *a) argument
9152 soap_serialize_ns2__UserAttr(struct soap *soap, const struct ns2__UserAttr *a) argument
9160 soap_put_ns2__UserAttr(struct soap *soap, const struct ns2__UserAttr *a, const char *tag, const char *type) argument
9168 soap_out_ns2__UserAttr(struct soap *soap, const char *tag, int id, const struct ns2__UserAttr *a, const char *type) argument
9181 soap_get_ns2__UserAttr(struct soap *soap, struct ns2__UserAttr *p, const char *tag, const char *type) argument
9189 soap_in_ns2__UserAttr(struct soap *soap, const char *tag, struct ns2__UserAttr *a, const char *type) argument
9237 soap_default_ns2__SystemNotification(struct soap *soap, struct ns2__SystemNotification *a) argument
9248 soap_serialize_ns2__SystemNotification(struct soap *soap, const struct ns2__SystemNotification *a) argument
9259 soap_put_ns2__SystemNotification(struct soap *soap, const struct ns2__SystemNotification *a, const char *tag, const char *type) argument
9267 soap_out_ns2__SystemNotification(struct soap *soap, const char *tag, int id, const struct ns2__SystemNotification *a, const char *type) argument
9286 soap_get_ns2__SystemNotification(struct soap *soap, struct ns2__SystemNotification *p, const char *tag, const char *type) argument
9294 soap_in_ns2__SystemNotification(struct soap *soap, const char *tag, struct ns2__SystemNotification *a, const char *type) argument
9360 soap_default_ns2__IPAttr(struct soap *soap, struct ns2__IPAttr *a) argument
9368 soap_serialize_ns2__IPAttr(struct soap *soap, const struct ns2__IPAttr *a) argument
9376 soap_put_ns2__IPAttr(struct soap *soap, const struct ns2__IPAttr *a, const char *tag, const char *type) argument
9384 soap_out_ns2__IPAttr(struct soap *soap, const char *tag, int id, const struct ns2__IPAttr *a, const char *type) argument
9397 soap_get_ns2__IPAttr(struct soap *soap, struct ns2__IPAttr *p, const char *tag, const char *type) argument
9405 soap_in_ns2__IPAttr(struct soap *soap, const char *tag, struct ns2__IPAttr *a, const char *type) argument
9453 soap_default_ns2__IPAddress(struct soap *soap, struct ns2__IPAddress *a) argument
9460 soap_serialize_ns2__IPAddress(struct soap *soap, const struct ns2__IPAddress *a) argument
9467 soap_put_ns2__IPAddress(struct soap *soap, const struct ns2__IPAddress *a, const char *tag, const char *type) argument
9475 soap_out_ns2__IPAddress(struct soap *soap, const char *tag, int id, const struct ns2__IPAddress *a, const char *type) argument
9486 soap_get_ns2__IPAddress(struct soap *soap, struct ns2__IPAddress *p, const char *tag, const char *type) argument
9494 soap_in_ns2__IPAddress(struct soap *soap, const char *tag, struct ns2__IPAddress *a, const char *type) argument
9536 soap_default_ns2__User(struct soap *soap, struct ns2__User *a) argument
9544 soap_serialize_ns2__User(struct soap *soap, const struct ns2__User *a) argument
9552 soap_put_ns2__User(struct soap *soap, const struct ns2__User *a, const char *tag, const char *type) argument
9560 soap_out_ns2__User(struct soap *soap, const char *tag, int id, const struct ns2__User *a, const char *type) argument
9573 soap_get_ns2__User(struct soap *soap, struct ns2__User *p, const char *tag, const char *type) argument
9581 soap_in_ns2__User(struct soap *soap, const char *tag, struct ns2__User *a, const char *type) argument
9629 soap_default_ns2__Member(struct soap *soap, struct ns2__Member *a) argument
9636 soap_serialize_ns2__Member(struct soap *soap, const struct ns2__Member *a) argument
9643 soap_put_ns2__Member(struct soap *soap, const struct ns2__Member *a, const char *tag, const char *type) argument
9651 soap_out_ns2__Member(struct soap *soap, const char *tag, int id, const struct ns2__Member *a, const char *type) argument
9662 soap_get_ns2__Member(struct soap *soap, struct ns2__Member *p, const char *tag, const char *type) argument
9670 soap_in_ns2__Member(struct soap *soap, const char *tag, struct ns2__Member *a, const char *type) argument
9712 soap_default_ArrayOf_USCORExsd_USCOREanyType(struct soap *soap, struct ArrayOf_USCORExsd_USCOREanyType *a) argument
9718 soap_serialize_ArrayOf_USCORExsd_USCOREanyType(struct soap *soap, struct ArrayOf_USCORExsd_USCOREanyType const*a) argument
9722 soap_put_ArrayOf_USCORExsd_USCOREanyType(struct soap *soap, const struct ArrayOf_USCORExsd_USCOREanyType *a, const char *tag, const char *type) argument
9730 soap_out_ArrayOf_USCORExsd_USCOREanyType(struct soap *soap, const char *tag, int id, const struct ArrayOf_USCORExsd_USCOREanyType *a, const char *type) argument
9745 soap_get_ArrayOf_USCORExsd_USCOREanyType(struct soap *soap, struct ArrayOf_USCORExsd_USCOREanyType *p, const char *tag, const char *type) argument
9753 soap_in_ArrayOf_USCORExsd_USCOREanyType(struct soap *soap, const char *tag, struct ArrayOf_USCORExsd_USCOREanyType *a, const char *type) argument
9820 soap_default_ns2__Network(struct soap *soap, struct ns2__Network *a) argument
9829 soap_serialize_ns2__Network(struct soap *soap, const struct ns2__Network *a) argument
9838 soap_put_ns2__Network(struct soap *soap, const struct ns2__Network *a, const char *tag, const char *type) argument
9846 soap_out_ns2__Network(struct soap *soap, const char *tag, int id, const struct ns2__Network *a, const char *type) argument
9861 soap_get_ns2__Network(struct soap *soap, struct ns2__Network *p, const char *tag, const char *type) argument
9869 soap_in_ns2__Network(struct soap *soap, const char *tag, struct ns2__Network *a, const char *type) argument
9923 soap_default_ns2__Contact(struct soap *soap, struct ns2__Contact *a) argument
9933 soap_serialize_ns2__Contact(struct soap *soap, const struct ns2__Contact *a) argument
9943 soap_put_ns2__Contact(struct soap *soap, const struct ns2__Contact *a, const char *tag, const char *type) argument
9951 soap_out_ns2__Contact(struct soap *soap, const char *tag, int id, const struct ns2__Contact *a, const char *type) argument
9968 soap_get_ns2__Contact(struct soap *soap, struct ns2__Contact *p, const char *tag, const char *type) argument
9976 soap_in_ns2__Contact(struct soap *soap, const char *tag, struct ns2__Contact *a, const char *type) argument
10036 soap_default_xsd__base64Binary(struct soap *soap, struct xsd__base64Binary *a) argument
10045 soap_serialize_xsd__base64Binary(struct soap *soap, struct xsd__base64Binary const*a) argument
10052 soap_put_xsd__base64Binary(struct soap *soap, const struct xsd__base64Binary *a, const char *tag, const char *type) argument
10060 soap_out_xsd__base64Binary(struct soap *soap, const char *tag, int id, const struct xsd__base64Binary *a, const char *type) argument
10076 soap_get_xsd__base64Binary(struct soap *soap, struct xsd__base64Binary *p, const char *tag, const char *type) argument
10084 soap_in_xsd__base64Binary(struct soap *soap, const char *tag, struct xsd__base64Binary *a, const char *type) argument
10124 soap_serialize_PointerToSOAP_ENV__Reason(struct soap *soap, struct SOAP_ENV__Reason *const*a) argument
10130 soap_put_PointerToSOAP_ENV__Reason(struct soap *soap, struct SOAP_ENV__Reason *const*a, const char *tag, const char *type) argument
10138 soap_out_PointerToSOAP_ENV__Reason(struct soap *soap, const char *tag, int id, struct SOAP_ENV__Reason *const*a, const char *type) argument
10146 soap_get_PointerToSOAP_ENV__Reason(struct soap *soap, struct SOAP_ENV__Reason **p, const char *tag, const char *type) argument
10154 soap_in_PointerToSOAP_ENV__Reason(struct soap *soap, const char *tag, struct SOAP_ENV__Reason **a, const char *type) argument
10179 soap_serialize_PointerToSOAP_ENV__Detail(struct soap *soap, struct SOAP_ENV__Detail *const*a) argument
10185 soap_put_PointerToSOAP_ENV__Detail(struct soap *soap, struct SOAP_ENV__Detail *const*a, const char *tag, const char *type) argument
10193 soap_out_PointerToSOAP_ENV__Detail(struct soap *soap, const char *tag, int id, struct SOAP_ENV__Detail *const*a, const char *type) argument
10201 soap_get_PointerToSOAP_ENV__Detail(struct soap *soap, struct SOAP_ENV__Detail **p, const char *tag, const char *type) argument
10209 soap_in_PointerToSOAP_ENV__Detail(struct soap *soap, const char *tag, struct SOAP_ENV__Detail **a, const char *type) argument
10234 soap_serialize_PointerToSOAP_ENV__Code(struct soap *soap, struct SOAP_ENV__Code *const*a) argument
10240 soap_put_PointerToSOAP_ENV__Code(struct soap *soap, struct SOAP_ENV__Code *const*a, const char *tag, const char *type) argument
10248 soap_out_PointerToSOAP_ENV__Code(struct soap *soap, const char *tag, int id, struct SOAP_ENV__Code *const*a, const char *type) argument
10256 soap_get_PointerToSOAP_ENV__Code(struct soap *soap, struct SOAP_ENV__Code **p, const char *tag, const char *type) argument
10264 soap_in_PointerToSOAP_ENV__Code(struct soap *soap, const char *tag, struct SOAP_ENV__Code **a, const char *type) argument
10287 soap_serialize_PointerTons1__getSystemNotificationsResponse(struct soap *soap, struct ns1__getSystemNotificationsResponse *const*a) argument
10293 soap_put_PointerTons1__getSystemNotificationsResponse(struct soap *soap, struct ns1__getSystemNotificationsResponse *const*a, const char *tag, const char *type) argument
10301 soap_out_PointerTons1__getSystemNotificationsResponse(struct soap *soap, const char *tag, int id, struct ns1__getSystemNotificationsResponse *const*a, const char *type) argument
10309 soap_get_PointerTons1__getSystemNotificationsResponse(struct soap *soap, struct ns1__getSystemNotificationsResponse **p, const char *tag, const char *type) argument
10317 soap_in_PointerTons1__getSystemNotificationsResponse(struct soap *soap, const char *tag, struct ns1__getSystemNotificationsResponse **a, const char *type) argument
10338 soap_serialize_PointerTons1__getNotificationsResponse(struct soap *soap, struct ns1__getNotificationsResponse *const*a) argument
10344 soap_put_PointerTons1__getNotificationsResponse(struct soap *soap, struct ns1__getNotificationsResponse *const*a, const char *tag, const char *type) argument
10352 soap_out_PointerTons1__getNotificationsResponse(struct soap *soap, const char *tag, int id, struct ns1__getNotificationsResponse *const*a, const char *type) argument
10360 soap_get_PointerTons1__getNotificationsResponse(struct soap *soap, struct ns1__getNotificationsResponse **p, const char *tag, const char *type) argument
10368 soap_in_PointerTons1__getNotificationsResponse(struct soap *soap, const char *tag, struct ns1__getNotificationsResponse **a, const char *type) argument
10389 soap_serialize_PointerTons1__getNetworkResponse(struct soap *soap, struct ns1__getNetworkResponse *const*a) argument
10395 soap_put_PointerTons1__getNetworkResponse(struct soap *soap, struct ns1__getNetworkResponse *const*a, const char *tag, const char *type) argument
10403 soap_out_PointerTons1__getNetworkResponse(struct soap *soap, const char *tag, int id, struct ns1__getNetworkResponse *const*a, const char *type) argument
10411 soap_get_PointerTons1__getNetworkResponse(struct soap *soap, struct ns1__getNetworkResponse **p, const char *tag, const char *type) argument
10419 soap_in_PointerTons1__getNetworkResponse(struct soap *soap, const char *tag, struct ns1__getNetworkResponse **a, const char *type) argument
10440 soap_serialize_PointerTons1__getNetworksResponse(struct soap *soap, struct ns1__getNetworksResponse *const*a) argument
10446 soap_put_PointerTons1__getNetworksResponse(struct soap *soap, struct ns1__getNetworksResponse *const*a, const char *tag, const char *type) argument
10454 soap_out_PointerTons1__getNetworksResponse(struct soap *soap, const char *tag, int id, struct ns1__getNetworksResponse *const*a, const char *type) argument
10462 soap_get_PointerTons1__getNetworksResponse(struct soap *soap, struct ns1__getNetworksResponse **p, const char *tag, const char *type) argument
10470 soap_in_PointerTons1__getNetworksResponse(struct soap *soap, const char *tag, struct ns1__getNetworksResponse **a, const char *type) argument
10491 soap_serialize_PointerTons1__leaveNetworkResponse(struct soap *soap, struct ns1__leaveNetworkResponse *const*a) argument
10497 soap_put_PointerTons1__leaveNetworkResponse(struct soap *soap, struct ns1__leaveNetworkResponse *const*a, const char *tag, const char *type) argument
10505 soap_out_PointerTons1__leaveNetworkResponse(struct soap *soap, const char *tag, int id, struct ns1__leaveNetworkResponse *const*a, const char *type) argument
10513 soap_get_PointerTons1__leaveNetworkResponse(struct soap *soap, struct ns1__leaveNetworkResponse **p, const char *tag, const char *type) argument
10521 soap_in_PointerTons1__leaveNetworkResponse(struct soap *soap, const char *tag, struct ns1__leaveNetworkResponse **a, const char *type) argument
10542 soap_serialize_PointerTons1__deleteNetworkMemberResponse(struct soap *soap, struct ns1__deleteNetworkMemberResponse *const*a) argument
10548 soap_put_PointerTons1__deleteNetworkMemberResponse(struct soap *soap, struct ns1__deleteNetworkMemberResponse *const*a, const char *tag, const char *type) argument
10556 soap_out_PointerTons1__deleteNetworkMemberResponse(struct soap *soap, const char *tag, int id, struct ns1__deleteNetworkMemberResponse *const*a, const char *type) argument
10564 soap_get_PointerTons1__deleteNetworkMemberResponse(struct soap *soap, struct ns1__deleteNetworkMemberResponse **p, const char *tag, const char *type) argument
10572 soap_in_PointerTons1__deleteNetworkMemberResponse(struct soap *soap, const char *tag, struct ns1__deleteNetworkMemberResponse **a, const char *type) argument
10593 soap_serialize_PointerTons1__declineNetworkInviteResponse(struct soap *soap, struct ns1__declineNetworkInviteResponse *const*a) argument
10599 soap_put_PointerTons1__declineNetworkInviteResponse(struct soap *soap, struct ns1__declineNetworkInviteResponse *const*a, const char *tag, const char *type) argument
10607 soap_out_PointerTons1__declineNetworkInviteResponse(struct soap *soap, const char *tag, int id, struct ns1__declineNetworkInviteResponse *const*a, const char *type) argument
10615 soap_get_PointerTons1__declineNetworkInviteResponse(struct soap *soap, struct ns1__declineNetworkInviteResponse **p, const char *tag, const char *type) argument
10623 soap_in_PointerTons1__declineNetworkInviteResponse(struct soap *soap, const char *tag, struct ns1__declineNetworkInviteResponse **a, const char *type) argument
10644 soap_serialize_PointerTons1__acceptNetworkInviteResponse(struct soap *soap, struct ns1__acceptNetworkInviteResponse *const*a) argument
10650 soap_put_PointerTons1__acceptNetworkInviteResponse(struct soap *soap, struct ns1__acceptNetworkInviteResponse *const*a, const char *tag, const char *type) argument
10658 soap_out_PointerTons1__acceptNetworkInviteResponse(struct soap *soap, const char *tag, int id, struct ns1__acceptNetworkInviteResponse *const*a, const char *type) argument
10666 soap_get_PointerTons1__acceptNetworkInviteResponse(struct soap *soap, struct ns1__acceptNetworkInviteResponse **p, const char *tag, const char *type) argument
10674 soap_in_PointerTons1__acceptNetworkInviteResponse(struct soap *soap, const char *tag, struct ns1__acceptNetworkInviteResponse **a, const char *type) argument
10695 soap_serialize_PointerTons1__inviteNetworkMemberByUserResponse(struct soap *soap, struct ns1__inviteNetworkMemberByUserResponse *const*a) argument
10701 soap_put_PointerTons1__inviteNetworkMemberByUserResponse(struct soap *soap, struct ns1__inviteNetworkMemberByUserResponse *const*a, const char *tag, const char *type) argument
10709 soap_out_PointerTons1__inviteNetworkMemberByUserResponse(struct soap *soap, const char *tag, int id, struct ns1__inviteNetworkMemberByUserResponse *const*a, const char *type) argument
10717 soap_get_PointerTons1__inviteNetworkMemberByUserResponse(struct soap *soap, struct ns1__inviteNetworkMemberByUserResponse **p, const char *tag, const char *type) argument
10725 soap_in_PointerTons1__inviteNetworkMemberByUserResponse(struct soap *soap, const char *tag, struct ns1__inviteNetworkMemberByUserResponse **a, const char *type) argument
10746 soap_serialize_PointerTons2__User(struct soap *soap, struct ns2__User *const*a) argument
10752 soap_put_PointerTons2__User(struct soap *soap, struct ns2__User *const*a, const char *tag, const char *type) argument
10760 soap_out_PointerTons2__User(struct soap *soap, const char *tag, int id, struct ns2__User *const*a, const char *type) argument
10768 soap_get_PointerTons2__User(struct soap *soap, struct ns2__User **p, const char *tag, const char *type) argument
10776 soap_in_PointerTons2__User(struct soap *soap, const char *tag, struct ns2__User **a, const char *type) argument
10797 soap_serialize_PointerTons1__inviteNetworkMemberByEmailResponse(struct soap *soap, struct ns1__inviteNetworkMemberByEmailResponse *const*a) argument
10803 soap_put_PointerTons1__inviteNetworkMemberByEmailResponse(struct soap *soap, struct ns1__inviteNetworkMemberByEmailResponse *const*a, const char *tag, const char *type) argument
10811 soap_out_PointerTons1__inviteNetworkMemberByEmailResponse(struct soap *soap, const char *tag, int id, struct ns1__inviteNetworkMemberByEmailResponse *const*a, const char *type) argument
10819 soap_get_PointerTons1__inviteNetworkMemberByEmailResponse(struct soap *soap, struct ns1__inviteNetworkMemberByEmailResponse **p, const char *tag, const char *type) argument
10827 soap_in_PointerTons1__inviteNetworkMemberByEmailResponse(struct soap *soap, const char *tag, struct ns1__inviteNetworkMemberByEmailResponse **a, const char *type) argument
10848 soap_serialize_PointerTons1__inviteNetworkMemberResponse(struct soap *soap, struct ns1__inviteNetworkMemberResponse *const*a) argument
10854 soap_put_PointerTons1__inviteNetworkMemberResponse(struct soap *soap, struct ns1__inviteNetworkMemberResponse *const*a, const char *tag, const char *type) argument
10862 soap_out_PointerTons1__inviteNetworkMemberResponse(struct soap *soap, const char *tag, int id, struct ns1__inviteNetworkMemberResponse *const*a, const char *type) argument
10870 soap_get_PointerTons1__inviteNetworkMemberResponse(struct soap *soap, struct ns1__inviteNetworkMemberResponse **p, const char *tag, const char *type) argument
10878 soap_in_PointerTons1__inviteNetworkMemberResponse(struct soap *soap, const char *tag, struct ns1__inviteNetworkMemberResponse **a, const char *type) argument
10899 soap_serialize_PointerTons2__Member(struct soap *soap, struct ns2__Member *const*a) argument
10905 soap_put_PointerTons2__Member(struct soap *soap, struct ns2__Member *const*a, const char *tag, const char *type) argument
10913 soap_out_PointerTons2__Member(struct soap *soap, const char *tag, int id, struct ns2__Member *const*a, const char *type) argument
10921 soap_get_PointerTons2__Member(struct soap *soap, struct ns2__Member **p, const char *tag, const char *type) argument
10929 soap_in_PointerTons2__Member(struct soap *soap, const char *tag, struct ns2__Member **a, const char *type) argument
10950 soap_serialize_PointerTons1__deleteNetworkResponse(struct soap *soap, struct ns1__deleteNetworkResponse *const*a) argument
10956 soap_put_PointerTons1__deleteNetworkResponse(struct soap *soap, struct ns1__deleteNetworkResponse *const*a, const char *tag, const char *type) argument
10964 soap_out_PointerTons1__deleteNetworkResponse(struct soap *soap, const char *tag, int id, struct ns1__deleteNetworkResponse *const*a, const char *type) argument
10972 soap_get_PointerTons1__deleteNetworkResponse(struct soap *soap, struct ns1__deleteNetworkResponse **p, const char *tag, const char *type) argument
10980 soap_in_PointerTons1__deleteNetworkResponse(struct soap *soap, const char *tag, struct ns1__deleteNetworkResponse **a, const char *type) argument
11001 soap_serialize_PointerTons1__addNetworkResponse(struct soap *soap, struct ns1__addNetworkResponse *const*a) argument
11007 soap_put_PointerTons1__addNetworkResponse(struct soap *soap, struct ns1__addNetworkResponse *const*a, const char *tag, const char *type) argument
11015 soap_out_PointerTons1__addNetworkResponse(struct soap *soap, const char *tag, int id, struct ns1__addNetworkResponse *const*a, const char *type) argument
11023 soap_get_PointerTons1__addNetworkResponse(struct soap *soap, struct ns1__addNetworkResponse **p, const char *tag, const char *type) argument
11031 soap_in_PointerTons1__addNetworkResponse(struct soap *soap, const char *tag, struct ns1__addNetworkResponse **a, const char *type) argument
11052 soap_serialize_PointerTons2__Network(struct soap *soap, struct ns2__Network *const*a) argument
11058 soap_put_PointerTons2__Network(struct soap *soap, struct ns2__Network *const*a, const char *tag, const char *type) argument
11066 soap_out_PointerTons2__Network(struct soap *soap, const char *tag, int id, struct ns2__Network *const*a, const char *type) argument
11074 soap_get_PointerTons2__Network(struct soap *soap, struct ns2__Network **p, const char *tag, const char *type) argument
11082 soap_in_PointerTons2__Network(struct soap *soap, const char *tag, struct ns2__Network **a, const char *type) argument
11103 soap_serialize_PointerTons1__lookupContactsResponse(struct soap *soap, struct ns1__lookupContactsResponse *const*a) argument
11109 soap_put_PointerTons1__lookupContactsResponse(struct soap *soap, struct ns1__lookupContactsResponse *const*a, const char *tag, const char *type) argument
11117 soap_out_PointerTons1__lookupContactsResponse(struct soap *soap, const char *tag, int id, struct ns1__lookupContactsResponse *const*a, const char *type) argument
11125 soap_get_PointerTons1__lookupContactsResponse(struct soap *soap, struct ns1__lookupContactsResponse **p, const char *tag, const char *type) argument
11133 soap_in_PointerTons1__lookupContactsResponse(struct soap *soap, const char *tag, struct ns1__lookupContactsResponse **a, const char *type) argument
11154 soap_serialize_PointerTons1__getContactResponse(struct soap *soap, struct ns1__getContactResponse *const*a) argument
11160 soap_put_PointerTons1__getContactResponse(struct soap *soap, struct ns1__getContactResponse *const*a, const char *tag, const char *type) argument
11168 soap_out_PointerTons1__getContactResponse(struct soap *soap, const char *tag, int id, struct ns1__getContactResponse *const*a, const char *type) argument
11176 soap_get_PointerTons1__getContactResponse(struct soap *soap, struct ns1__getContactResponse **p, const char *tag, const char *type) argument
11184 soap_in_PointerTons1__getContactResponse(struct soap *soap, const char *tag, struct ns1__getContactResponse **a, const char *type) argument
11205 soap_serialize_PointerTons1__updateContactResponse(struct soap *soap, struct ns1__updateContactResponse *const*a) argument
11211 soap_put_PointerTons1__updateContactResponse(struct soap *soap, struct ns1__updateContactResponse *const*a, const char *tag, const char *type) argument
11219 soap_out_PointerTons1__updateContactResponse(struct soap *soap, const char *tag, int id, struct ns1__updateContactResponse *const*a, const char *type) argument
11227 soap_get_PointerTons1__updateContactResponse(struct soap *soap, struct ns1__updateContactResponse **p, const char *tag, const char *type) argument
11235 soap_in_PointerTons1__updateContactResponse(struct soap *soap, const char *tag, struct ns1__updateContactResponse **a, const char *type) argument
11256 soap_serialize_PointerTons2__Contact(struct soap *soap, struct ns2__Contact *const*a) argument
11262 soap_put_PointerTons2__Contact(struct soap *soap, struct ns2__Contact *const*a, const char *tag, const char *type) argument
11270 soap_out_PointerTons2__Contact(struct soap *soap, const char *tag, int id, struct ns2__Contact *const*a, const char *type) argument
11278 soap_get_PointerTons2__Contact(struct soap *soap, struct ns2__Contact **p, const char *tag, const char *type) argument
11286 soap_in_PointerTons2__Contact(struct soap *soap, const char *tag, struct ns2__Contact **a, const char *type) argument
11307 soap_serialize_PointerTons1__changePasswordResponse(struct soap *soap, struct ns1__changePasswordResponse *const*a) argument
11313 soap_put_PointerTons1__changePasswordResponse(struct soap *soap, struct ns1__changePasswordResponse *const*a, const char *tag, const char *type) argument
11321 soap_out_PointerTons1__changePasswordResponse(struct soap *soap, const char *tag, int id, struct ns1__changePasswordResponse *const*a, const char *type) argument
11329 soap_get_PointerTons1__changePasswordResponse(struct soap *soap, struct ns1__changePasswordResponse **p, const char *tag, const char *type) argument
11337 soap_in_PointerTons1__changePasswordResponse(struct soap *soap, const char *tag, struct ns1__changePasswordResponse **a, const char *type) argument
11358 soap_serialize_PointerTons1__deleteUserResponse(struct soap *soap, struct ns1__deleteUserResponse *const*a) argument
11364 soap_put_PointerTons1__deleteUserResponse(struct soap *soap, struct ns1__deleteUserResponse *const*a, const char *tag, const char *type) argument
11372 soap_out_PointerTons1__deleteUserResponse(struct soap *soap, const char *tag, int id, struct ns1__deleteUserResponse *const*a, const char *type) argument
11380 soap_get_PointerTons1__deleteUserResponse(struct soap *soap, struct ns1__deleteUserResponse **p, const char *tag, const char *type) argument
11388 soap_in_PointerTons1__deleteUserResponse(struct soap *soap, const char *tag, struct ns1__deleteUserResponse **a, const char *type) argument
11409 soap_serialize_PointerTons1__vrfyLoginResponse(struct soap *soap, struct ns1__vrfyLoginResponse *const*a) argument
11415 soap_put_PointerTons1__vrfyLoginResponse(struct soap *soap, struct ns1__vrfyLoginResponse *const*a, const char *tag, const char *type) argument
11423 soap_out_PointerTons1__vrfyLoginResponse(struct soap *soap, const char *tag, int id, struct ns1__vrfyLoginResponse *const*a, const char *type) argument
11431 soap_get_PointerTons1__vrfyLoginResponse(struct soap *soap, struct ns1__vrfyLoginResponse **p, const char *tag, const char *type) argument
11439 soap_in_PointerTons1__vrfyLoginResponse(struct soap *soap, const char *tag, struct ns1__vrfyLoginResponse **a, const char *type) argument
11460 soap_serialize_PointerToxsd__base64Binary(struct soap *soap, struct xsd__base64Binary *const*a) argument
11466 soap_put_PointerToxsd__base64Binary(struct soap *soap, struct xsd__base64Binary *const*a, const char *tag, const char *type) argument
11474 soap_out_PointerToxsd__base64Binary(struct soap *soap, const char *tag, int id, struct xsd__base64Binary *const*a, const char *type) argument
11482 soap_get_PointerToxsd__base64Binary(struct soap *soap, struct xsd__base64Binary **p, const char *tag, const char *type) argument
11490 soap_in_PointerToxsd__base64Binary(struct soap *soap, const char *tag, struct xsd__base64Binary **a, const char *type) argument
11511 soap_serialize_PointerTotime(struct soap *soap, time_t *const*a) argument
11516 soap_put_PointerTotime(struct soap *soap, time_t *const*a, const char *tag, const char *type) argument
11524 soap_out_PointerTotime(struct soap *soap, const char *tag, int id, time_t *const*a, const char *type) argument
11532 soap_get_PointerTotime(struct soap *soap, time_t **p, const char *tag, const char *type) argument
11540 soap_in_PointerTotime(struct soap *soap, const char *tag, time_t **a, const char *type) argument
11561 soap_serialize_PointerToArrayOf_USCORExsd_USCOREanyType(struct soap *soap, struct ArrayOf_USCORExsd_USCOREanyType *const*a) argument
11567 soap_put_PointerToArrayOf_USCORExsd_USCOREanyType(struct soap *soap, struct ArrayOf_USCORExsd_USCOREanyType *const*a, const char *tag, const char *type) argument
11575 soap_out_PointerToArrayOf_USCORExsd_USCOREanyType(struct soap *soap, const char *tag, int id, struct ArrayOf_USCORExsd_USCOREanyType *const*a, const char *type) argument
11583 soap_get_PointerToArrayOf_USCORExsd_USCOREanyType(struct soap *soap, struct ArrayOf_USCORExsd_USCOREanyType **p, const char *tag, const char *type) argument
11591 soap_in_PointerToArrayOf_USCORExsd_USCOREanyType(struct soap *soap, const char *tag, struct ArrayOf_USCORExsd_USCOREanyType **a, const char *type) argument
11612 soap_serialize_PointerToLONG64(struct soap *soap, LONG64 *const*a) argument
11617 soap_put_PointerToLONG64(struct soap *soap, LONG64 *const*a, const char *tag, const char *type) argument
11625 soap_out_PointerToLONG64(struct soap *soap, const char *tag, int id, LONG64 *const*a, const char *type) argument
11633 soap_get_PointerToLONG64(struct soap *soap, LONG64 **p, const char *tag, const char *type) argument
11641 soap_in_PointerToLONG64(struct soap *soap, const char *tag, LONG64 **a, const char *type) argument
11662 soap_serialize_PointerToint(struct soap *soap, int *const*a) argument
11667 soap_put_PointerToint(struct soap *soap, int *const*a, const char *tag, const char *type) argument
11675 soap_out_PointerToint(struct soap *soap, const char *tag, int id, int *const*a, const char *type) argument
11683 soap_get_PointerToint(struct soap *soap, int **p, const char *tag, const char *type) argument
11691 soap_in_PointerToint(struct soap *soap, const char *tag, int **a, const char *type) argument
11712 soap_serialize_PointerTounsignedByte(struct soap *soap, unsigned char *const*a) argument
11717 soap_put_PointerTounsignedByte(struct soap *soap, unsigned char *const*a, const char *tag, const char *type) argument
11725 soap_out_PointerTounsignedByte(struct soap *soap, const char *tag, int id, unsigned char *const*a, const char *type) argument
11733 soap_get_PointerTounsignedByte(struct soap *soap, unsigned char **p, const char *tag, const char *type) argument
11741 soap_in_PointerTounsignedByte(struct soap *soap, const char *tag, unsigned char **a, const char *type) argument
11762 soap_default__QName(struct soap *soap, char **a) argument
11766 soap_serialize__QName(struct soap *soap, char *const*a) argument
11770 soap_put__QName(struct soap *soap, char *const*a, const char *tag, const char *type) argument
11778 soap_out__QName(struct soap *soap, const char *tag, int id, char *const*a, const char *type) argument
11783 soap_get__QName(struct soap *soap, char **p, const char *tag, const char *type) argument
11791 soap_in__QName(struct soap *soap, const char *tag, char **a, const char *type) argument
11796 soap_default_string(struct soap *soap, char **a) argument
11805 soap_serialize_string(struct soap *soap, char *const*a) argument
11810 soap_put_string(struct soap *soap, char *const*a, const char *tag, const char *type) argument
11818 soap_out_string(struct soap *soap, const char *tag, int id, char *const*a, const char *type) argument
11823 soap_get_string(struct soap *soap, char **p, const char *tag, const char *type) argument
11831 soap_in_string(struct soap *soap, const char *tag, char **a, const char *type) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/extras/
H A Dfault.cpp14 soap_print_fault(struct soap *soap, std::ostream& msg) argument
15 { if (soap->error)
16 { if (!*soap_faultcode(soap))
17 soap_set_fault(soap);
18 if (!*soap_faultstring(soap))
19 *soap_faultstring(soap) = "";
21 << *soap_faultcode(soap) << std::endl
22 << "\"" << *soap_faultstring(soap) << "\"" << std::endl;
23 if (*soap_faultdetail(soap))
33 soap_print_fault_location(struct soap *soap, std::ostream& msg) argument
[all...]
H A Dckdbtest.c26 { struct soap soap; local
28 soap_init(&soap);
29 if (soap_call_ck__demo(&soap, ckserver, NULL, &r))
30 { soap_print_fault(&soap, stderr);
31 soap_print_fault_location(&soap, stderr);
35 if (soap_save_cookies(&soap, "jar.xml"))
37 soap_free_cookies(&soap);
38 if (soap_load_cookies(&soap, "jar.xml"))
41 printf("Got cookies (%s=%s)\n", soap
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/events/
H A Devent.c62 { struct soap soap; local
63 soap_init2(&soap, SOAP_IO_KEEPALIVE, SOAP_IO_KEEPALIVE | SOAP_XML_INDENT);
66 if (soap_send_ns__handle(&soap, event_handler_endpoint, event_handler_action, EVENT_A))
67 soap_print_fault(&soap, stderr);
68 if (synchronous && soap_recv_empty_response(&soap))
69 soap_print_fault(&soap, stderr);
71 if (soap_send_ns__handle(&soap, event_handler_endpoint, event_handler_action, EVENT_B))
72 soap_print_fault(&soap, stderr);
73 if (synchronous && soap_recv_empty_response(&soap))
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/xml-rpc/
H A Dxml-rpc-currentTime.c42 int methodCall(struct soap *soap, const char *URL, struct methodCall *m, struct methodResponse *r);
45 { struct soap *soap = soap_new(); local
53 soap->namespaces = NULL;
55 soap->encodingStyle = NULL;
57 if (methodCall(soap, "http://time.xmlrpc.com/RPC2", &m, &r))
58 { soap_print_fault(soap, stderr);
59 exit(soap->error);
63 soap_begin_send(soap);
80 methodCall(struct soap *soap, const char *URL, struct methodCall *m, struct methodResponse *r) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/extras/
H A Dfault.cpp14 soap_print_fault(struct soap *soap, std::ostream& msg) argument
15 { if (soap->error)
16 { if (!*soap_faultcode(soap))
17 soap_set_fault(soap);
18 if (!*soap_faultstring(soap))
19 *soap_faultstring(soap) = "";
21 << *soap_faultcode(soap) << std::endl
22 << "\"" << *soap_faultstring(soap) << "\"" << std::endl;
23 if (*soap_faultdetail(soap))
33 soap_print_fault_location(struct soap *soap, std::ostream& msg) argument
[all...]
H A Dckdbtest.c26 { struct soap soap; local
28 soap_init(&soap);
29 if (soap_call_ck__demo(&soap, ckserver, NULL, &r))
30 { soap_print_fault(&soap, stderr);
31 soap_print_fault_location(&soap, stderr);
35 if (soap_save_cookies(&soap, "jar.xml"))
37 soap_free_cookies(&soap);
38 if (soap_load_cookies(&soap, "jar.xml"))
41 printf("Got cookies (%s=%s)\n", soap
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/events/
H A Devent.c62 { struct soap soap; local
63 soap_init2(&soap, SOAP_IO_KEEPALIVE, SOAP_IO_KEEPALIVE | SOAP_XML_INDENT);
66 if (soap_send_ns__handle(&soap, event_handler_endpoint, event_handler_action, EVENT_A))
67 soap_print_fault(&soap, stderr);
68 if (synchronous && soap_recv_empty_response(&soap))
69 soap_print_fault(&soap, stderr);
71 if (soap_send_ns__handle(&soap, event_handler_endpoint, event_handler_action, EVENT_B))
72 soap_print_fault(&soap, stderr);
73 if (synchronous && soap_recv_empty_response(&soap))
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/xml-rpc/
H A Dxml-rpc-currentTime.c42 int methodCall(struct soap *soap, const char *URL, struct methodCall *m, struct methodResponse *r);
45 { struct soap *soap = soap_new(); local
53 soap->namespaces = NULL;
55 soap->encodingStyle = NULL;
57 if (methodCall(soap, "http://time.xmlrpc.com/RPC2", &m, &r))
58 { soap_print_fault(soap, stderr);
59 exit(soap->error);
63 soap_begin_send(soap);
80 methodCall(struct soap *soap, const char *URL, struct methodCall *m, struct methodResponse *r) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/httpcookies/
H A Dckclient.cpp56 struct soap soap; local
59 soap_init(&soap);
73 soap.cookie_max = 10;
79 // soap.cookie_domain value is not set in the ckserver code to the host on
83 if (soap_call_ck__demo(&soap, ckserver, NULL, &r))
84 { soap_print_fault(&soap, stderr);
85 soap_print_fault_location(&soap, stderr);
91 if (soap_call_ck__demo(&soap, ckserver, NULL, &r))
92 { soap_print_fault(&soap, stder
[all...]
H A Dckserver.cpp13 Remember to change the soap.cookie_domain value to your host
48 struct soap soap; local
49 soap_init(&soap);
51 soap.cookie_domain = "www.cs.fsu.edu";
53 soap.cookie_path = "/";
56 soap_getenv_cookies(&soap);
57 soap_serve(&soap);
63 m = soap_bind(&soap, NULL, port, 100);
65 { soap_print_fault(&soap, stder
99 ck__demo(struct soap *soap, char **r) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/httpcookies/
H A Dckclient.cpp56 struct soap soap; local
59 soap_init(&soap);
73 soap.cookie_max = 10;
79 // soap.cookie_domain value is not set in the ckserver code to the host on
83 if (soap_call_ck__demo(&soap, ckserver, NULL, &r))
84 { soap_print_fault(&soap, stderr);
85 soap_print_fault_location(&soap, stderr);
91 if (soap_call_ck__demo(&soap, ckserver, NULL, &r))
92 { soap_print_fault(&soap, stder
[all...]
H A Dckserver.cpp13 Remember to change the soap.cookie_domain value to your host
48 struct soap soap; local
49 soap_init(&soap);
51 soap.cookie_domain = "www.cs.fsu.edu";
53 soap.cookie_path = "/";
56 soap_getenv_cookies(&soap);
57 soap_serve(&soap);
63 m = soap_bind(&soap, NULL, port, 100);
65 { soap_print_fault(&soap, stder
99 ck__demo(struct soap *soap, char **r) argument
[all...]

Completed in 227 milliseconds

1234567891011>>