Lines Matching refs:XMLRPC_VALUE

64 static XMLRPC_VALUE xi_system_describe_methods_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void*…
65 static XMLRPC_VALUE xi_system_list_methods_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* use…
66 static XMLRPC_VALUE xi_system_method_signature_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void*…
67 static XMLRPC_VALUE xi_system_method_help_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* user…
77 static inline XMLRPC_VALUE find_named_value(XMLRPC_VALUE list, const char* needle) { in find_named_value()
78 XMLRPC_VALUE xIter = XMLRPC_VectorRewind(list); in find_named_value()
107 static inline void describe_method(XMLRPC_SERVER server, XMLRPC_VALUE vector, const char* method) { in describe_method()
119 static XMLRPC_VALUE xi_system_describe_methods_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void*… in xi_system_describe_methods_cb()
120 XMLRPC_VALUE xParams = XMLRPC_VectorRewind(XMLRPC_RequestGetData(input)); in xi_system_describe_methods_cb()
121 XMLRPC_VALUE xResponse = XMLRPC_CreateVector(NULL, xmlrpc_vector_struct); in xi_system_describe_methods_cb()
122 XMLRPC_VALUE xMethodList = XMLRPC_CreateVector("methodList", xmlrpc_vector_array); in xi_system_describe_methods_cb()
123 XMLRPC_VALUE xTypeList = NULL; in xi_system_describe_methods_cb()
145 XMLRPC_VALUE xIter = XMLRPC_VectorRewind(xParams); in xi_system_describe_methods_cb()
170 static XMLRPC_VALUE xi_system_list_methods_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* use… in xi_system_list_methods_cb()
171 XMLRPC_VALUE xResponse = XMLRPC_CreateVector(NULL, xmlrpc_vector_array); in xi_system_list_methods_cb()
187 static XMLRPC_VALUE xi_system_method_signature_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void*… in xi_system_method_signature_cb()
189 XMLRPC_VALUE xResponse = NULL; in xi_system_method_signature_cb()
197 XMLRPC_VALUE xTypesArray = XMLRPC_CreateVector(NULL, xmlrpc_vector_array); in xi_system_method_signature_cb()
198 XMLRPC_VALUE xIter, xParams, xSig, xSigIter; in xi_system_method_signature_cb()
246 static XMLRPC_VALUE xi_system_method_help_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* user… in xi_system_method_help_cb()
248 XMLRPC_VALUE xResponse = NULL; in xi_system_method_help_cb()
284 static XMLRPC_VALUE describeValue_worker(const char* type, const char* id, const char* desc, int op… in describeValue_worker()
285 XMLRPC_VALUE xParam = NULL; in describeValue_worker()
306 XMLRPC_VALUE xml_element_to_method_description(xml_element* el, XMLRPC_ERROR err) { in xml_element_to_method_description()
307 XMLRPC_VALUE xReturn = NULL; in xml_element_to_method_description()
345 XMLRPC_VALUE xSubList = NULL; in xml_element_to_method_description()
455 XMLRPC_VALUE XMLRPC_IntrospectionCreateDescription(const char* xml, XMLRPC_ERROR err) { in XMLRPC_IntrospectionCreateDescription()
456 XMLRPC_VALUE xReturn = NULL; in XMLRPC_IntrospectionCreateDescription()
497 int XMLRPC_ServerAddIntrospectionData(XMLRPC_SERVER server, XMLRPC_VALUE desc) { in XMLRPC_ServerAddIntrospectionData()
500 XMLRPC_VALUE xNewTypes = XMLRPC_VectorGetValueWithID(desc, "typeList"); in XMLRPC_ServerAddIntrospectionData()
501 XMLRPC_VALUE xNewMethods = XMLRPC_VectorGetValueWithID(desc, "methodList"); in XMLRPC_ServerAddIntrospectionData()
502 XMLRPC_VALUE xServerTypes = XMLRPC_VectorGetValueWithID(server->xIntrospection, "typeList"); in XMLRPC_ServerAddIntrospectionData()
505 XMLRPC_VALUE xMethod = XMLRPC_VectorRewind(xNewMethods); in XMLRPC_ServerAddIntrospectionData()
532 XMLRPC_VALUE xIter = XMLRPC_VectorRewind(xNewTypes); in XMLRPC_ServerAddIntrospectionData()
535XMLRPC_VALUE xPrev = find_named_value(xServerTypes, XMLRPC_VectorGetStringWithID(xIter, xi_token_n… in XMLRPC_ServerAddIntrospectionData()