Searched refs:call_msg (Results 1 – 6 of 6) sorted by relevance
/test/vts/drivers/hal/replayer/ |
D | VtsHidlHalReplayer.cpp | 89 VtsProfilingRecord call_msg; in ReplayTrace() local 91 while (readOneDelimited(&call_msg, &input) && in ReplayTrace() 93 if (call_msg.event() != InstrumentationEventType::SERVER_API_ENTRY && in ReplayTrace() 94 call_msg.event() != InstrumentationEventType::CLIENT_API_ENTRY && in ReplayTrace() 95 call_msg.event() != InstrumentationEventType::SYNC_CALLBACK_ENTRY && in ReplayTrace() 96 call_msg.event() != InstrumentationEventType::ASYNC_CALLBACK_ENTRY && in ReplayTrace() 97 call_msg.event() != InstrumentationEventType::PASSTHROUGH_ENTRY) { in ReplayTrace() 99 << call_msg.event(); in ReplayTrace() 113 << call_msg.event(); in ReplayTrace() 117 string package_name = call_msg.package(); in ReplayTrace() [all …]
|
/test/vts/drivers/hal/common/driver_manager/ |
D | VtsHalDriverManager.cpp | 102 string VtsHalDriverManager::CallFunction(FunctionCallMessage* call_msg) { in CallFunction() argument 104 DriverBase* driver = GetDriverWithCallMsg(*call_msg); in CallFunction() 108 call_msg->component_class(), call_msg->component_type(), in CallFunction() 110 call_msg->component_type_version_major(), in CallFunction() 111 call_msg->component_type_version_minor()), in CallFunction() 112 call_msg->package_name(), call_msg->component_name()); in CallFunction() 116 FunctionSpecificationMessage* api = call_msg->mutable_api(); in CallFunction() 121 if (call_msg->component_class() == HAL_HIDL) { in CallFunction() 147 if (call_msg->component_class() == HAL_HIDL) { in CallFunction() 158 } else if (call_msg->component_class() == LIB_SHARED) { in CallFunction() [all …]
|
/test/vts/drivers/hal/server/ |
D | SocketServer.cpp | 73 FunctionCallMessage* call_msg = new FunctionCallMessage(); in Call() local 74 google::protobuf::TextFormat::MergeFromString(arg, call_msg); in Call() 75 const string& result = driver_manager_->CallFunction(call_msg); in Call() 81 FunctionCallMessage* call_msg = new FunctionCallMessage(); in GetAttribute() local 82 google::protobuf::TextFormat::MergeFromString(arg, call_msg); in GetAttribute() 83 const string& result = driver_manager_->GetAttribute(call_msg); in GetAttribute()
|
D | BinderServer.cpp | 168 FunctionCallMessage* call_msg = new FunctionCallMessage(); in Call() local 169 google::protobuf::TextFormat::MergeFromString(arg, call_msg); in Call() 170 return driver_manager_->CallFunction(call_msg); in Call()
|
/test/vts/utils/python/mirror/ |
D | native_entity_mirror.py | 216 call_msg = CompSpecMsg.FunctionCallMessage() 218 call_msg.component_class = self._if_spec_msg.component_class 219 call_msg.hal_driver_id = self._driver_id 220 call_msg.api.CopyFrom(func_msg) 221 logging.debug("final msg %s", call_msg) 223 text_format.MessageToString(call_msg), self._caller_uid)
|
/test/vts/drivers/hal/common/include/driver_manager/ |
D | VtsHalDriverManager.h | 134 DriverBase* GetDriverWithCallMsg(const FunctionCallMessage& call_msg);
|