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:interactionMsg
(Results
1 - 3
of
3
) sorted by relevance
/foundation/CastEngine/castengine_wifi_display/services/interaction/
H
A
D
interaction.cpp
66
auto
interactionMsg
= std::make_shared<InteractionEventMsg>();
in ReleaseScene()
local
67
interactionMsg
->toMgr = ModuleType::MODULE_INTERACTION;
in ReleaseScene()
68
interactionMsg
->type = EVENT_INTERACTIONMGR_DESTROY_INTERACTION;
in ReleaseScene()
71
event.eventMsg = std::move(
interactionMsg
);
in ReleaseScene()
80
auto
interactionMsg
= std::make_shared<InteractionEventMsg>();
in OnSceneNotifyDestroyed()
local
81
interactionMsg
->toMgr = ModuleType::MODULE_INTERACTION;
in OnSceneNotifyDestroyed()
82
interactionMsg
->type = EVENT_INTERACTIONMGR_REMOVE_INTERACTION;
in OnSceneNotifyDestroyed()
85
event.eventMsg = std::move(
interactionMsg
);
in OnSceneNotifyDestroyed()
106
auto
interactionMsg
= ConvertEventMsg<InteractionEventMsg>(event);
in HandleEvent()
local
107
auto contextId =
interactionMsg
in HandleEvent()
[all...]
/foundation/CastEngine/castengine_wifi_display/services/context/
H
A
D
context.cpp
184
auto
interactionMsg
= std::make_shared<InteractionEventMsg>();
in SendInteractionEvent()
local
185
interactionMsg
->fromMgr = ModuleType::MODULE_CONTEXT;
in SendInteractionEvent()
186
interactionMsg
->srcId = GetId();
in SendInteractionEvent()
187
interactionMsg
->toMgr = ModuleType::MODULE_INTERACTION;
in SendInteractionEvent()
188
interactionMsg
->dstId = interactionId_;
in SendInteractionEvent()
190
interactionMsg
->type = eventType;
in SendInteractionEvent()
191
interactionMsg
->errorCode = eventMsg->errorCode;
in SendInteractionEvent()
192
interactionMsg
->agentId = eventMsg->agentId;
in SendInteractionEvent()
193
interactionMsg
->agentType = eventMsg->agentType;
in SendInteractionEvent()
194
interactionMsg
in SendInteractionEvent()
222
auto
interactionMsg
= std::static_pointer_cast<InteractionEventMsg>(statusMsg->msg);
OnAgentNotify()
local
[all...]
/foundation/CastEngine/castengine_wifi_display/services/agent/
H
A
D
agent.cpp
434
auto
interactionMsg
= std::make_shared<InteractionEventMsg>();
in SendInteractionEvent()
local
435
RETURN_IF_NULL(
interactionMsg
);
in SendInteractionEvent()
436
interactionMsg
->agentId = GetId();
in SendInteractionEvent()
437
interactionMsg
->agentType = GetAgentType();
in SendInteractionEvent()
438
interactionMsg
->toMgr = ModuleType::MODULE_INTERACTION;
in SendInteractionEvent()
439
interactionMsg
->type = eventType;
in SendInteractionEvent()
440
interactionMsg
->errorCode = statusMsg->msg->errorCode;
in SendInteractionEvent()
441
interactionMsg
->requestId = statusMsg->msg->requestId;
in SendInteractionEvent()
442
interactionMsg
->surfaceId = statusMsg->surfaceId;
in SendInteractionEvent()
447
agentMsg->msg = std::move(
interactionMsg
);
in SendInteractionEvent()
[all...]
Completed in 2 milliseconds