Lines Matching refs:current_val

65 …orker(XMLRPC_REQUEST request, XMLRPC_VALUE parent_vector, XMLRPC_VALUE current_val, xml_element* e…  in xml_element_to_XMLRPC_REQUEST_worker()  argument
66 if (!current_val) { in xml_element_to_XMLRPC_REQUEST_worker()
68 current_val = XMLRPC_CreateValueEmpty(); in xml_element_to_XMLRPC_REQUEST_worker()
76 XMLRPC_SetIsVector(current_val, xmlrpc_vector_struct); in xml_element_to_XMLRPC_REQUEST_worker()
85 xml_element_to_XMLRPC_REQUEST_worker(request, current_val, xNextVal, iter); in xml_element_to_XMLRPC_REQUEST_worker()
86 XMLRPC_AddValueToVector(current_val, xNextVal); in xml_element_to_XMLRPC_REQUEST_worker()
96 XMLRPC_SetIsVector(current_val, xmlrpc_vector_array); in xml_element_to_XMLRPC_REQUEST_worker()
100 xml_element_to_XMLRPC_REQUEST_worker(request, current_val, xNextVal, iter); in xml_element_to_XMLRPC_REQUEST_worker()
101 XMLRPC_AddValueToVector(current_val, xNextVal); in xml_element_to_XMLRPC_REQUEST_worker()
107 XMLRPC_SetIsVector(current_val, xmlrpc_vector_struct); in xml_element_to_XMLRPC_REQUEST_worker()
111 xml_element_to_XMLRPC_REQUEST_worker(request, current_val, xNextVal, iter); in xml_element_to_XMLRPC_REQUEST_worker()
112 XMLRPC_AddValueToVector(current_val, xNextVal); in xml_element_to_XMLRPC_REQUEST_worker()
118 XMLRPC_SetValueString(current_val, el->text.str, el->text.len); in xml_element_to_XMLRPC_REQUEST_worker()
121 XMLRPC_SetValueID_Case(current_val, el->text.str, 0, xmlrpc_case_exact); in xml_element_to_XMLRPC_REQUEST_worker()
124 XMLRPC_SetValueInt(current_val, atoi(el->text.str)); in xml_element_to_XMLRPC_REQUEST_worker()
127 XMLRPC_SetValueBoolean(current_val, atoi(el->text.str)); in xml_element_to_XMLRPC_REQUEST_worker()
130 XMLRPC_SetValueDouble(current_val, atof(el->text.str)); in xml_element_to_XMLRPC_REQUEST_worker()
133 XMLRPC_SetValueDateTime_ISO8601(current_val, el->text.str); in xml_element_to_XMLRPC_REQUEST_worker()
138 XMLRPC_SetValueBase64(current_val, buf.data, buf.offset); in xml_element_to_XMLRPC_REQUEST_worker()
163 current_val, iter); in xml_element_to_XMLRPC_REQUEST_worker()
168 return current_val; in xml_element_to_XMLRPC_REQUEST_worker()