Lines Matching refs:hdbuf
1007 char *hdbuf = (char*)mem; in http2_send() local
1053 if(hdbuf[i] == 0x0a) { in http2_send()
1067 end = strchr(hdbuf, ' '); in http2_send()
1070 nva[0].value = (unsigned char *)hdbuf; in http2_send()
1071 nva[0].valuelen = (uint16_t)(end - hdbuf); in http2_send()
1074 hdbuf = end + 1; in http2_send()
1076 end = strchr(hdbuf, ' '); in http2_send()
1079 nva[1].value = (unsigned char *)hdbuf; in http2_send()
1080 nva[1].valuelen = (uint16_t)(end - hdbuf); in http2_send()
1092 hdbuf = strchr(hdbuf, 0x0a); in http2_send()
1093 ++hdbuf; in http2_send()
1098 end = strchr(hdbuf, ':'); in http2_send()
1100 if(end - hdbuf == 4 && Curl_raw_nequal("host", hdbuf, 4)) { in http2_send()
1106 nva[i].name = (unsigned char *)hdbuf; in http2_send()
1107 nva[i].namelen = (uint16_t)(end - hdbuf); in http2_send()
1109 hdbuf = end + 1; in http2_send()
1110 for(; *hdbuf == ' '; ++hdbuf); in http2_send()
1111 end = strchr(hdbuf, 0x0d); in http2_send()
1113 nva[i].value = (unsigned char *)hdbuf; in http2_send()
1114 nva[i].valuelen = (uint16_t)(end - hdbuf); in http2_send()
1117 hdbuf = end + 2; in http2_send()