Lines Matching defs:command_msg
102 const AndroidSystemControlCommandMessage& command_msg) {
103 int driver_type = command_msg.driver_type();
104 const string& service_name = command_msg.service_name();
105 const string& file_path = command_msg.file_path();
106 int target_class = command_msg.target_class();
107 int target_type = command_msg.target_type();
108 float target_version = command_msg.target_version() / 100.0;
109 const string& target_package = command_msg.target_package();
110 const string& target_component_name = command_msg.target_component_name();
111 const string& module_name = command_msg.module_name();
112 const string& hw_binder_service_name = command_msg.hw_binder_service_name();
113 int bits = command_msg.bits();
442 AndroidSystemControlCommandMessage command_msg;
443 if (!VtsSocketRecvMessage(&command_msg)) return false;
445 LOG(DEBUG) << "command_type = " << command_msg.command_type();
446 switch (command_msg.command_type()) {
448 return ListHals(command_msg.paths());
450 return SetHostInfo(command_msg.callback_port());
452 return CheckDriverService(command_msg.service_name(), NULL);
454 return LaunchDriverService(command_msg);
456 return ReadSpecification(command_msg);
460 return CallApi(command_msg.arg(), command_msg.driver_caller_uid());
462 return GetAttribute(command_msg.arg());
465 ExecuteShellCommand(command_msg);
468 LOG(ERROR) << " ERROR unknown command " << command_msg.command_type();