Lines Matching refs:current_val

70 …orker(XMLRPC_REQUEST request, XMLRPC_VALUE parent_vector, XMLRPC_VALUE current_val, xml_element* e…  in xml_element_to_XMLRPC_REQUEST_worker()  argument
71 if (!current_val) { in xml_element_to_XMLRPC_REQUEST_worker()
73 current_val = XMLRPC_CreateValueEmpty(); in xml_element_to_XMLRPC_REQUEST_worker()
81 XMLRPC_SetIsVector(current_val, xmlrpc_vector_struct); in xml_element_to_XMLRPC_REQUEST_worker()
90 xml_element_to_XMLRPC_REQUEST_worker(request, current_val, xNextVal, iter); in xml_element_to_XMLRPC_REQUEST_worker()
91 XMLRPC_AddValueToVector(current_val, xNextVal); in xml_element_to_XMLRPC_REQUEST_worker()
101 XMLRPC_SetIsVector(current_val, xmlrpc_vector_array); in xml_element_to_XMLRPC_REQUEST_worker()
105 xml_element_to_XMLRPC_REQUEST_worker(request, current_val, xNextVal, iter); in xml_element_to_XMLRPC_REQUEST_worker()
106 XMLRPC_AddValueToVector(current_val, xNextVal); in xml_element_to_XMLRPC_REQUEST_worker()
112 XMLRPC_SetIsVector(current_val, xmlrpc_vector_struct); in xml_element_to_XMLRPC_REQUEST_worker()
116 xml_element_to_XMLRPC_REQUEST_worker(request, current_val, xNextVal, iter); in xml_element_to_XMLRPC_REQUEST_worker()
117 XMLRPC_AddValueToVector(current_val, xNextVal); in xml_element_to_XMLRPC_REQUEST_worker()
123 XMLRPC_SetValueString(current_val, el->text.str, el->text.len); in xml_element_to_XMLRPC_REQUEST_worker()
126 XMLRPC_SetValueID_Case(current_val, el->text.str, 0, xmlrpc_case_exact); in xml_element_to_XMLRPC_REQUEST_worker()
129 XMLRPC_SetValueInt(current_val, atoi(el->text.str)); in xml_element_to_XMLRPC_REQUEST_worker()
132 XMLRPC_SetValueBoolean(current_val, atoi(el->text.str)); in xml_element_to_XMLRPC_REQUEST_worker()
135 XMLRPC_SetValueDouble(current_val, atof(el->text.str)); in xml_element_to_XMLRPC_REQUEST_worker()
138 XMLRPC_SetValueDateTime_ISO8601(current_val, el->text.str); in xml_element_to_XMLRPC_REQUEST_worker()
143 XMLRPC_SetValueBase64(current_val, buf.data, buf.offset); in xml_element_to_XMLRPC_REQUEST_worker()
168 current_val, iter); in xml_element_to_XMLRPC_REQUEST_worker()
173 return current_val; in xml_element_to_XMLRPC_REQUEST_worker()