Lines Matching defs:eventMsg
58 RETURN_INVALID_IF_NULL(event.eventMsg);
60 event.eventMsg->fromMgr, event.eventMsg->srcId, event.eventMsg->toMgr, event.eventMsg->dstId,
61 std::string(magic_enum::enum_name(event.eventMsg->type)).c_str());
62 switch (event.eventMsg->type) {
66 auto eventMsg = std::static_pointer_cast<InteractionEventMsg>(event.eventMsg);
67 if (eventMsg) {
68 DestroyInteraction(eventMsg->dstId);
75 auto eventMsg = std::static_pointer_cast<InteractionEventMsg>(event.eventMsg);
76 if (eventMsg) {
77 RemoveInteraction(eventMsg->dstId);
84 auto eventMsg = std::static_pointer_cast<InteractionEventMsg>(event.eventMsg);
85 if (eventMsg) {
86 Interaction::Ptr interaction = GetInteraction(eventMsg->dstId);
90 SHARING_LOGE("interaction null interactionId: %{public}d.", eventMsg->dstId);