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:checkers
(Results
1 - 7
of
7
) sorted by relevance
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/bootstrap/src/
H
A
D
bootstrap.cpp
86
auto *
checkers
= ConfigFactory::GetInstance().GetCheckerConfig();
in LoadCheckers()
local
87
if (
checkers
== nullptr) {
in LoadCheckers()
90
CheckerManager::GetInstance().LoadCheckers(
checkers
->
checkers
);
in LoadCheckers()
91
for (const auto &trust :
checkers
->trusts) {
in LoadCheckers()
98
for (const auto &distrust :
checkers
->distrusts) {
in LoadCheckers()
105
for (const auto &switches :
checkers
->switches) {
in LoadCheckers()
112
for (const auto &dynamicStore :
checkers
->dynamicStores) {
in LoadCheckers()
119
for (const auto &staticStore :
checkers
->staticStores) {
in LoadCheckers()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/config/src/model/
H
A
D
checker_config.cpp
41
SetValue(node[GET_NAME(
checkers
)],
checkers
);
in Marshal()
52
GetValue(node, GET_NAME(
checkers
),
checkers
);
in Unmarshal()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/
H
A
D
config_factory_test.cpp
68
* @tc.desc: load the config.json
checkers
info.
77
std::vector<std::string>
checkers
{"SystemChecker", "BundleChecker"};
in HWTEST_F()
78
ASSERT_EQ(checker->
checkers
,
checkers
);
in HWTEST_F()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/checker/
H
A
D
checker_manager.cpp
24
void CheckerManager::LoadCheckers(std::vector<std::string> &
checkers
)
in LoadCheckers()
argument
26
for (const auto &checker :
checkers
) {
in LoadCheckers()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/config/include/model/
H
A
D
checker_config.h
36
std::vector<std::string>
checkers
;
/foundation/multimedia/av_codec/services/services/codec/server/
H
A
D
codec_param_checker.cpp
612
auto
checkers
= CONFIGURE_CHECKERS_TABLE.find(scenario);
613
CHECK_AND_RETURN_RET_LOG(
checkers
!= CONFIGURE_CHECKERS_TABLE.end(), AVCS_ERR_UNSUPPORT,
614
"This scenario can not find any
checkers
");
617
for (const auto &checker :
checkers
->second) {
636
auto
checkers
= PARAMETER_CHECKERS_TABLE.find(scenario);
637
CHECK_AND_RETURN_RET_LOG(
checkers
!= PARAMETER_CHECKERS_TABLE.end(), AVCS_ERR_UNSUPPORT,
638
"This scenario can not find any
checkers
");
642
for (const auto &checker :
checkers
->second) {
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include/checker/
H
A
D
checker_manager.h
69
API_EXPORT void LoadCheckers(std::vector<std::string> &
checkers
);
Completed in 4 milliseconds