Home
last modified time | relevance | path

Searched refs:nghttp2_mem_malloc (Results 1 – 22 of 22) sorted by relevance

/third_party/nghttp2/lib/
Dnghttp2_submit.c82 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in submit_headers_shared()
244 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in nghttp2_submit_priority()
338 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in nghttp2_submit_push_promise()
531 buf = nghttp2_mem_malloc(mem, origin_len + field_value_len + 2); in nghttp2_submit_altsvc()
550 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in nghttp2_submit_altsvc()
614 nghttp2_mem_malloc(mem, nov * sizeof(nghttp2_origin_entry) + len + nov); in nghttp2_submit_origin()
634 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in nghttp2_submit_origin()
750 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in nghttp2_submit_data()
806 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in nghttp2_submit_extension()
Dnghttp2_mem.h39 void *nghttp2_mem_malloc(nghttp2_mem *mem, size_t size);
Dnghttp2_buf.c95 *chain = nghttp2_mem_malloc(mem, sizeof(nghttp2_buf_chain)); in buf_chain_new()
206 chain = nghttp2_mem_malloc(mem, sizeof(nghttp2_buf_chain)); in nghttp2_bufs_wrap_init()
240 head_chain = nghttp2_mem_malloc(mem, sizeof(nghttp2_buf_chain) * veclen); in nghttp2_bufs_wrap_init2()
451 res = nghttp2_mem_malloc(bufs->mem, len); in nghttp2_bufs_remove()
Dnghttp2_mem.c56 void *nghttp2_mem_malloc(nghttp2_mem *mem, size_t size) { in nghttp2_mem_malloc() function
Dnghttp2_rcbuf.c37 p = nghttp2_mem_malloc(mem, sizeof(nghttp2_rcbuf) + size); in nghttp2_rcbuf_new()
Dnghttp2_frame.c521 nghttp2_mem_malloc(mem, (*niv_ptr) * sizeof(nghttp2_settings_entry)); in nghttp2_frame_unpack_settings_payload2()
662 var_gift_payload = nghttp2_mem_malloc(mem, var_gift_payloadlen); in nghttp2_frame_unpack_goaway_payload2()
767 buf = nghttp2_mem_malloc(mem, payloadlen - 2); in nghttp2_frame_unpack_altsvc_payload2()
853 ov = nghttp2_mem_malloc(mem, len); in nghttp2_frame_unpack_origin_payload()
890 iv_copy = nghttp2_mem_malloc(mem, len); in nghttp2_frame_iv_copy()
1001 *nva_ptr = nghttp2_mem_malloc(mem, buflen); in nghttp2_nv_array_copy()
Dnghttp2_ksl.c59 ksl->head = nghttp2_mem_malloc(mem, blklen); in nghttp2_ksl_init()
112 rblk = nghttp2_mem_malloc(ksl->mem, ksl_blklen(ksl->nodelen)); in ksl_split_blk()
198 nhead = nghttp2_mem_malloc(ksl->mem, ksl_blklen(ksl->nodelen)); in ksl_split_head()
Dnghttp2_hd.c593 ringbuf->buffer = nghttp2_mem_malloc(mem, sizeof(nghttp2_hd_entry *) * size); in hd_ringbuf_init()
620 buffer = nghttp2_mem_malloc(mem, sizeof(nghttp2_hd_entry *) * size); in hd_ringbuf_reserve()
1133 new_ent = nghttp2_mem_malloc(mem, sizeof(nghttp2_hd_entry)); in add_hd_table_incremental()
1593 deflater = nghttp2_mem_malloc(mem, sizeof(nghttp2_hd_deflater)); in nghttp2_hd_deflate_new2()
2251 inflater = nghttp2_mem_malloc(mem, sizeof(nghttp2_hd_inflater)); in nghttp2_hd_inflate_new2()
Dnghttp2_map.c170 bkt->ksl = nghttp2_mem_malloc(mem, sizeof(*bkt->ksl)); in map_insert()
Dnghttp2_session.c176 buf = nghttp2_mem_malloc(mem, bufsize); in session_call_error_callback()
704 *settings_ptr = nghttp2_mem_malloc(mem, sizeof(nghttp2_inflight_settings)); in inflight_settings_new()
1007 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in nghttp2_session_add_rst_stream()
1051 stream = nghttp2_mem_malloc(mem, sizeof(nghttp2_stream)); in nghttp2_session_open_stream()
5703 iframe->iv = nghttp2_mem_malloc(mem, sizeof(nghttp2_settings_entry) * in nghttp2_session_mem_recv()
5873 iframe->raw_lbuf = nghttp2_mem_malloc(mem, iframe->payloadleft); in nghttp2_session_mem_recv()
6098 iframe->raw_lbuf = nghttp2_mem_malloc(mem, debuglen); in nghttp2_session_mem_recv()
6141 nghttp2_mem_malloc(mem, iframe->frame.hd.length - 2); in nghttp2_session_mem_recv()
6887 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in nghttp2_session_add_ping()
6933 opaque_data_copy = nghttp2_mem_malloc(mem, opaque_data_len); in nghttp2_session_add_goaway()
[all …]
/third_party/node/deps/nghttp2/lib/
Dnghttp2_submit.c82 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in submit_headers_shared()
244 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in nghttp2_submit_priority()
338 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in nghttp2_submit_push_promise()
531 buf = nghttp2_mem_malloc(mem, origin_len + field_value_len + 2); in nghttp2_submit_altsvc()
550 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in nghttp2_submit_altsvc()
614 nghttp2_mem_malloc(mem, nov * sizeof(nghttp2_origin_entry) + len + nov); in nghttp2_submit_origin()
634 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in nghttp2_submit_origin()
750 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in nghttp2_submit_data()
806 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in nghttp2_submit_extension()
Dnghttp2_mem.h39 void *nghttp2_mem_malloc(nghttp2_mem *mem, size_t size);
Dnghttp2_buf.c95 *chain = nghttp2_mem_malloc(mem, sizeof(nghttp2_buf_chain)); in buf_chain_new()
206 chain = nghttp2_mem_malloc(mem, sizeof(nghttp2_buf_chain)); in nghttp2_bufs_wrap_init()
240 head_chain = nghttp2_mem_malloc(mem, sizeof(nghttp2_buf_chain) * veclen); in nghttp2_bufs_wrap_init2()
451 res = nghttp2_mem_malloc(bufs->mem, len); in nghttp2_bufs_remove()
Dnghttp2_mem.c56 void *nghttp2_mem_malloc(nghttp2_mem *mem, size_t size) { in nghttp2_mem_malloc() function
Dnghttp2_rcbuf.c37 p = nghttp2_mem_malloc(mem, sizeof(nghttp2_rcbuf) + size); in nghttp2_rcbuf_new()
Dnghttp2_frame.c521 nghttp2_mem_malloc(mem, (*niv_ptr) * sizeof(nghttp2_settings_entry)); in nghttp2_frame_unpack_settings_payload2()
662 var_gift_payload = nghttp2_mem_malloc(mem, var_gift_payloadlen); in nghttp2_frame_unpack_goaway_payload2()
767 buf = nghttp2_mem_malloc(mem, payloadlen - 2); in nghttp2_frame_unpack_altsvc_payload2()
853 ov = nghttp2_mem_malloc(mem, len); in nghttp2_frame_unpack_origin_payload()
890 iv_copy = nghttp2_mem_malloc(mem, len); in nghttp2_frame_iv_copy()
1001 *nva_ptr = nghttp2_mem_malloc(mem, buflen); in nghttp2_nv_array_copy()
Dnghttp2_ksl.c59 ksl->head = nghttp2_mem_malloc(mem, blklen); in nghttp2_ksl_init()
112 rblk = nghttp2_mem_malloc(ksl->mem, ksl_blklen(ksl->nodelen)); in ksl_split_blk()
198 nhead = nghttp2_mem_malloc(ksl->mem, ksl_blklen(ksl->nodelen)); in ksl_split_head()
Dnghttp2_hd.c593 ringbuf->buffer = nghttp2_mem_malloc(mem, sizeof(nghttp2_hd_entry *) * size); in hd_ringbuf_init()
620 buffer = nghttp2_mem_malloc(mem, sizeof(nghttp2_hd_entry *) * size); in hd_ringbuf_reserve()
1133 new_ent = nghttp2_mem_malloc(mem, sizeof(nghttp2_hd_entry)); in add_hd_table_incremental()
1593 deflater = nghttp2_mem_malloc(mem, sizeof(nghttp2_hd_deflater)); in nghttp2_hd_deflate_new2()
2251 inflater = nghttp2_mem_malloc(mem, sizeof(nghttp2_hd_inflater)); in nghttp2_hd_inflate_new2()
Dnghttp2_map.c170 bkt->ksl = nghttp2_mem_malloc(mem, sizeof(*bkt->ksl)); in map_insert()
Dnghttp2_session.c176 buf = nghttp2_mem_malloc(mem, bufsize); in session_call_error_callback()
704 *settings_ptr = nghttp2_mem_malloc(mem, sizeof(nghttp2_inflight_settings)); in inflight_settings_new()
1007 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in nghttp2_session_add_rst_stream()
1051 stream = nghttp2_mem_malloc(mem, sizeof(nghttp2_stream)); in nghttp2_session_open_stream()
5703 iframe->iv = nghttp2_mem_malloc(mem, sizeof(nghttp2_settings_entry) * in nghttp2_session_mem_recv()
5873 iframe->raw_lbuf = nghttp2_mem_malloc(mem, iframe->payloadleft); in nghttp2_session_mem_recv()
6098 iframe->raw_lbuf = nghttp2_mem_malloc(mem, debuglen); in nghttp2_session_mem_recv()
6141 nghttp2_mem_malloc(mem, iframe->frame.hd.length - 2); in nghttp2_session_mem_recv()
6887 item = nghttp2_mem_malloc(mem, sizeof(nghttp2_outbound_item)); in nghttp2_session_add_ping()
6933 opaque_data_copy = nghttp2_mem_malloc(mem, opaque_data_len); in nghttp2_session_add_goaway()
[all …]
/third_party/nghttp2/tests/
Dnghttp2_pq_test.c42 ent = nghttp2_mem_malloc(mem, sizeof(string_entry)); in string_entry_new()
Dnghttp2_frame_test.c476 rawbuf = nghttp2_mem_malloc(mem, 32); in test_nghttp2_frame_pack_altsvc()