Lines Matching refs:sm
109 server_method* sm = find_method(server, method); in describe_method() local
110 if(sm) { in describe_method()
111 XMLRPC_AddValueToVector(vector, sm->desc); in describe_method()
158 server_method* sm = Q_Iter_Get_F(qi); in xi_system_describe_methods_cb() local
159 if(sm) { in xi_system_describe_methods_cb()
160 XMLRPC_AddValueToVector(xMethodList, sm->desc); in xi_system_describe_methods_cb()
175 server_method* sm = Q_Iter_Get_F(qi); in xi_system_list_methods_cb() local
176 if(sm) { in xi_system_list_methods_cb()
177 XMLRPC_VectorAppendString(xResponse, 0, sm->name, 0); in xi_system_list_methods_cb()
195 server_method* sm = find_method(server, method); in xi_system_method_signature_cb() local
196 if(sm && sm->desc) { in xi_system_method_signature_cb()
205 xSig = XMLRPC_VectorGetValueWithID(sm->desc, xi_token_signatures); in xi_system_method_signature_cb()
254 server_method* sm = find_method(server, method); in xi_system_method_help_cb() local
255 if(sm && sm->desc) { in xi_system_method_help_cb()
256 const char* help = XMLRPC_VectorGetStringWithID(sm->desc, xi_token_purpose); in xi_system_method_help_cb()
509 server_method* sm = find_method(server, name); in XMLRPC_ServerAddIntrospectionData() local
511 if(sm) { in XMLRPC_ServerAddIntrospectionData()
512 if(sm->desc) { in XMLRPC_ServerAddIntrospectionData()
513 XMLRPC_CleanupValue(sm->desc); in XMLRPC_ServerAddIntrospectionData()
515 sm->desc = XMLRPC_CopyValue(xMethod); in XMLRPC_ServerAddIntrospectionData()