Home
last modified time | relevance | path

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

/system/iorap/include/binder/
Dapp_launch_event.h58 std::unique_ptr<IntentProto> intent_proto; member
69 std::unique_ptr<IntentProto> intent_proto = nullptr,
75 intent_proto(std::move(intent_proto)), in type()
92 if (other.intent_proto != nullptr) {
93 intent_proto.reset(new IntentProto(*other.intent_proto));
299 intent_proto = std::move(maybe_intent.value()); in readIntent()
331 return WriteProto<IntentProto>(parcel, intent_proto); in writeIntent()
398 if (e.intent_proto == nullptr) {
401 os << "(action=" << e.intent_proto->action() << ",";
403 if (e.intent_proto->has_component()) {
[all …]
/system/iorap/src/manager/
Devent_manager.cc207 const std::string& package_name = event.intent_proto->component().package_name(); in OnNewEvent()
208 const std::string& class_name = event.intent_proto->component().class_name(); in OnNewEvent()