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:reportHandler
(Results
1 - 10
of
10
) sorted by relevance
/foundation/resourceschedule/device_usage_statistics/services/packageusage/src/
H
A
D
bundle_active_report_handler.cpp
50
auto
reportHandler
= shared_from_this();
in SendEvent()
local
56
ffrt::task_handle taskHandle = ffrtQueue_->submit_h([
reportHandler
, eventId, handlerobj]() {
in SendEvent()
57
reportHandler
->ProcessEvent(eventId, handlerobj);
in SendEvent()
58
std::lock_guard<ffrt::mutex> lock(
reportHandler
->taskHandlerMutex_);
in SendEvent()
59
if (
reportHandler
->taskHandlerMap_.find(eventId) ==
reportHandler
->taskHandlerMap_.end()) {
in SendEvent()
62
if (!
reportHandler
->taskHandlerMap_[eventId].empty()) {
in SendEvent()
63
reportHandler
->taskHandlerMap_[eventId].pop();
in SendEvent()
/foundation/resourceschedule/device_usage_statistics/services/common/src/
H
A
D
bundle_active_app_state_obsever.cpp
26
void BundleActiveAppStateObserver::Init(const std::shared_ptr<BundleActiveReportHandler>&
reportHandler
)
in Init()
argument
28
if (
reportHandler
!= nullptr) {
in Init()
30
reportHandler_ =
reportHandler
;
in Init()
H
A
D
bundle_active_continuous_task_observer.cpp
28
void BundleActiveContinuousTaskObserver::Init(const std::shared_ptr<BundleActiveReportHandler>&
reportHandler
)
in Init()
argument
30
if (
reportHandler
!= nullptr) {
in Init()
32
reportHandler_ =
reportHandler
;
in Init()
H
A
D
bundle_active_core.cpp
119
auto
reportHandler
= bundleActiveReportHandler_.lock();
in HandleUserRemoveEvent()
local
120
if (
reportHandler
== nullptr) {
in HandleUserRemoveEvent()
123
reportHandler
->SendEvent(BundleActiveReportHandler::MSG_REMOVE_USER, handlerobjToPtr);
in HandleUserRemoveEvent()
135
auto
reportHandler
= bundleActiveReportHandler_.lock();
in HandleUserSwitchEvent()
local
136
if (
reportHandler
== nullptr) {
in HandleUserSwitchEvent()
139
reportHandler
->SendEvent(BundleActiveReportHandler::MSG_SWITCH_USER, handlerobjToPtr);
in HandleUserSwitchEvent()
156
auto
reportHandler
= bundleActiveReportHandler_.lock();
in HandlePackageRemoveEvent()
local
157
if (
reportHandler
== nullptr) {
in HandlePackageRemoveEvent()
160
reportHandler
->SendEvent(BundleActiveReportHandler::MSG_BUNDLE_UNINSTALLED,
in HandlePackageRemoveEvent()
178
auto
reportHandler
in HandlePackageAddEvent()
local
287
SetHandler(const std::shared_ptr<BundleActiveReportHandler>&
reportHandler
)
SetHandler()
argument
[all...]
H
A
D
bundle_active_service.cpp
174
void BundleActiveService::InitAppStateSubscriber(const std::shared_ptr<BundleActiveReportHandler>&
reportHandler
)
in InitAppStateSubscriber()
argument
182
appStateObserver_->Init(
reportHandler
);
in InitAppStateSubscriber()
186
void BundleActiveService::InitContinuousSubscriber(const std::shared_ptr<BundleActiveReportHandler>&
reportHandler
)
in InitContinuousSubscriber()
argument
191
continuousTaskObserver_->Init(
reportHandler
);
in InitContinuousSubscriber()
/foundation/resourceschedule/device_usage_statistics/test/unittest/
H
A
D
bundle_active_total_test.cpp
91
auto
reportHandler
= std::make_shared<BundleActiveReportHandler>(runner);
in HWTEST_F()
local
94
test.Init(
reportHandler
);
in HWTEST_F()
177
auto
reportHandler
= std::make_shared<BundleActiveReportHandler>();
in HWTEST_F()
local
179
test.Init(
reportHandler
);
in HWTEST_F()
182
test.Init(
reportHandler
);
in HWTEST_F()
/foundation/resourceschedule/device_usage_statistics/services/common/include/
H
A
D
bundle_active_app_state_observer.h
36
void Init(const std::shared_ptr<BundleActiveReportHandler>&
reportHandler
);
H
A
D
bundle_active_continuous_task_observer.h
41
void Init(const std::shared_ptr<BundleActiveReportHandler>&
reportHandler
);
H
A
D
bundle_active_service.h
232
void InitAppStateSubscriber(const std::shared_ptr<BundleActiveReportHandler>&
reportHandler
);
233
void InitContinuousSubscriber(const std::shared_ptr<BundleActiveReportHandler>&
reportHandler
);
H
A
D
bundle_active_core.h
131
* parameters:
reportHandler
133
void SetHandler(const std::shared_ptr<BundleActiveReportHandler>&
reportHandler
);
Completed in 6 milliseconds