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:ParseSources
(Results
1 - 15
of
15
) sorted by relevance
/base/powermgr/power_manager/test/unittest/src/
H
A
D
power_parsesources_mock_test.cpp
55
* @tc.desc: test
ParseSources
(exception)
69
std::shared_ptr<SuspendSources> sources1 = SuspendSourceParser::
ParseSources
();
in HWTEST_F()
72
std::shared_ptr<WakeupSources> sources2 = WakeupSourceParser::
ParseSources
();
in HWTEST_F()
77
std::shared_ptr<SuspendSources> sources3 = SuspendSourceParser::
ParseSources
(jsonStr);
in HWTEST_F()
80
std::shared_ptr<WakeupSources> sources4 = WakeupSourceParser::
ParseSources
(jsonStr);
in HWTEST_F()
88
std::shared_ptr<WakeupSources> sources5 = WakeupSourceParser::
ParseSources
(jsonStr2);
in HWTEST_F()
95
std::shared_ptr<SuspendSources> sources6 = SuspendSourceParser::
ParseSources
(jsonStr3);
in HWTEST_F()
/base/powermgr/power_manager/services/native/src/suspend/
H
A
D
suspend_source_parser.h
29
static std::shared_ptr<SuspendSources>
ParseSources
();
30
static std::shared_ptr<SuspendSources>
ParseSources
(const std::string& config);
H
A
D
suspend_source_parser.cpp
41
std::shared_ptr<SuspendSources> SuspendSourceParser::
ParseSources
()
in ParseSources()
function in OHOS::PowerMgr::SuspendSourceParser
80
parseSources =
ParseSources
(configJsonStr);
in ParseSources()
84
std::shared_ptr<SuspendSources> SuspendSourceParser::
ParseSources
()
88
POWER_HILOGI(FEATURE_SUSPEND, "
ParseSources
setting=%{public}d", isSettingUpdated);
103
parseSources =
ParseSources
(configJsonStr);
137
std::shared_ptr<SuspendSources> SuspendSourceParser::
ParseSources
(const std::string& jsonStr)
in ParseSources()
function in OHOS::PowerMgr::SuspendSourceParser
H
A
D
suspend_controller.cpp
145
std::shared_ptr<SuspendSources> sources = SuspendSourceParser::
ParseSources
();
in Init()
210
std::shared_ptr<SuspendSources> sources = SuspendSourceParser::
ParseSources
(jsonStr);
in UpdateSuspendSources()
/base/powermgr/power_manager/services/native/src/wakeup_action/
H
A
D
wakeup_action_source_parser.h
29
static std::shared_ptr<WakeupActionSources>
ParseSources
();
30
static std::shared_ptr<WakeupActionSources>
ParseSources
(const std::string& jsonStr);
H
A
D
wakeup_action_source_parser.cpp
36
std::shared_ptr<WakeupActionSources> WakeupActionSourceParser::
ParseSources
()
in ParseSources()
function in OHOS::PowerMgr::WakeupActionSourceParser
49
parseSources =
ParseSources
(configJsonStr);
in ParseSources()
79
std::shared_ptr<WakeupActionSources> WakeupActionSourceParser::
ParseSources
(const std::string& jsonStr)
in ParseSources()
function in OHOS::PowerMgr::WakeupActionSourceParser
H
A
D
wakeup_action_controller.cpp
41
std::shared_ptr<WakeupActionSources> sources = WakeupActionSourceParser::
ParseSources
();
in Init()
/base/powermgr/power_manager/services/native/src/wakeup/
H
A
D
wakeup_source_parser.h
30
static std::shared_ptr<WakeupSources>
ParseSources
();
31
static std::shared_ptr<WakeupSources>
ParseSources
(const std::string& config);
H
A
D
wakeup_source_parser.cpp
38
std::shared_ptr<WakeupSources> WakeupSourceParser::
ParseSources
()
in ParseSources()
function in OHOS::PowerMgr::WakeupSourceParser
42
POWER_HILOGI(FEATURE_WAKEUP, "
ParseSources
setting=%{public}d", isWakeupSourcesSettingValid);
in ParseSources()
59
parseSources =
ParseSources
(configJsonStr);
in ParseSources()
93
std::shared_ptr<WakeupSources> WakeupSourceParser::
ParseSources
(const std::string& jsonStr)
in ParseSources()
function in OHOS::PowerMgr::WakeupSourceParser
H
A
D
wakeup_controller.cpp
85
std::shared_ptr<WakeupSources> sources = WakeupSourceParser::
ParseSources
();
in Init()
123
std::shared_ptr<WakeupSources> sources = WakeupSourceParser::
ParseSources
(jsonStr);
in RegisterSettingsObserver()
/base/powermgr/power_manager/utils/vibrator/include/
H
A
D
vibrator_source_parser.h
52
std::vector<VibratorSource>
ParseSources
(
56
std::vector<VibratorSource>
ParseSources
(const std::string& config);
/base/powermgr/power_manager/utils/vibrator/src/
H
A
D
vibrator_source_parser.cpp
28
std::vector<VibratorSource> VibratorSourceParser::
ParseSources
(
in ParseSources()
function in OHOS::PowerMgr::VibratorSourceParser
42
sources =
ParseSources
(targetPath);
in ParseSources()
71
std::vector<VibratorSource> VibratorSourceParser::
ParseSources
(const std::string& jsonStr)
in ParseSources()
function in OHOS::PowerMgr::VibratorSourceParser
H
A
D
power_vibrator.cpp
39
std::vector<VibratorSource> sources = parser->
ParseSources
(etcPath, vendorPath, systemPath);
in LoadConfig()
/base/powermgr/power_manager/test/unittest/src/interface_test/
H
A
D
power_suspend_controller_test.cpp
327
std::shared_ptr<SuspendSources> sources = SuspendSourceParser::
ParseSources
();
in HWTEST_F()
H
A
D
power_wakeup_controller_test.cpp
357
std::shared_ptr<WakeupSources> sources = WakeupSourceParser::
ParseSources
();
in HWTEST_F()
Completed in 7 milliseconds