Lines Matching defs:Progress
1088 struct Progress { struct
1089 time_t lastshow; /* time() of the last displayed progress meter or NULL to
1091 curl_off_t size_dl; /* total expected size */
1092 curl_off_t size_ul; /* total expected size */
1093 curl_off_t downloaded; /* transferred so far */
1094 curl_off_t uploaded; /* transferred so far */
1096 curl_off_t current_speed; /* uses the currently fastest transfer */
1098 int width; /* screen width at download start */
1099 int flags; /* see progress.h */
1101 time_t timespent;
1103 curl_off_t dlspeed;
1104 curl_off_t ulspeed;
1106 time_t t_nslookup;
1107 time_t t_connect;
1108 time_t t_appconnect;
1109 time_t t_pretransfer;
1110 time_t t_starttransfer;
1111 time_t t_redirect;
1113 struct curltime start;
1114 struct curltime t_startsingle;
1115 struct curltime t_startop;
1116 struct curltime t_acceptdata;
1120 struct curltime ul_limit_start;
1121 curl_off_t ul_limit_size;
1123 struct curltime dl_limit_start;
1124 curl_off_t dl_limit_size;
1128 curl_off_t speeder[ CURR_TIME ];
1129 struct curltime speeder_time[ CURR_TIME ];
1130 int speeder_c;
1131 bit callback:1; /* set when progress callback is used */
1132 bit is_t_startransfer_set:1;