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:notifierMap_
(Results
1 - 6
of
6
) sorted by relevance
/foundation/ability/dmsfwk/services/dtbabilitymgr/src/continuation_manager/
H
A
D
notifier_info.cpp
22
auto iter =
notifierMap_
.find(cbType);
in GetNotifier()
23
if (iter ==
notifierMap_
.end()) {
in GetNotifier()
31
notifierMap_
[cbType] = notifier;
in SetNotifier()
36
auto iter =
notifierMap_
.find(cbType);
in DeleteNotifier()
37
if (iter !=
notifierMap_
.end()) {
in DeleteNotifier()
38
notifierMap_
.erase(iter);
in DeleteNotifier()
44
for (auto iter =
notifierMap_
.begin(); iter !=
notifierMap_
.end(); iter++) {
in QueryNotifier()
54
if (
notifierMap_
.empty()) {
in IsNotifierMapEmpty()
64
for (auto iter =
notifierMap_
in RemoveDeathRecipient()
[all...]
/foundation/resourceschedule/resource_schedule_service/ressched/services/resschedmgr/resschedfwk/src/
H
A
D
notifier_mgr.cpp
60
notifierMap_
.clear();
in ~NotifierMgr()
103
auto iter =
notifierMap_
.find(pid);
in RegisterNotifier()
104
if (iter ==
notifierMap_
.end()) {
in RegisterNotifier()
108
notifierMap_
[pid] = info;
in RegisterNotifier()
117
auto iter =
notifierMap_
.find(pid);
in UnRegisterNotifier()
118
if (iter !=
notifierMap_
.end()) {
in UnRegisterNotifier()
120
notifierMap_
.erase(pid);
in UnRegisterNotifier()
162
auto iter =
notifierMap_
.find(pid);
in OnApplicationStateChange()
163
if (iter ==
notifierMap_
.end()) {
in OnApplicationStateChange()
196
for (auto& notifiers :
notifierMap_
) {
in RemoveNotifierLock()
[all...]
/foundation/resourceschedule/resource_schedule_service/ressched/test/unittest/src/
H
A
D
notifier_mgr_test.cpp
165
auto& info = NotifierMgr::GetInstance().
notifierMap_
[callingPid];
in HWTEST_F()
190
auto realNotifier = NotifierMgr::GetInstance().
notifierMap_
[callingPid].notifier;
in HWTEST_F()
208
auto size = NotifierMgr::GetInstance().
notifierMap_
.size();
in HWTEST_F()
224
EXPECT_EQ(NotifierMgr::GetInstance().
notifierMap_
.size(), 0);
in HWTEST_F()
258
auto size = NotifierMgr::GetInstance().
notifierMap_
.size();
in HWTEST_F()
272
auto size = NotifierMgr::GetInstance().
notifierMap_
.size();
in HWTEST_F()
364
EXPECT_TRUE(NotifierMgr::GetInstance().
notifierMap_
.size() == 0);
in HWTEST_F()
/foundation/ability/dmsfwk/services/dtbabilitymgr/include/continuation_manager/
H
A
D
notifier_info.h
48
NotifierMap
notifierMap_
;
member in OHOS::DistributedSchedule::NotifierInfo
/foundation/resourceschedule/resource_schedule_service/ressched/services/resschedmgr/resschedfwk/include/
H
A
D
notifier_mgr.h
60
NotifierMap
notifierMap_
;
member in OHOS::ResourceSchedule::NotifierMgr
/foundation/ability/dmsfwk/services/dtbabilitymgr/test/unittest/continuation_manager/
H
A
D
continuation_manager_test.cpp
1874
* @tc.steps: step1. test DeleteNotifier when cbType is not in
notifierMap_
in HWTEST_F()
1876
notifierInfo.
notifierMap_
.clear();
in HWTEST_F()
1879
* @tc.steps: step2. test RemoveDeathRecipient when cbType is not in
notifierMap_
in HWTEST_F()
Completed in 6 milliseconds