Lines Matching refs:st
83 struct transfer_status *st = (struct transfer_status *)userp; in header_callback() local
87 if(!st->hd_count++) { in header_callback()
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()
105 struct transfer_status *st = (struct transfer_status *)userp; in write_callback() local
108 (void)st; in write_callback()
117 struct transfer_status st; in test() local
121 memset(&st, 0, sizeof(st)); in test()
126 st.easy = curls; /* to allow callbacks access */ in test()
130 easy_setopt(curls, CURLOPT_WRITEDATA, &st); in test()
132 easy_setopt(curls, CURLOPT_HEADERDATA, &st); in test()