Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:in_buf_len
(Results
1 - 4
of
4
) sorted by relevance
/third_party/mbedtls/tests/src/test_helpers/
H
A
D
ssl_helpers.c
2136
TEST_ASSERT(client.ssl.
in_buf_len
== MBEDTLS_SSL_IN_BUFFER_LEN);
in mbedtls_test_ssl_perform_handshake()
2138
TEST_ASSERT(server.ssl.
in_buf_len
== MBEDTLS_SSL_IN_BUFFER_LEN);
in mbedtls_test_ssl_perform_handshake()
2191
TEST_ASSERT(client.ssl.
in_buf_len
==
in mbedtls_test_ssl_perform_handshake()
2195
TEST_ASSERT(server.ssl.
in_buf_len
==
in mbedtls_test_ssl_perform_handshake()
2246
TEST_ASSERT(server.ssl.
in_buf_len
== MBEDTLS_SSL_IN_BUFFER_LEN);
in mbedtls_test_ssl_perform_handshake()
2257
TEST_ASSERT(server.ssl.
in_buf_len
==
in mbedtls_test_ssl_perform_handshake()
2306
TEST_ASSERT(client.ssl.
in_buf_len
== MBEDTLS_SSL_IN_BUFFER_LEN);
in mbedtls_test_ssl_perform_handshake()
2327
TEST_ASSERT(client.ssl.
in_buf_len
==
in mbedtls_test_ssl_perform_handshake()
2331
TEST_ASSERT(server.ssl.
in_buf_len
==
in mbedtls_test_ssl_perform_handshake()
/third_party/mbedtls/library/
H
A
D
ssl_msg.c
2150
size_t
in_buf_len
= ssl->
in_buf_len
;
in mbedtls_ssl_fetch_input()
local
2152
size_t
in_buf_len
= MBEDTLS_SSL_IN_BUFFER_LEN;
in mbedtls_ssl_fetch_input()
local
2162
if (nb_want >
in_buf_len
- (size_t) (ssl->in_hdr - ssl->in_buf)) {
in mbedtls_ssl_fetch_input()
2232
len =
in_buf_len
- (size_t) (ssl->in_hdr - ssl->in_buf);
in mbedtls_ssl_fetch_input()
4725
size_t
in_buf_len
= ssl->
in_buf_len
;
in ssl_load_buffered_record()
local
4727
size_t
in_buf_len
= MBEDTLS_SSL_IN_BUFFER_LEN;
in ssl_load_buffered_record()
local
4761
if (rec_len >
in_buf_len
- (size_t) (ssl->in_hdr - ssl->in_buf)) {
in ssl_load_buffered_record()
H
A
D
ssl_tls.c
354
ssl->
in_buf_len
> in_buf_new_len && ssl->in_left < in_buf_new_len :
in handle_buffer_resizing()
355
ssl->
in_buf_len
< in_buf_new_len) {
in handle_buffer_resizing()
356
if (resize_buffer(&ssl->in_buf, in_buf_new_len, &ssl->
in_buf_len
) != 0) {
in handle_buffer_resizing()
1398
size_t
in_buf_len
= MBEDTLS_SSL_IN_BUFFER_LEN;
in mbedtls_ssl_setup()
local
1416
ssl->
in_buf_len
=
in_buf_len
;
in mbedtls_ssl_setup()
1418
ssl->in_buf = mbedtls_calloc(1,
in_buf_len
);
in mbedtls_ssl_setup()
1420
MBEDTLS_SSL_DEBUG_MSG(1, ("alloc(%" MBEDTLS_PRINTF_SIZET " bytes) failed",
in_buf_len
));
in mbedtls_ssl_setup()
1454
ssl->
in_buf_len
= 0;
in mbedtls_ssl_setup()
1486
size_t
in_buf_len
in mbedtls_ssl_session_reset_msg_layer()
local
5536
size_t
in_buf_len
= ssl->
in_buf_len
;
mbedtls_ssl_free()
local
[all...]
/third_party/mbedtls/include/mbedtls/
H
A
D
ssl.h
1800
size_t MBEDTLS_PRIVATE(
in_buf_len
); /*!< length of input buffer */
Completed in 21 milliseconds