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:cList
(Results
1 - 4
of
4
) sorted by relevance
/base/security/certificate_manager/test/unittest/src/
H
A
D
cm_test_common.cpp
84
int32_t InitCertList(struct CertList **
cList
)
in InitCertList()
argument
86
*
cList
= static_cast<struct CertList *>(CmMalloc(sizeof(struct CertList)));
in InitCertList()
87
if (*
cList
== nullptr) {
in InitCertList()
92
(*
cList
)->certAbstract = static_cast<struct CertAbstract *>(CmMalloc(buffSize));
in InitCertList()
93
if ((*
cList
)->certAbstract == NULL) {
in InitCertList()
96
(void)memset_s((*
cList
)->certAbstract, buffSize, 0, buffSize);
in InitCertList()
97
(*
cList
)->certsCount = MAX_COUNT_CERTIFICATE;
in InitCertList()
336
bool FindCertAbstract(const struct CertAbstract *abstract, const struct CertList *
cList
)
in FindCertAbstract()
argument
338
if (abstract == nullptr ||
cList
== nullptr ||
cList
in FindCertAbstract()
[all...]
/base/security/certificate_manager/test/unittest/include/
H
A
D
cm_test_common.h
62
int32_t InitCertList(struct CertList **
cList
);
68
bool FindCertAbstract(const struct CertAbstract *abstract, const struct CertList *
cList
);
/base/web/webview/ohos_adapter/cert_mgr_adapter/src/
H
A
D
cert_mgr_adapter_impl.cpp
27
int32_t CertManagerAdapterImpl::InitCertList(struct CertList **
cList
)
in InitCertList()
argument
29
*
cList
= static_cast<struct CertList *>(malloc(sizeof(struct CertList)));
in InitCertList()
30
if (*
cList
== nullptr) {
in InitCertList()
35
(*
cList
)->certAbstract = static_cast<struct CertAbstract *>(malloc(buffSize));
in InitCertList()
36
if ((*
cList
)->certAbstract == nullptr) {
in InitCertList()
37
free(*
cList
);
in InitCertList()
38
*
cList
= nullptr;
in InitCertList()
41
(void)memset_s((*
cList
)->certAbstract, buffSize, 0, buffSize);
in InitCertList()
42
(*
cList
)->certsCount = MAX_COUNT_CERTIFICATE;
in InitCertList()
/base/web/webview/ohos_adapter/cert_mgr_adapter/include/
H
A
D
cert_mgr_adapter_impl.h
51
int32_t InitCertList(struct CertList **
cList
);
Completed in 3 milliseconds