Lines Matching refs:type

417 																  XMLRPC_REQUEST_TYPE type) {  in XMLRPC_RequestSetRequestType()  argument
419 request->request_type = type; in XMLRPC_RequestSetRequestType()
866 v->type = xmlrpc_empty; in XMLRPC_CreateValueEmpty()
956 value->type = xmlrpc_string; in XMLRPC_SetValueString()
984 value->type = xmlrpc_int; in XMLRPC_SetValueInt()
1010 value->type = xmlrpc_boolean; in XMLRPC_SetValueBoolean()
1040 int XMLRPC_SetIsVector(XMLRPC_VALUE value, XMLRPC_VECTOR_TYPE type) { in XMLRPC_SetIsVector() argument
1045 if(value->type == xmlrpc_vector) { in XMLRPC_SetIsVector()
1048 value->v->type = type; in XMLRPC_SetIsVector()
1058 value->v->type = type; in XMLRPC_SetIsVector()
1059 value->type = xmlrpc_vector; in XMLRPC_SetIsVector()
1093 XMLRPC_VALUE XMLRPC_CreateVector(const char* id, XMLRPC_VECTOR_TYPE type) { in XMLRPC_CreateVector() argument
1098 if(XMLRPC_SetIsVector(val, type)) { in XMLRPC_CreateVector()
1154 if(target->type == xmlrpc_vector && target->v && in XMLRPC_AddValueToVector()
1155 target->v->q && target->v->type != xmlrpc_vector_none) { in XMLRPC_AddValueToVector()
1158 switch(source->type) { in XMLRPC_AddValueToVector()
1168 if( !(source->id.len && target->v->type == xmlrpc_vector_array) ) { in XMLRPC_AddValueToVector()
1219 if(target->type == xmlrpc_vector) { in XMLRPC_AddValuesToVector()
1458 if(value->type == xmlrpc_vector) { in XMLRPC_CleanupValue()
1487 switch(value->type) { in XMLRPC_CleanupValue()
1544 value->type = xmlrpc_datetime; in XMLRPC_SetValueDateTime()
1630 switch (xSource->type) { in XMLRPC_DupValueNew()
1648 XMLRPC_SetIsVector (xReturn, xSource->v->type); in XMLRPC_DupValueNew()
1728 value->type = xmlrpc_datetime; in XMLRPC_SetValueDateTime_ISO8601()
1801 value->type = xmlrpc_base64; in XMLRPC_SetValueBase64()
1862 value->type = xmlrpc_double; in XMLRPC_SetValueDouble()
1918 return ((value && value->type == xmlrpc_string) ? value->str.str : 0); in XMLRPC_GetValueString()
1965 return ((value && value->type == xmlrpc_int) ? value->i : 0); in XMLRPC_GetValueInt()
1989 return ((value && value->type == xmlrpc_boolean) ? value->i : 0); in XMLRPC_GetValueBoolean()
2013 return ((value && value->type == xmlrpc_double) ? value->d : 0); in XMLRPC_GetValueDouble()
2038 return ((value && value->type == xmlrpc_base64) ? value->str.str : 0); in XMLRPC_GetValueBase64()
2063 return (time_t)((value && value->type == xmlrpc_datetime) ? value->i : 0); in XMLRPC_GetValueDateTime()
2086 return ((value && value->type == xmlrpc_datetime) ? value->str.str : 0); in XMLRPC_GetValueDateTime_ISO8601()
2136 if(value && value->type == xmlrpc_vector && value->v) { in XMLRPC_VectorSize()
2164 if(value && value->type == xmlrpc_vector && value->v) { in XMLRPC_VectorRewind()
2190 if(value && value->type == xmlrpc_vector && value->v) { in XMLRPC_VectorNext()
2220 return value ? value->type : xmlrpc_empty; in XMLRPC_GetValueType()
2248 return(value && value->v) ? value->v->type : xmlrpc_none; in XMLRPC_GetVectorType()
2275 switch (value->type) { in XMLRPC_GetValueTypeEasy()
2277 switch (value->v->type) { in XMLRPC_GetValueTypeEasy()
2289 return(XMLRPC_VALUE_TYPE_EASY) value->type; in XMLRPC_GetValueTypeEasy()
2468 const char* type_to_str(XMLRPC_VALUE_TYPE type, XMLRPC_VECTOR_TYPE vtype) { in type_to_str() argument
2469 switch(type) { in type_to_str()