Home
last modified time | relevance | path

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

/external/curl/lib/
Dhttp2.c1861 char *hdbuf = (char *)mem; in http2_send() local
1922 if(hdbuf[i] == '\n' && hdbuf[i - 1] == '\r') { in http2_send()
1942 line_end = memchr(hdbuf, '\r', len); in http2_send()
1947 end = memchr(hdbuf, ' ', line_end - hdbuf); in http2_send()
1948 if(!end || end == hdbuf) in http2_send()
1952 nva[0].value = (unsigned char *)hdbuf; in http2_send()
1953 nva[0].valuelen = (size_t)(end - hdbuf); in http2_send()
1960 hdbuf = end + 1; in http2_send()
1964 for(i = (size_t)(line_end - hdbuf); i; --i) { in http2_send()
1965 if(hdbuf[i - 1] == ' ') { in http2_send()
[all …]