• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/

Lines Matching refs:head

755       for(e = multi->msglist->head; e; e = e->next) {
1505 /* expire the new receiving pipeline head */
1506 if(easy->easy_conn->recv_pipe->head)
1507 Curl_expire(easy->easy_conn->recv_pipe->head->ptr, 1);
1865 /* extract the head of the list to return */
1866 e = multi->msglist->head;
1987 entry->easy = easy_conn->recv_pipe->head->next->ptr;
1989 entry->easy = easy_conn->recv_pipe->head->ptr;
2001 entry->easy = easy_conn->send_pipe->head->next->ptr;
2003 entry->easy = easy_conn->send_pipe->head->ptr;
2006 /* Don't worry about overwriting recv_pipe head with send_pipe_head,
2008 head of the correct pipe will be taken according to the
2057 for(e = list->head; e; ) {
2075 e = list->head;
2136 /* If the pipeline is enabled, take the handle which is in the head of
2138 head. If we should read from the socket, take the recv_pipe head. */
2142 data->set.one_easy->easy_conn->send_pipe->head)
2143 data = data->set.one_easy->easy_conn->send_pipe->head->ptr;
2146 data->set.one_easy->easy_conn->recv_pipe->head)
2147 data = data->set.one_easy->easy_conn->recv_pipe->head->ptr;
2378 struct curl_llist_element *sendhead = conn->send_pipe->head;
2395 if(pipeline == conn->send_pipe && sendhead != conn->send_pipe->head) {
2396 /* this is a new one as head, expire it */
2399 infof(conn->data, "%p is at send pipe head!\n",
2400 conn->send_pipe->head->ptr);
2402 Curl_expire(conn->send_pipe->head->ptr, 1);
2411 struct curl_llist_element *sendhead = conn->send_pipe->head;
2415 struct curl_llist_element *curr = conn->pend_pipe->head;
2424 curr = conn->pend_pipe->head;
2432 if(sendhead != conn->send_pipe->head) {
2433 /* this is a new one as head, expire it */
2436 infof(conn->data, "%p is at send pipe head!\n",
2437 conn->send_pipe->head->ptr);
2439 Curl_expire(conn->send_pipe->head->ptr, 1);
2457 curr = conn->send_pipe->head;
2463 if(conn->send_pipe->head) {
2468 infof(conn->data, "%p is at send pipe head B!\n",
2469 conn->send_pipe->head->ptr);
2471 Curl_expire(conn->send_pipe->head->ptr, 1);
2489 curr = conn->recv_pipe->head;
2502 struct curl_llist_element *curr = pipeline->head;
2526 * Add a timestamp to the list of timeouts. Keep the list sorted so that head
2547 for(e = timeoutlist->head; e; e = e->next) {
2574 * moment in time that is later than the current head of queue.
2638 to the queue and update the head */