Lines Matching refs:easy
31 CURL *easy; member
56 static void check_time(CURL *easy, int key, const char *name, in check_time() argument
60 CURLcode res = curl_easy_getinfo(easy, (CURLINFO)key, &tval); in check_time()
68 static void check_time0(CURL *easy, int key, const char *name, in check_time0() argument
72 CURLcode res = curl_easy_getinfo(easy, (CURLINFO)key, &tval); in check_time0()
89 check_time(st->easy, KN(CURLINFO_CONNECT_TIME_T), "1st header"); in header_callback()
90 check_time(st->easy, KN(CURLINFO_PRETRANSFER_TIME_T), "1st header"); in header_callback()
91 check_time(st->easy, KN(CURLINFO_STARTTRANSFER_TIME_T), "1st header"); in header_callback()
93 check_time(st->easy, KN(CURLINFO_TOTAL_TIME_T), "1st header"); in header_callback()
95 check_time0(st->easy, KN(CURLINFO_APPCONNECT_TIME_T), "1st header"); in header_callback()
97 check_time0(st->easy, KN(CURLINFO_SPEED_DOWNLOAD_T), "1st header"); in header_callback()
126 st.easy = curls; /* to allow callbacks access */ in test()