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:realType
(Results
1 - 4
of
4
) sorted by relevance
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/
H
A
D
observer_bridge.cpp
37
Status ObserverBridge::RegisterRemoteObserver(uint32_t
realType
)
in RegisterRemoteObserver()
argument
41
remote_->realType_ |=
realType
;
in RegisterRemoteObserver()
55
remote_->realType_ =
realType
;
in RegisterRemoteObserver()
60
Status ObserverBridge::UnregisterRemoteObserver(uint32_t
realType
)
in UnregisterRemoteObserver()
argument
74
remote_->realType_ &= ~
realType
;
in UnregisterRemoteObserver()
H
A
D
single_store_impl.cpp
267
uint32_t
realType
= type;
in SubscribeKvStore()
local
268
std::shared_ptr<ObserverBridge> bridge = PutIn(
realType
, observer);
in SubscribeKvStore()
270
return (
realType
== type) ? OVER_MAX_LIMITS : STORE_ALREADY_SUBSCRIBE;
in SubscribeKvStore()
279
if ((
realType
& SUBSCRIBE_TYPE_LOCAL) == SUBSCRIBE_TYPE_LOCAL) {
in SubscribeKvStore()
284
if ((((
realType
& SUBSCRIBE_TYPE_REMOTE) == SUBSCRIBE_TYPE_REMOTE) ||
in SubscribeKvStore()
285
((
realType
& SUBSCRIBE_TYPE_CLOUD) == SUBSCRIBE_TYPE_CLOUD)) &&
in SubscribeKvStore()
287
realType
&= ~SUBSCRIBE_TYPE_LOCAL;
in SubscribeKvStore()
288
status = bridge->RegisterRemoteObserver(
realType
);
in SubscribeKvStore()
292
ZLOGE("status:0x%{public}x type:%{public}d->%{public}d observer:0x%{public}x", status, type,
realType
,
in SubscribeKvStore()
294
TakeOut(
realType
, observe
in SubscribeKvStore()
313
uint32_t
realType
= type;
UnSubscribeKvStore()
local
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/include/
H
A
D
observer_bridge.h
33
Status RegisterRemoteObserver(uint32_t
realType
);
34
Status UnregisterRemoteObserver(uint32_t
realType
);
H
A
D
single_store_impl.h
102
std::shared_ptr<ObserverBridge> PutIn(uint32_t &
realType
, std::shared_ptr<Observer> observer);
103
std::shared_ptr<ObserverBridge> TakeOut(uint32_t &
realType
, std::shared_ptr<Observer> observer);
Completed in 3 milliseconds