Searched refs:attr_iter (Results 1 – 3 of 3) sorted by relevance
/PHP-5.6/ext/xmlrpc/libxmlrpc/ |
H A D | xmlrpc_introspection.c | 322 while(attr_iter) { in xml_element_to_method_description() 323 if(!strcmp(attr_iter->key, "name")) { in xml_element_to_method_description() 324 name = attr_iter->val; in xml_element_to_method_description() 326 else if(!strcmp(attr_iter->key, "type")) { in xml_element_to_method_description() 327 type = attr_iter->val; in xml_element_to_method_description() 330 basetype = attr_iter->val; in xml_element_to_method_description() 332 else if(!strcmp(attr_iter->key, "desc")) { in xml_element_to_method_description() 333 desc = attr_iter->val; in xml_element_to_method_description() 336 if(attr_iter->val && !strcmp(attr_iter->val, "yes")) { in xml_element_to_method_description() 341 def = attr_iter->val; in xml_element_to_method_description() [all …]
|
H A D | xml_to_soap.c | 253 xml_element_attr* attr_iter = Q_Head(&el->attrs); in xml_element_to_SOAP_REQUEST_worker() local 269 while (attr_iter) { in xml_element_to_SOAP_REQUEST_worker() 271 if (!strcmp(attr_iter->key, TOKEN_TYPE)) { in xml_element_to_SOAP_REQUEST_worker() 272 type = attr_iter->val; in xml_element_to_SOAP_REQUEST_worker() 275 else if (!strcmp(attr_iter->key, TOKEN_ARRAY_TYPE)) { in xml_element_to_SOAP_REQUEST_worker() 276 arrayType = attr_iter->val; in xml_element_to_SOAP_REQUEST_worker() 279 else if (!strcmp(attr_iter->key, TOKEN_MUSTUNDERSTAND)) { in xml_element_to_SOAP_REQUEST_worker() 280 b_must_understand = strchr(attr_iter->val, '1') ? 1 : 0; in xml_element_to_SOAP_REQUEST_worker() 283 else if (!strcmp(attr_iter->key, TOKEN_ACTOR)) { in xml_element_to_SOAP_REQUEST_worker() 284 actor = attr_iter->val; in xml_element_to_SOAP_REQUEST_worker() [all …]
|
H A D | xml_to_dandarpc.c | 73 xml_element_attr* attr_iter = Q_Head(&el->attrs); in xml_element_to_DANDARPC_REQUEST_worker() local 75 while(attr_iter) { in xml_element_to_DANDARPC_REQUEST_worker() 76 if(!strcmp(attr_iter->key, ATTR_ID)) { in xml_element_to_DANDARPC_REQUEST_worker() 77 id = attr_iter->val; in xml_element_to_DANDARPC_REQUEST_worker() 79 if(!strcmp(attr_iter->key, ATTR_TYPE)) { in xml_element_to_DANDARPC_REQUEST_worker() 80 type = attr_iter->val; in xml_element_to_DANDARPC_REQUEST_worker() 82 attr_iter = Q_Next(&el->attrs); in xml_element_to_DANDARPC_REQUEST_worker()
|
Completed in 16 milliseconds