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:camEvent
(Results
1 - 8
of
8
) sorted by relevance
/foundation/distributedhardware/distributed_camera/services/cameraservice/sourceservice/src/distributedcameramgr/dcamerastate/
H
A
D
dcamera_source_capture_state.cpp
92
std::shared_ptr<DCameraEvent>
camEvent
= std::make_shared<DCameraEvent>();
in DoUnregisterTask()
local
93
camEvent
->eventType_ = DCAMERA_MESSAGE;
in DoUnregisterTask()
94
camEvent
->eventResult_ = DCAMERA_EVENT_CHANNEL_DISCONNECTED;
in DoUnregisterTask()
95
int32_t ret = camDev->CameraEventNotify(
camEvent
);
in DoUnregisterTask()
236
std::shared_ptr<DCameraEvent>
camEvent
;
in DoEventNofityTask()
local
237
int32_t ret = event.GetCameraEvent(
camEvent
);
in DoEventNofityTask()
242
ret = camDev->CameraEventNotify(
camEvent
);
in DoEventNofityTask()
H
A
D
dcamera_source_opened_state.cpp
93
std::shared_ptr<DCameraEvent>
camEvent
= std::make_shared<DCameraEvent>();
in DoUnregisterTask()
local
94
camEvent
->eventType_ = DCAMERA_MESSAGE;
in DoUnregisterTask()
95
camEvent
->eventResult_ = DCAMERA_EVENT_CHANNEL_DISCONNECTED;
in DoUnregisterTask()
96
int32_t ret = camDev->CameraEventNotify(
camEvent
);
in DoUnregisterTask()
203
std::shared_ptr<DCameraEvent>
camEvent
;
in DoEventNofityTask()
local
204
int32_t ret = event.GetCameraEvent(
camEvent
);
in DoEventNofityTask()
209
ret = camDev->CameraEventNotify(
camEvent
);
in DoEventNofityTask()
H
A
D
dcamera_source_config_stream_state.cpp
101
std::shared_ptr<DCameraEvent>
camEvent
= std::make_shared<DCameraEvent>();
in DoUnregisterTask()
local
102
camEvent
->eventType_ = DCAMERA_MESSAGE;
in DoUnregisterTask()
103
camEvent
->eventResult_ = DCAMERA_EVENT_CHANNEL_DISCONNECTED;
in DoUnregisterTask()
104
int32_t ret = camDev->CameraEventNotify(
camEvent
);
in DoUnregisterTask()
273
std::shared_ptr<DCameraEvent>
camEvent
;
in DoEventNofityTask()
local
274
int32_t ret = event.GetCameraEvent(
camEvent
);
in DoEventNofityTask()
279
ret = camDev->CameraEventNotify(
camEvent
);
in DoEventNofityTask()
H
A
D
dcamera_source_regist_state.cpp
132
std::shared_ptr<DCameraEvent>
camEvent
;
in DoEventNofityTask()
local
133
int32_t ret = event.GetCameraEvent(
camEvent
);
in DoEventNofityTask()
138
ret = camDev->CameraEventNotify(
camEvent
);
in DoEventNofityTask()
/foundation/distributedhardware/distributed_camera/services/cameraservice/sourceservice/include/distributedcameramgr/
H
A
D
dcamera_source_event.h
100
explicit DCameraSourceEvent(DCAMERA_EVENT eventType, std::shared_ptr<DCameraEvent>&
camEvent
)
in DCameraSourceEvent()
argument
103
eventParam_ =
camEvent
;
in DCameraSourceEvent()
112
int32_t GetCameraEvent(std::shared_ptr<DCameraEvent>&
camEvent
);
/foundation/distributedhardware/distributed_camera/services/cameraservice/sourceservice/src/distributedcameramgr/
H
A
D
dcamera_source_event.cpp
90
int32_t DCameraSourceEvent::GetCameraEvent(std::shared_ptr<DCameraEvent>&
camEvent
)
in GetCameraEvent()
argument
97
camEvent
= *camEventPtr;
in GetCameraEvent()
H
A
D
dcamera_source_dev.cpp
790
std::shared_ptr<DCameraEvent>
camEvent
= std::make_shared<DCameraEvent>();
in OnChannelConnectedEvent()
local
791
camEvent
->eventType_ = DCAMERA_MESSAGE;
in OnChannelConnectedEvent()
792
camEvent
->eventResult_ = DCAMERA_EVENT_CHANNEL_CONNECTED;
in OnChannelConnectedEvent()
793
DCameraSourceEvent event(DCAMERA_EVENT_NOFIFY,
camEvent
);
in OnChannelConnectedEvent()
812
std::shared_ptr<DCameraEvent>
camEvent
= std::make_shared<DCameraEvent>();
in OnChannelDisconnectedEvent()
local
813
camEvent
->eventType_ = DCAMERA_MESSAGE;
in OnChannelDisconnectedEvent()
814
camEvent
->eventResult_ = DCAMERA_EVENT_CHANNEL_DISCONNECTED;
in OnChannelDisconnectedEvent()
815
DCameraSourceEvent eventNotify(DCAMERA_EVENT_NOFIFY,
camEvent
);
in OnChannelDisconnectedEvent()
/foundation/distributedhardware/distributed_camera/services/cameraservice/sourceservice/test/unittest/common/distributedcameramgr/
H
A
D
dcamera_source_dev_test.cpp
345
std::shared_ptr<DCameraEvent>
camEvent
= std::make_shared<DCameraEvent>();
in HWTEST_F()
local
346
DCameraSourceEvent event(DCAMERA_EVENT_NOFIFY,
camEvent
);
in HWTEST_F()
643
std::shared_ptr<DCameraEvent>
camEvent
= std::make_shared<DCameraEvent>();
in HWTEST_F()
local
644
DCameraSourceEvent event(DCAMERA_EVENT_NOFIFY,
camEvent
);
in HWTEST_F()
Completed in 6 milliseconds