OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CBS_get_u8
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/boringssl/src/crypto/bytestring/
cbs.c
106
int
CBS_get_u8
(CBS *cbs, uint8_t *out) {
171
if (!
CBS_get_u8
(&header, &tag) ||
172
!
CBS_get_u8
(&header, &length_byte)) {
bytestring_test.c
45
return
CBS_get_u8
(&data, &u8) &&
53
!
CBS_get_u8
(&data, &u8);
66
CBS_get_u8
(&prefixed, &u8) &&
/external/chromium_org/third_party/boringssl/src/include/openssl/
bytestring.h
82
/*
CBS_get_u8
sets |*out| to the next uint8_t from |cbs| and advances |cbs|. It
84
OPENSSL_EXPORT int
CBS_get_u8
(CBS *cbs, uint8_t *out);
/external/chromium_org/third_party/boringssl/src/ssl/
s23_srvr.c
433
if (!
CBS_get_u8
(&v2_client_hello, &msg_type) ||
t1_lib.c
465
if (!
CBS_get_u8
(cbs, &curve_type) ||
767
if (!
CBS_get_u8
(cbs, &hash) ||
768
!
CBS_get_u8
(cbs, &signature))
[
all
...]
s3_clnt.c
820
!
CBS_get_u8
(&server_hello, &compression_method))
[
all
...]
s3_srvr.c
751
!
CBS_get_u8
(&client_hello, &cookie_length))
[
all
...]
/external/chromium_org/third_party/boringssl/src/ssl/test/
bssl_shim.cc
91
!
CBS_get_u8
(&server_name_list, &name_type) ||
Completed in 182 milliseconds