Lines Matching defs:out
593 void dump_nv(FILE *out, const char **nv) {
595 fprintf(out, "%s: %s\n", nv[i], nv[i + 1]);
597 fputc('\n', out);
598 fflush(out);
601 void dump_nv(FILE *out, const nghttp2_nv *nva, size_t nvlen) {
604 fprintf(out, "%s: %s\n", nva->name, nva->value);
606 fputc('\n', out);
607 fflush(out);
610 void dump_nv(FILE *out, const Headers &nva) {
612 fprintf(out, "%s: %s\n", nv.name.c_str(), nv.value.c_str());
614 fputc('\n', out);
615 fflush(out);
618 void dump_nv(FILE *out, const HeaderRefs &nva) {
620 fprintf(out, "%s: %s\n", nv.name.c_str(), nv.value.c_str());
622 fputc('\n', out);
623 fflush(out);