Lines Matching defs:check
278 struct Curl_sh_entry *check;
286 check = calloc(1, sizeof(struct Curl_sh_entry));
287 if(!check)
290 Curl_hash_init(&check->transfers, TRHASH_SIZE, trhash, trhash_compare,
294 if(!Curl_hash_add(sh, (char *)&s, sizeof(curl_socket_t), check)) {
295 Curl_hash_destroy(&check->transfers);
296 free(check);
300 return check; /* things are good in sockhash land */
554 is removed as when the next handle is added, as then the check in
1280 calculation needs a integer overflow check. */
1374 pollrc = Curl_poll(ufds, nfds, 0); /* just pre-check with WinSock */
1387 else { /* now wait... if not ready during the pre-check (pollrc == 0) */
1945 DEBUGF(infof(data, "multi changed, check CONNECT_PEND queue"));
1964 * to check the timeout (e.g. process descheduled during this loop).
1968 stored, but we must not check already completed handles */
2060 /* check if we have the name resolved by now */
2454 /* check if over send speed */
2463 /* check if over recv speed */
2573 /* but first check to see if we got a location info even though we're
2655 * loop iteration. We only check this on the last iteration to ensure
2963 /* check if new for this transfer */
3290 /* get the socket(s) and check if the state has been changed since
3509 * timeout we got the (relative) time-out time for. We can thus easily check
3575 struct time_node *check = (struct time_node *)e->ptr;
3576 timediff_t diff = Curl_timediff(check->time, node->time);