Lines Matching refs:attr_iter
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()
286 attr_iter = Q_Next(&el->attrs); in xml_element_to_SOAP_REQUEST_worker()