Lines Matching refs:name

83       const char* name = XMLRPC_VectorGetStringWithID(xIter, xi_token_name);  in find_named_value()  local
84 if(name && !strcmp(name, needle)) { in find_named_value()
180 XMLRPC_VectorAppendString(xResponse, 0, sm->name, 0); in xi_system_list_methods_cb()
312 if(el->name) { in xml_element_to_method_description()
313 const char* name = NULL; in xml_element_to_method_description() local
324 name = attr_iter->val; in xml_element_to_method_description()
347 if(!strcmp(el->name, "value") || !strcmp(el->name, "typeDescription")) { in xml_element_to_method_description()
349 const char* ptype = !strcmp(el->name, "value") ? type : basetype; in xml_element_to_method_description()
364 …xReturn = describeValue_worker(ptype, name, (desc ? desc : (xSubList ? NULL : el->text.str)), opti… in xml_element_to_method_description()
369 else if(!strcmp(el->name, "params") || in xml_element_to_method_description()
370 !strcmp(el->name, "returns") || in xml_element_to_method_description()
371 !strcmp(el->name, "signature")) { in xml_element_to_method_description()
374 …xReturn = XMLRPC_CreateVector(!strcmp(el->name, "signature") ? NULL : el->name, xmlrpc_vector_stru… in xml_element_to_method_description()
386 else if(!strcmp(el->name, "methodDescription")) { in xml_element_to_method_description()
390 XMLRPC_VectorAppendString(xReturn, xi_token_name, name, 0); in xml_element_to_method_description()
400 else if(!strcmp(el->name, "item")) { in xml_element_to_method_description()
401 xReturn = XMLRPC_CreateValueString(name, el->text.str, el->text.len); in xml_element_to_method_description()
407 xReturn = XMLRPC_CreateVector(el->name, xmlrpc_vector_mixed); in xml_element_to_method_description()
419 else if(el->name && el->text.len) { in xml_element_to_method_description()
420 xReturn = XMLRPC_CreateValueString(el->name, el->text.str, el->text.len); in xml_element_to_method_description()
511 const char* name = XMLRPC_VectorGetStringWithID(xMethod, xi_token_name); in XMLRPC_ServerAddIntrospectionData() local
512 server_method* sm = find_method(server, name); in XMLRPC_ServerAddIntrospectionData()