Lines Matching refs:XMLRPC_VALUE

67 static XMLRPC_VALUE xi_system_describe_methods_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void*…
68 static XMLRPC_VALUE xi_system_list_methods_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* use…
69 static XMLRPC_VALUE xi_system_method_signature_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void*…
70 static XMLRPC_VALUE xi_system_method_help_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* user…
80 static inline XMLRPC_VALUE find_named_value(XMLRPC_VALUE list, const char* needle) { in find_named_value()
81 XMLRPC_VALUE xIter = XMLRPC_VectorRewind(list); in find_named_value()
110 static inline void describe_method(XMLRPC_SERVER server, XMLRPC_VALUE vector, const char* method) { in describe_method()
122 static XMLRPC_VALUE xi_system_describe_methods_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void*… in xi_system_describe_methods_cb()
123 XMLRPC_VALUE xParams = XMLRPC_VectorRewind(XMLRPC_RequestGetData(input)); in xi_system_describe_methods_cb()
124 XMLRPC_VALUE xResponse = XMLRPC_CreateVector(NULL, xmlrpc_vector_struct); in xi_system_describe_methods_cb()
125 XMLRPC_VALUE xMethodList = XMLRPC_CreateVector("methodList", xmlrpc_vector_array); in xi_system_describe_methods_cb()
126 XMLRPC_VALUE xTypeList = NULL; in xi_system_describe_methods_cb()
148 XMLRPC_VALUE xIter = XMLRPC_VectorRewind(xParams); in xi_system_describe_methods_cb()
173 static XMLRPC_VALUE xi_system_list_methods_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* use… in xi_system_list_methods_cb()
174 XMLRPC_VALUE xResponse = XMLRPC_CreateVector(NULL, xmlrpc_vector_array); in xi_system_list_methods_cb()
190 static XMLRPC_VALUE xi_system_method_signature_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void*… in xi_system_method_signature_cb()
192 XMLRPC_VALUE xResponse = NULL; in xi_system_method_signature_cb()
200 XMLRPC_VALUE xTypesArray = XMLRPC_CreateVector(NULL, xmlrpc_vector_array); in xi_system_method_signature_cb()
201 XMLRPC_VALUE xIter, xParams, xSig, xSigIter; in xi_system_method_signature_cb()
249 static XMLRPC_VALUE xi_system_method_help_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* user… in xi_system_method_help_cb()
251 XMLRPC_VALUE xResponse = NULL; in xi_system_method_help_cb()
287 static XMLRPC_VALUE describeValue_worker(const char* type, const char* id, const char* desc, int op… in describeValue_worker()
288 XMLRPC_VALUE xParam = NULL; in describeValue_worker()
309 XMLRPC_VALUE xml_element_to_method_description(xml_element* el, XMLRPC_ERROR err) { in xml_element_to_method_description()
310 XMLRPC_VALUE xReturn = NULL; in xml_element_to_method_description()
348 XMLRPC_VALUE xSubList = NULL; in xml_element_to_method_description()
458 XMLRPC_VALUE XMLRPC_IntrospectionCreateDescription(const char* xml, XMLRPC_ERROR err) { in XMLRPC_IntrospectionCreateDescription()
459 XMLRPC_VALUE xReturn = NULL; in XMLRPC_IntrospectionCreateDescription()
500 int XMLRPC_ServerAddIntrospectionData(XMLRPC_SERVER server, XMLRPC_VALUE desc) { in XMLRPC_ServerAddIntrospectionData()
503 XMLRPC_VALUE xNewTypes = XMLRPC_VectorGetValueWithID(desc, "typeList"); in XMLRPC_ServerAddIntrospectionData()
504 XMLRPC_VALUE xNewMethods = XMLRPC_VectorGetValueWithID(desc, "methodList"); in XMLRPC_ServerAddIntrospectionData()
505 XMLRPC_VALUE xServerTypes = XMLRPC_VectorGetValueWithID(server->xIntrospection, "typeList"); in XMLRPC_ServerAddIntrospectionData()
508 XMLRPC_VALUE xMethod = XMLRPC_VectorRewind(xNewMethods); in XMLRPC_ServerAddIntrospectionData()
535 XMLRPC_VALUE xIter = XMLRPC_VectorRewind(xNewTypes); in XMLRPC_ServerAddIntrospectionData()
538XMLRPC_VALUE xPrev = find_named_value(xServerTypes, XMLRPC_VectorGetStringWithID(xIter, xi_token_n… in XMLRPC_ServerAddIntrospectionData()