Lines Matching defs:plainlen
174 * error, EOF, or EAGAIN/EWOULDBLOCK, or plainbuf/plainlen is filled up.
176 * It's okay to call this function with plainbuf == NULL and plainlen == 0.
183 char *plainbuf, size_t plainlen, CURLcode *err)
198 while(plain_bytes_copied < plainlen) {
211 plainlen - plain_bytes_copied,
260 plainlen, nread, *err);
266 * - Copy `plainlen` bytes into rustls' plaintext input buffer (if > 0).
270 * It's okay to call this function with plainbuf == NULL and plainlen == 0.
276 const void *plainbuf, size_t plainlen, CURLcode *err)
294 CURL_TRC_CF(data, cf, "cf_send: %ld plain bytes", plainlen);
299 if(plainlen > 0) {
300 rresult = rustls_connection_write(rconn, plainbuf, plainlen,