Home
last modified time | relevance | path

Searched refs:intent_proto (Results 1 – 3 of 3) sorted by relevance

/system/iorap/include/binder/
Dapp_launch_event.h57 std::unique_ptr<IntentProto> intent_proto; member
66 std::unique_ptr<IntentProto> intent_proto = nullptr,
71 intent_proto(std::move(intent_proto)), in type()
259 intent_proto = std::move(maybe_intent.value()); in readIntent()
291 return WriteProto<IntentProto>(parcel, intent_proto); in writeIntent()
355 if (e.intent_proto == nullptr) {
358 os << "(action=" << e.intent_proto->action() << ",";
360 if (e.intent_proto->has_component()) {
362 os << e.intent_proto->component().package_name() << "/"
363 << e.intent_proto->component().class_name();
/system/iorap/tests/src/binder/
Dapp_launch_event_test.cc68 PROTO_EQ_OR_RETURN(lhs, rhs, intent_proto); in operator ==()
84 std::unique_ptr<IntentProto> intent_proto) { in MakeIntentStarted() argument
85 DCHECK(intent_proto != nullptr); in MakeIntentStarted()
87 AppLaunchEvent e{Type::kIntentStarted, sequence_id, std::move(intent_proto)}; in MakeIntentStarted()
/system/iorap/src/manager/
Devent_manager.cc150 if (!event.intent_proto->has_component()) { in OnNewEvent()
156 const std::string& package_name = event.intent_proto->component().package_name(); in OnNewEvent()
157 const std::string& class_name = event.intent_proto->component().class_name(); in OnNewEvent()