Lines Matching refs:current_val
67 …orker(XMLRPC_REQUEST request, XMLRPC_VALUE parent_vector, XMLRPC_VALUE current_val, xml_element* e… in xml_element_to_XMLRPC_REQUEST_worker() argument
68 if (!current_val) { in xml_element_to_XMLRPC_REQUEST_worker()
70 current_val = XMLRPC_CreateValueEmpty(); in xml_element_to_XMLRPC_REQUEST_worker()
78 XMLRPC_SetIsVector(current_val, xmlrpc_vector_struct); in xml_element_to_XMLRPC_REQUEST_worker()
87 xml_element_to_XMLRPC_REQUEST_worker(request, current_val, xNextVal, iter); in xml_element_to_XMLRPC_REQUEST_worker()
88 XMLRPC_AddValueToVector(current_val, xNextVal); in xml_element_to_XMLRPC_REQUEST_worker()
98 XMLRPC_SetIsVector(current_val, xmlrpc_vector_array); in xml_element_to_XMLRPC_REQUEST_worker()
102 xml_element_to_XMLRPC_REQUEST_worker(request, current_val, xNextVal, iter); in xml_element_to_XMLRPC_REQUEST_worker()
103 XMLRPC_AddValueToVector(current_val, xNextVal); in xml_element_to_XMLRPC_REQUEST_worker()
109 XMLRPC_SetIsVector(current_val, xmlrpc_vector_struct); in xml_element_to_XMLRPC_REQUEST_worker()
113 xml_element_to_XMLRPC_REQUEST_worker(request, current_val, xNextVal, iter); in xml_element_to_XMLRPC_REQUEST_worker()
114 XMLRPC_AddValueToVector(current_val, xNextVal); in xml_element_to_XMLRPC_REQUEST_worker()
120 XMLRPC_SetValueString(current_val, el->text.str, el->text.len); in xml_element_to_XMLRPC_REQUEST_worker()
123 XMLRPC_SetValueID_Case(current_val, el->text.str, 0, xmlrpc_case_exact); in xml_element_to_XMLRPC_REQUEST_worker()
126 XMLRPC_SetValueInt(current_val, atoi(el->text.str)); in xml_element_to_XMLRPC_REQUEST_worker()
129 XMLRPC_SetValueBoolean(current_val, atoi(el->text.str)); in xml_element_to_XMLRPC_REQUEST_worker()
132 XMLRPC_SetValueDouble(current_val, atof(el->text.str)); in xml_element_to_XMLRPC_REQUEST_worker()
135 XMLRPC_SetValueDateTime_ISO8601(current_val, el->text.str); in xml_element_to_XMLRPC_REQUEST_worker()
140 XMLRPC_SetValueBase64(current_val, buf.data, buf.offset); in xml_element_to_XMLRPC_REQUEST_worker()
165 current_val, iter); in xml_element_to_XMLRPC_REQUEST_worker()
170 return current_val; in xml_element_to_XMLRPC_REQUEST_worker()