Lines Matching refs:out

51     nxt_buf_t *out);
53 nxt_buf_t *out);
102 static void nxt_h1p_peer_body_process(nxt_task_t *task, nxt_http_peer_t *peer, nxt_buf_t *out);
1465 nxt_h1p_request_send(nxt_task_t *task, nxt_http_request_t *r, nxt_buf_t *out) in nxt_h1p_request_send() argument
1476 out = nxt_h1p_chunk_create(task, r, out); in nxt_h1p_request_send()
1477 if (nxt_slow_path(out == NULL)) { in nxt_h1p_request_send()
1484 c->write = out; in nxt_h1p_request_send()
1490 *h1p->conn_write_tail = out; in nxt_h1p_request_send()
1493 while (out->next != NULL) { in nxt_h1p_request_send()
1494 out = out->next; in nxt_h1p_request_send()
1497 h1p->conn_write_tail = &out->next; in nxt_h1p_request_send()
1502 nxt_h1p_chunk_create(nxt_task_t *task, nxt_http_request_t *r, nxt_buf_t *out) in nxt_h1p_chunk_create() argument
1511 prev = &out; in nxt_h1p_chunk_create()
1513 for (b = out; b != NULL; b = b->next) { in nxt_h1p_chunk_create()
1538 return out; in nxt_h1p_chunk_create()
1546 header->next = out; in nxt_h1p_chunk_create()
1907 nxt_buf_t *out, *last; in nxt_h1p_idle_response() local
1913 out = nxt_buf_mem_alloc(c->mem_pool, size, 0); in nxt_h1p_idle_response()
1914 if (nxt_slow_path(out == NULL)) { in nxt_h1p_idle_response()
1918 p = nxt_cpymem(out->mem.free, NXT_H1P_IDLE_TIMEOUT, in nxt_h1p_idle_response()
1923 out->mem.free = nxt_cpymem(p, "\r\n\r\n", 4); in nxt_h1p_idle_response()
1930 out->next = last; in nxt_h1p_idle_response()
1937 c->write = out; in nxt_h1p_idle_response()
2669 nxt_buf_t *out; in nxt_h1p_peer_read_done() local
2678 out = c->read; in nxt_h1p_peer_read_done()
2681 nxt_h1p_peer_body_process(task, peer, out); in nxt_h1p_peer_read_done()
2687 nxt_buf_t *out) in nxt_h1p_peer_body_process() argument
2696 out = nxt_http_chunk_parse(task, &h1p->chunked_parse, out); in nxt_h1p_peer_body_process()
2706 nxt_buf_chain_add(&out, nxt_http_buf_last(peer->request)); in nxt_h1p_peer_body_process()
2711 length = nxt_buf_chain_length(out); in nxt_h1p_peer_body_process()
2715 peer->body = out; in nxt_h1p_peer_body_process()