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:credentialList
(Results
1 - 4
of
4
) sorted by relevance
/base/security/certificate_manager/interfaces/kits/napi/src/
H
A
D
cm_napi_get_app_cert_list_common.cpp
51
if (context->
credentialList
!= nullptr) {
in DeleteGetAppCertListAsyncContext()
52
FreeCredentialList(context->
credentialList
);
in DeleteGetAppCertListAsyncContext()
90
context->
credentialList
->credentialAbstract, context->
credentialList
->credentialCount);
in GetAppCertListWriteResult()
99
void InitAppCertList(struct CredentialList *
credentialList
)
in InitAppCertList()
argument
102
credentialList
->credentialAbstract = static_cast<struct CredentialAbstract *>(CmMalloc(buffSize));
in InitAppCertList()
103
if (
credentialList
->credentialAbstract == nullptr) {
in InitAppCertList()
107
(void)memset_s(
credentialList
->credentialAbstract, buffSize, 0, buffSize);
in InitAppCertList()
108
credentialList
->credentialCount = MAX_COUNT_CERTIFICATE;
in InitAppCertList()
126
context->
credentialList
in GetAppCertListAsyncWork()
[all...]
H
A
D
cm_napi_common.cpp
600
void FreeCredentialList(CredentialList *&
credentialList
)
in FreeCredentialList()
argument
602
if (
credentialList
== nullptr ||
credentialList
->credentialAbstract == nullptr) {
in FreeCredentialList()
606
FreeCredentialAbstract(
credentialList
->credentialAbstract);
in FreeCredentialList()
607
credentialList
->credentialAbstract = nullptr;
in FreeCredentialList()
609
CmFree(
credentialList
);
in FreeCredentialList()
610
credentialList
= nullptr;
in FreeCredentialList()
/base/security/certificate_manager/interfaces/kits/napi/include/
H
A
D
cm_napi_get_app_cert_list_common.h
30
struct CredentialList *
credentialList
= nullptr;
member
H
A
D
cm_napi_common.h
57
static const std::string CM_RESULT_PRPPERTY_CREDENTIAL_LIST = "
credentialList
";
148
void FreeCredentialList(CredentialList *&
credentialList
);
Completed in 3 milliseconds