Home
last modified time | relevance | path

Searched refs:attr_iter (Results 1 – 3 of 3) sorted by relevance

/PHP-7.4/ext/xmlrpc/libxmlrpc/
H A Dxmlrpc_introspection.c319 while(attr_iter) { in xml_element_to_method_description()
320 if(!strcmp(attr_iter->key, "name")) { in xml_element_to_method_description()
321 name = attr_iter->val; in xml_element_to_method_description()
323 else if(!strcmp(attr_iter->key, "type")) { in xml_element_to_method_description()
324 type = attr_iter->val; in xml_element_to_method_description()
327 basetype = attr_iter->val; in xml_element_to_method_description()
329 else if(!strcmp(attr_iter->key, "desc")) { in xml_element_to_method_description()
330 desc = attr_iter->val; in xml_element_to_method_description()
333 if(attr_iter->val && !strcmp(attr_iter->val, "yes")) { in xml_element_to_method_description()
338 def = attr_iter->val; in xml_element_to_method_description()
[all …]
H A Dxml_to_soap.c248 xml_element_attr* attr_iter = Q_Head(&el->attrs); in xml_element_to_SOAP_REQUEST_worker() local
264 while (attr_iter) { in xml_element_to_SOAP_REQUEST_worker()
266 if (!strcmp(attr_iter->key, TOKEN_TYPE)) { in xml_element_to_SOAP_REQUEST_worker()
267 type = attr_iter->val; in xml_element_to_SOAP_REQUEST_worker()
270 else if (!strcmp(attr_iter->key, TOKEN_ARRAY_TYPE)) { in xml_element_to_SOAP_REQUEST_worker()
271 arrayType = attr_iter->val; in xml_element_to_SOAP_REQUEST_worker()
274 else if (!strcmp(attr_iter->key, TOKEN_MUSTUNDERSTAND)) { in xml_element_to_SOAP_REQUEST_worker()
275 b_must_understand = strchr(attr_iter->val, '1') ? 1 : 0; in xml_element_to_SOAP_REQUEST_worker()
278 else if (!strcmp(attr_iter->key, TOKEN_ACTOR)) { in xml_element_to_SOAP_REQUEST_worker()
279 actor = attr_iter->val; in xml_element_to_SOAP_REQUEST_worker()
[all …]
H A Dxml_to_dandarpc.c70 xml_element_attr* attr_iter = Q_Head(&el->attrs); in xml_element_to_DANDARPC_REQUEST_worker() local
72 while(attr_iter) { in xml_element_to_DANDARPC_REQUEST_worker()
73 if(!strcmp(attr_iter->key, ATTR_ID)) { in xml_element_to_DANDARPC_REQUEST_worker()
74 id = attr_iter->val; in xml_element_to_DANDARPC_REQUEST_worker()
76 if(!strcmp(attr_iter->key, ATTR_TYPE)) { in xml_element_to_DANDARPC_REQUEST_worker()
77 type = attr_iter->val; in xml_element_to_DANDARPC_REQUEST_worker()
79 attr_iter = Q_Next(&el->attrs); in xml_element_to_DANDARPC_REQUEST_worker()

Completed in 19 milliseconds