Home
last modified time | relevance | path

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

/third_party/flutter/skia/third_party/externals/sdl/src/file/
DSDL_rwops.c186 size_t read_ahead; in windows_file_read() local
199 read_ahead = in windows_file_read()
201 SDL_memcpy(ptr, data, read_ahead); in windows_file_read()
202 context->hidden.windowsio.buffer.left -= read_ahead; in windows_file_read()
204 if (read_ahead == total_need) { in windows_file_read()
207 ptr = (char *) ptr + read_ahead; in windows_file_read()
208 total_need -= read_ahead; in windows_file_read()
209 total_read += read_ahead; in windows_file_read()
219 read_ahead = SDL_min(total_need, (int) byte_read); in windows_file_read()
220 SDL_memcpy(ptr, context->hidden.windowsio.buffer.data, read_ahead); in windows_file_read()
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtsp/
Dgstrtspconnection.c186 gint read_ahead; member
1548 if (conn->read_ahead == READ_AHEAD_EOH) { in read_line()
1551 conn->read_ahead = 0; in read_line()
1553 } else if (conn->read_ahead == READ_AHEAD_CRLF) { in read_line()
1556 } else if (conn->read_ahead == READ_AHEAD_CRLFCR) { in read_line()
1559 } else if (conn->read_ahead != 0) { in read_line()
1561 c = (guint8) conn->read_ahead; in read_line()
1562 conn->read_ahead = 0; in read_line()
1573 guint8 read_ahead; in read_line() local
1578 res = read_bytes (conn, &read_ahead, &i, 1, block); in read_line()
[all …]
/third_party/openssl/ssl/record/
Drecord.h134 int read_ahead; member
181 #define RECORD_LAYER_set_read_ahead(rl, ra) ((rl)->read_ahead = (ra))
182 #define RECORD_LAYER_get_read_ahead(rl) ((rl)->read_ahead)
Drec_layer_s3.c272 if (!s->rlayer.read_ahead && !SSL_IS_DTLS(s)) in ssl3_read_n()
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/internal/
Dssl_types.h147 int read_ahead; member
194 int read_ahead; member
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/library/
Dssl_lib.c963 ssl->rlayer.read_ahead = yes; in SSL_set_read_ahead()
973 ctx->read_ahead = yes; in SSL_CTX_set_read_ahead()
983 return ssl->rlayer.read_ahead; in SSL_get_read_ahead()
993 return ctx->read_ahead; in SSL_CTX_get_read_ahead()
1003 return ctx->read_ahead; in SSL_CTX_get_default_read_ahead()
/third_party/openssl/doc/man3/
DSSL_CTX_set_split_send_fragment.pod58 automatically turn on "read_ahead" (see L<SSL_CTX_set_read_ahead(3)>). This is
92 above when setting B<max_pipelines> to a value greater than one, B<read_ahead>
93 is automatically set. The B<read_ahead> parameter causes OpenSSL to attempt to
98 connection. Setting B<read_ahead> can impact the behaviour of the SSL_pending()
DSSL_CTX_set_read_ahead.pod41 B<read_ahead> can impact the behaviour of the SSL_pending() function
DSSL_pending.pod24 If the B<SSL> object's I<read_ahead> flag is set (see
DSSL_new.pod80 =item the read_ahead value set via L<SSL_set_read_ahead(3)>
/third_party/curl/tests/server/
Dtftpd.c237 static void read_ahead(struct testcase *test, int convert);
348 read_ahead(test, convert); /* fill it */ in readit()
358 static void read_ahead(struct testcase *test, in read_ahead() function
1188 read_ahead(test, pf->f_convert); in sendtftp()
/third_party/openssl/ssl/
Dssl_lib.c734 RECORD_LAYER_set_read_ahead(&s->rlayer, ctx->read_ahead); in SSL_new()
2314 return ctx->read_ahead; in SSL_CTX_ctrl()
2316 l = ctx->read_ahead; in SSL_CTX_ctrl()
2317 ctx->read_ahead = larg; in SSL_CTX_ctrl()
Dssl_local.h866 int read_ahead; member
/third_party/openssl/test/
Dsslapitest.c710 int read_ahead) in execute_test_large_message() argument
732 if (read_ahead) { in execute_test_large_message()
/third_party/openssl/
DCHANGES10314 Copy SSL_CTX's read_ahead flag to SSL object directly in SSL_new