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:ext_types
(Results
1 - 9
of
9
) sorted by relevance
/third_party/nghttp2/lib/
H
A
D
nghttp2_option.c
68
static void set_ext_type(uint8_t *
ext_types
, uint8_t type) {
in set_ext_type()
argument
69
ext_types
[type / 8] = (uint8_t)(
ext_types
[type / 8] | (1 << (type & 0x7)));
in set_ext_type()
H
A
D
nghttp2_session.c
153
static int check_ext_type_set(const uint8_t *
ext_types
, uint8_t type) {
in check_ext_type_set()
argument
154
return (
ext_types
[type / 8] & (1 << (type & 0x7))) > 0;
in check_ext_type_set()
/third_party/node/deps/nghttp2/lib/
H
A
D
nghttp2_option.c
68
static void set_ext_type(uint8_t *
ext_types
, uint8_t type) {
in set_ext_type()
argument
69
ext_types
[type / 8] = (uint8_t)(
ext_types
[type / 8] | (1 << (type & 0x7)));
in set_ext_type()
H
A
D
nghttp2_session.c
153
static int check_ext_type_set(const uint8_t *
ext_types
, uint8_t type) {
in check_ext_type_set()
argument
154
return (
ext_types
[type / 8] & (1 << (type & 0x7))) > 0;
in check_ext_type_set()
/third_party/mbedtls/library/
H
A
D
x509_csr.c
143
if ((csr->
ext_types
& ext_type) != 0) {
in x509_csr_parse_extensions()
148
csr->
ext_types
|= ext_type;
in x509_csr_parse_extensions()
568
if (csr->
ext_types
& MBEDTLS_X509_EXT_SUBJECT_ALT_NAME) {
in mbedtls_x509_csr_info()
579
if (csr->
ext_types
& MBEDTLS_X509_EXT_NS_CERT_TYPE) {
in mbedtls_x509_csr_info()
588
if (csr->
ext_types
& MBEDTLS_X509_EXT_KEY_USAGE) {
in mbedtls_x509_csr_info()
597
if (csr->
ext_types
!= 0) {
in mbedtls_x509_csr_info()
H
A
D
x509_crt.c
955
if ((crt->
ext_types
& ext_type) != 0) {
in x509_get_crt_ext()
959
crt->
ext_types
|= ext_type;
in x509_get_crt_ext()
1822
if (crt->
ext_types
& MBEDTLS_X509_EXT_BASIC_CONSTRAINTS) {
in mbedtls_x509_crt_info()
1833
if (crt->
ext_types
& MBEDTLS_X509_EXT_SUBJECT_ALT_NAME) {
in mbedtls_x509_crt_info()
1844
if (crt->
ext_types
& MBEDTLS_X509_EXT_NS_CERT_TYPE) {
in mbedtls_x509_crt_info()
1853
if (crt->
ext_types
& MBEDTLS_X509_EXT_KEY_USAGE) {
in mbedtls_x509_crt_info()
1862
if (crt->
ext_types
& MBEDTLS_X509_EXT_EXTENDED_KEY_USAGE) {
in mbedtls_x509_crt_info()
1872
if (crt->
ext_types
& MBEDTLS_OID_X509_EXT_CERTIFICATE_POLICIES) {
in mbedtls_x509_crt_info()
1935
if ((crt->
ext_types
& MBEDTLS_X509_EXT_KEY_USAGE) == 0) {
in mbedtls_x509_crt_check_key_usage()
1961
if ((crt->
ext_types
in mbedtls_x509_crt_check_extended_key_usage()
[all...]
/third_party/mbedtls/include/mbedtls/
H
A
D
x509_csr.h
53
int MBEDTLS_PRIVATE(
ext_types
); /**< Bit string containing detected and parsed extensions */
H
A
D
x509_crt.h
72
int MBEDTLS_PRIVATE(
ext_types
); /**< Bit string containing detected and parsed extensions */
916
return ctx->MBEDTLS_PRIVATE(
ext_types
) & ext_type;
in mbedtls_x509_crt_has_ext_type()
/third_party/libcoap/src/
H
A
D
coap_mbedtls.c
303
if (crt->
ext_types
& MBEDTLS_X509_EXT_SUBJECT_ALT_NAME) {
in get_san_or_cn_from_cert()
Completed in 37 milliseconds