Lines Matching refs:o
38 const struct curl_easyoption *o; in test() local
39 for(o = curl_easy_option_next(NULL); in test()
40 o; in test()
41 o = curl_easy_option_next(o)) { in test()
44 if(curlcheck_long_option(o->id) != in test()
45 (o->type == CURLOT_LONG || o->type == CURLOT_VALUES)) { in test()
46 print_err(o->name, "CURLOT_LONG or CURLOT_VALUES"); in test()
49 if(curlcheck_off_t_option(o->id) != (o->type == CURLOT_OFF_T)) { in test()
50 print_err(o->name, "CURLOT_OFF_T"); in test()
53 if(curlcheck_string_option(o->id) != (o->type == CURLOT_STRING)) { in test()
54 print_err(o->name, "CURLOT_STRING"); in test()
57 if(curlcheck_slist_option(o->id) != (o->type == CURLOT_SLIST)) { in test()
58 print_err(o->name, "CURLOT_SLIST"); in test()
61 if(curlcheck_cb_data_option(o->id) != (o->type == CURLOT_CBPTR)) { in test()
62 print_err(o->name, "CURLOT_CBPTR"); in test()
66 if(curlcheck_write_cb_option(o->id) && (o->type != CURLOT_FUNCTION)) { in test()
67 print_err(o->name, "CURLOT_FUNCTION"); in test()
70 if(curlcheck_conv_cb_option(o->id) && (o->type != CURLOT_FUNCTION)) { in test()
71 print_err(o->name, "CURLOT_FUNCTION"); in test()
74 if(curlcheck_postfields_option(o->id) && (o->type != CURLOT_OBJECT)) { in test()
75 print_err(o->name, "CURLOT_OBJECT"); in test()