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:obsRecipient_
(Results
1 - 6
of
6
) sorted by relevance
/foundation/ability/ability_runtime/services/dataobsmgr/src/
H
A
D
dataobs_mgr_inner_pref.cpp
129
auto it =
obsRecipient_
.find(dataObserver->AsObject());
in AddObsDeathRecipient()
130
if (it !=
obsRecipient_
.end()) {
in AddObsDeathRecipient()
145
obsRecipient_
.emplace(dataObserver->AsObject(), deathRecipient);
in AddObsDeathRecipient()
155
auto it =
obsRecipient_
.find(dataObserver);
in RemoveObsDeathRecipient()
156
if (it !=
obsRecipient_
.end()) {
in RemoveObsDeathRecipient()
158
obsRecipient_
.erase(it);
in RemoveObsDeathRecipient()
H
A
D
dataobs_mgr_inner.cpp
123
auto it =
obsRecipient_
.find(dataObserver->AsObject());
in AddObsDeathRecipient()
124
if (it !=
obsRecipient_
.end()) {
in AddObsDeathRecipient()
139
obsRecipient_
.emplace(dataObserver->AsObject(), deathRecipient);
in AddObsDeathRecipient()
149
auto it =
obsRecipient_
.find(dataObserver);
in RemoveObsDeathRecipient()
150
if (it !=
obsRecipient_
.end()) {
in RemoveObsDeathRecipient()
152
obsRecipient_
.erase(it);
in RemoveObsDeathRecipient()
/foundation/ability/ability_runtime/test/unittest/dataobs_mgr_inner_pref_test/
H
A
D
dataobs_mgr_inner_pref_test.cpp
304
it = dataObsMgrInnerPref_->
obsRecipient_
.find(observer);
in HWTEST_F()
305
EXPECT_EQ(true, it != dataObsMgrInnerPref_->
obsRecipient_
.end());
in HWTEST_F()
309
it = dataObsMgrInnerPref_->
obsRecipient_
.find(observer);
in HWTEST_F()
310
EXPECT_EQ(false, it != dataObsMgrInnerPref_->
obsRecipient_
.end());
in HWTEST_F()
312
dataObsMgrInnerPref_->
obsRecipient_
.clear();
in HWTEST_F()
/foundation/ability/ability_runtime/test/unittest/dataobs_mgr_inner_test/
H
A
D
dataobs_mgr_inner_test.cpp
304
it = dataObsMgrInner_->
obsRecipient_
.find(observer);
in HWTEST_F()
305
EXPECT_EQ(true, it != dataObsMgrInner_->
obsRecipient_
.end());
in HWTEST_F()
309
it = dataObsMgrInner_->
obsRecipient_
.find(observer);
in HWTEST_F()
310
EXPECT_EQ(false, it != dataObsMgrInner_->
obsRecipient_
.end());
in HWTEST_F()
312
dataObsMgrInner_->
obsRecipient_
.clear();
in HWTEST_F()
/foundation/ability/ability_runtime/services/dataobsmgr/include/
H
A
D
dataobs_mgr_inner_pref.h
52
ObsRecipientMapType
obsRecipient_
;
member in OHOS::AAFwk::DataObsMgrInnerPref
H
A
D
dataobs_mgr_inner.h
53
ObsRecipientMapType
obsRecipient_
;
member in OHOS::AAFwk::DataObsMgrInner
Completed in 3 milliseconds