HomeSort by: relevance | last modified time | path
    Searched refs:h2_stream (Results 1 - 8 of 8) sorted by relevancy

  /src/external/bsd/unbound/dist/testcode/
dohclient.c 148 struct http2_stream* h2_stream; local
156 h2_stream = calloc(1, sizeof(*h2_stream));
157 if(!h2_stream)
159 h2_stream->buf = buf;
164 h2_stream->path = (char*)h2_session->endpoint;
172 h2_stream->path = malloc(strlen(
174 if(!h2_stream->path) fatal_exit("out of memory");
175 snprintf(h2_stream->path, strlen(h2_session->endpoint)+
187 headers[1].value = (uint8_t*)h2_stream->path
341 struct http2_stream* h2_stream; variable in typeref:struct:http2_stream
350 free(h2_stream); variable
360 struct http2_stream* h2_stream; variable in typeref:struct:http2_stream
380 struct http2_stream* h2_stream; local
409 struct http2_stream* h2_stream; variable in typeref:struct:http2_stream
    [all...]
fake_event.c 2015 void http2_stream_add_meshstate(struct http2_stream* ATTR_UNUSED(h2_stream),
2020 void http2_stream_remove_mesh_state(struct http2_stream* ATTR_UNUSED(h2_stream))
  /src/external/bsd/unbound/dist/services/
listen_dnsport.c 2522 struct http2_stream* h2_stream; local
2525 if(!(h2_stream = nghttp2_session_get_stream_user_data(
2531 if(!h2_stream->rbuffer ||
2532 sldns_buffer_remaining(h2_stream->rbuffer) == 0) {
2539 if(copylen > sldns_buffer_remaining(h2_stream->rbuffer))
2540 copylen = sldns_buffer_remaining(h2_stream->rbuffer);
2544 memcpy(buf, sldns_buffer_current(h2_stream->rbuffer), copylen);
2545 sldns_buffer_skip(h2_stream->rbuffer, copylen);
2547 if(sldns_buffer_remaining(h2_stream->rbuffer) == 0) {
2551 sldns_buffer_capacity(h2_stream->rbuffer)
2593 struct http2_stream* h2_stream = h2_session->c->h2_stream; local
2704 struct http2_stream* h2_stream; local
2818 struct http2_stream* h2_stream; local
2905 struct http2_stream* h2_stream; local
3031 struct http2_stream* h2_stream = NULL; local
3151 struct http2_stream* h2_stream; variable in typeref:struct:http2_stream
    [all...]
mesh.c 469 http2_stream_remove_mesh_state(rep->c->h2_stream);
482 http2_stream_remove_mesh_state(rep->c->h2_stream);
554 http2_stream_add_meshstate(rep->c->h2_stream, mesh, s);
607 http2_stream_remove_mesh_state(rep->c->h2_stream);
1086 http2_stream_remove_mesh_state(rep->h2_stream);
1482 r->query_reply.c->h2_stream = r->h2_stream;
1486 r->h2_stream->mesh_state = NULL;
1779 http2_stream_remove_mesh_state(r->h2_stream);
1816 http2_stream_remove_mesh_state(r->h2_stream);
    [all...]
mesh.h 257 struct http2_stream* h2_stream; member in struct:mesh_reply
listen_dnsport.h 460 void http2_req_stream_clear(struct http2_stream* h2_stream);
467 * @param h2_stream: http2 stream, containing buffer to store answer in
  /src/external/bsd/unbound/dist/util/
netevent.h 288 struct http2_stream* h2_stream; member in struct:comm_point
1023 * @param h2_stream: stream to add to session list
1026 struct http2_stream* h2_stream);
1030 void http2_stream_add_meshstate(struct http2_stream* h2_stream,
1034 void http2_stream_remove_mesh_state(struct http2_stream* h2_stream);
netevent.c 3173 struct http2_stream* h2_stream)
3175 if(h2_stream->mesh_state) {
3176 mesh_state_remove_reply(h2_stream->mesh, h2_stream->mesh_state,
3178 h2_stream->mesh_state = NULL;
3180 http2_req_stream_clear(h2_stream);
3181 free(h2_stream);
3189 struct http2_stream* h2_stream, *next; local
3192 for(h2_stream = h2_session->first_stream; h2_stream;) {
5111 struct http2_stream* h2_stream = calloc(1, sizeof(*h2_stream)); local
5162 struct http2_stream* h2_stream; local
    [all...]

Completed in 22 milliseconds