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:IDeviceObserver
(Results
1 - 14
of
14
) sorted by relevance
/foundation/multimodalinput/input/intention/prototype/include/
H
A
D
i_device_observer.h
26
class
IDeviceObserver
{
class
28
IDeviceObserver
() = default;
29
virtual ~
IDeviceObserver
() = default;
35
inline bool operator<(std::weak_ptr<
IDeviceObserver
> ptr1, std::weak_ptr<
IDeviceObserver
> ptr2)
in operator <()
40
inline bool operator==(const std::weak_ptr<
IDeviceObserver
> ptr1, std::nullptr_t) noexcept
H
A
D
i_device_manager.h
34
virtual int32_t AddDeviceObserver(std::weak_ptr<
IDeviceObserver
> observer) = 0;
35
virtual void RemoveDeviceObserver(std::weak_ptr<
IDeviceObserver
> observer) = 0;
36
virtual void RetriggerHotplug(std::weak_ptr<
IDeviceObserver
> observer) = 0;
/foundation/multimodalinput/input/intention/services/device_manager/include/
H
A
D
device_manager.h
49
int32_t AddDeviceObserver(std::weak_ptr<
IDeviceObserver
> observer) override;
50
void RemoveDeviceObserver(std::weak_ptr<
IDeviceObserver
> observer) override;
51
void RetriggerHotplug(std::weak_ptr<
IDeviceObserver
> observer) override;
79
int32_t OnAddDeviceObserver(std::weak_ptr<
IDeviceObserver
> observer);
80
int32_t OnRemoveDeviceObserver(std::weak_ptr<
IDeviceObserver
> observer);
81
int32_t OnRetriggerHotplug(std::weak_ptr<
IDeviceObserver
> observer);
94
std::set<std::weak_ptr<
IDeviceObserver
>> observers_;
/foundation/multimodalinput/input/util/common/include/
H
A
D
device_observer.h
21
class
IDeviceObserver
{
class
28
virtual void Attach(std::shared_ptr<
IDeviceObserver
> observer) = 0;
29
virtual void Detach(std::shared_ptr<
IDeviceObserver
> observer) = 0;
/foundation/multimodalinput/input/service/interceptor/test/
H
A
D
mock.cpp
33
void InputDeviceManager::Attach(std::shared_ptr<
IDeviceObserver
> observer)
in Attach()
36
void InputDeviceManager::Detach(std::shared_ptr<
IDeviceObserver
> observer)
in Detach()
/foundation/multimodalinput/input/intention/services/device_manager/src/
H
A
D
device_manager.cpp
258
std::shared_ptr<
IDeviceObserver
> ptr = observer.lock();
in OnDeviceAdded()
267
std::shared_ptr<
IDeviceObserver
> ptr = observer.lock();
in OnDeviceRemoved()
330
void DeviceManager::RetriggerHotplug(std::weak_ptr<
IDeviceObserver
> observer)
in RetriggerHotplug()
342
int32_t DeviceManager::OnRetriggerHotplug(std::weak_ptr<
IDeviceObserver
> observer)
in OnRetriggerHotplug()
346
std::shared_ptr<
IDeviceObserver
> ptr = observer.lock();
in OnRetriggerHotplug()
357
int32_t DeviceManager::AddDeviceObserver(std::weak_ptr<
IDeviceObserver
> observer)
in AddDeviceObserver()
370
int32_t DeviceManager::OnAddDeviceObserver(std::weak_ptr<
IDeviceObserver
> observer)
in OnAddDeviceObserver()
381
void DeviceManager::RemoveDeviceObserver(std::weak_ptr<
IDeviceObserver
> observer)
in RemoveDeviceObserver()
393
int32_t DeviceManager::OnRemoveDeviceObserver(std::weak_ptr<
IDeviceObserver
> observer)
in OnRemoveDeviceObserver()
/foundation/multimodalinput/input/service/device_manager/include/
H
A
D
input_device_manager.h
64
void Attach(std::shared_ptr<
IDeviceObserver
> observer);
65
void Detach(std::shared_ptr<
IDeviceObserver
> observer);
112
std::list<std::shared_ptr<
IDeviceObserver
>> observers_;
/foundation/multimodalinput/input/intention/services/test/unittest/src/
H
A
D
device_manager_test.cpp
493
std::weak_ptr<
IDeviceObserver
> weakObserver = std::weak_ptr<
IDeviceObserver
>();
in HWTEST_F()
507
std::weak_ptr<
IDeviceObserver
> weakObserver = std::weak_ptr<
IDeviceObserver
>();
in HWTEST_F()
/foundation/multimodalinput/input/test/fuzztest/inputdevicemanager_fuzzer/
H
A
D
inputdevicemanager_fuzzer.cpp
39
std::shared_ptr<
IDeviceObserver
> observer;
in InputDeviceManagerFuzzTest()
/foundation/multimodalinput/input/intention/cooperate/plugin/include/
H
A
D
cooperate_context.h
123
std::shared_ptr<
IDeviceObserver
> hotplugObserver_;
/foundation/multimodalinput/input/service/window_manager/test/
H
A
D
mock.cpp
175
void InputDeviceManager::Attach(std::shared_ptr<
IDeviceObserver
> observer)
in Attach()
178
void InputDeviceManager::Detach(std::shared_ptr<
IDeviceObserver
> observer)
in Detach()
/foundation/multimodalinput/input/service/device_manager/src/
H
A
D
input_device_manager.cpp
555
void InputDeviceManager::Attach(std::shared_ptr<
IDeviceObserver
> observer)
in Attach()
561
void InputDeviceManager::Detach(std::shared_ptr<
IDeviceObserver
> observer)
in Detach()
/foundation/multimodalinput/input/intention/cooperate/plugin/src/
H
A
D
cooperate_context.cpp
75
class HotplugObserver final : public
IDeviceObserver
{
/foundation/multimodalinput/input/service/window_manager/include/
H
A
D
pointer_drawing_manager.h
68
public
IDeviceObserver
,
Completed in 8 milliseconds