Lines Matching refs:buf
141 char buf[256]; in CheckIdempotentError() local
142 ERR_error_string_n(err, buf, sizeof(buf)); in CheckIdempotentError()
143 fprintf(stderr, "Wanted: %d %d %s\n", ret, ssl_err, buf); in CheckIdempotentError()
144 ERR_error_string_n(err2, buf, sizeof(buf)); in CheckIdempotentError()
145 fprintf(stderr, "Got: %d %d %s\n", ret2, ssl_err2, buf); in CheckIdempotentError()
213 char buf[64]; in Proxy() local
216 (bytes = read_eintr(wfd, buf, sizeof(buf))) > 0) { in Proxy()
217 char *b = buf; in Proxy()
561 std::vector<uint8_t> buf(kBufSize); in RunHandshaker() local
562 ssize_t len = read_eintr(control.fd(), buf.data(), buf.size()); in RunHandshaker()
567 buf.resize(len); in RunHandshaker()
568 *out = std::move(buf); in RunHandshaker()