HomeSort by relevance Sort by last modified time
    Searched refs:call_msg (Results 1 - 6 of 6) sorted by null

  /test/vts/drivers/hal/replayer/
VtsHidlHalReplayer.cpp 50 VtsProfilingRecord call_msg; local
52 while (readOneDelimited(&call_msg, &input) &&
54 if (call_msg.event() != InstrumentationEventType::SERVER_API_ENTRY &&
55 call_msg.event() != InstrumentationEventType::CLIENT_API_ENTRY &&
56 call_msg.event() != InstrumentationEventType::SYNC_CALLBACK_ENTRY &&
57 call_msg.event() != InstrumentationEventType::ASYNC_CALLBACK_ENTRY &&
58 call_msg.event() != InstrumentationEventType::PASSTHROUGH_ENTRY) {
60 << call_msg.event();
74 << call_msg.event();
78 cout << __func__ << ": replay function: " << call_msg.func_msg().name()
    [all...]
  /test/vts/drivers/hal/common/driver_manager/
VtsHalDriverManager.cpp 84 string VtsHalDriverManager::CallFunction(FunctionCallMessage* call_msg) {
86 DriverBase* driver = GetDriverWithCallMsg(*call_msg);
88 cerr << "can't find driver for package: " << call_msg->package_name()
89 << " version: " << call_msg->component_type_version() << endl;
94 FunctionSpecificationMessage* api = call_msg->mutable_api();
95 if (call_msg->component_class() != HAL_HIDL && api->name() == "#Open") {
129 if (call_msg->component_class() == HAL_HIDL) {
147 if (call_msg->component_class() == HAL_HIDL) {
186 string VtsHalDriverManager::GetAttribute(FunctionCallMessage* call_msg) {
188 DriverBase* driver = GetDriverWithCallMsg(*call_msg);
    [all...]
  /test/vts/drivers/hal/server/
SocketServer.cpp 96 FunctionCallMessage* call_msg = new FunctionCallMessage(); local
97 google::protobuf::TextFormat::MergeFromString(arg, call_msg);
98 const string& result = driver_manager_->CallFunction(call_msg);
105 FunctionCallMessage* call_msg = new FunctionCallMessage(); local
106 google::protobuf::TextFormat::MergeFromString(arg, call_msg);
107 const string& result = driver_manager_->GetAttribute(call_msg);
BinderServer.cpp 164 FunctionCallMessage* call_msg = new FunctionCallMessage(); local
165 google::protobuf::TextFormat::MergeFromString(arg, call_msg);
166 return driver_manager_->CallFunction(call_msg);
  /test/vts/utils/python/mirror/
mirror_object.py 94 call_msg = CompSpecMsg.FunctionCallMessage()
96 call_msg.hal_driver_id = self._hal_driver_id
97 call_msg.component_class = CompSpecMsg.HAL_CONVENTIONAL
98 call_msg.api.name = "#Open"
100 arg = call_msg.api.arg.add()
104 call_msg.api.return_type.type == CompSpecMsg.TYPE_SCALAR
105 call_msg.api.return_type.scalar_type = "int32_t"
106 logging.debug("final msg %s", call_msg)
109 text_format.MessageToString(call_msg), self.__caller_uid)
532 call_msg = CompSpecMsg.FunctionCallMessage(
    [all...]
  /test/vts/drivers/hal/common/include/driver_manager/
VtsHalDriverManager.h 106 DriverBase* GetDriverWithCallMsg(const FunctionCallMessage& call_msg);

Completed in 650 milliseconds