Home | History | Annotate | Download | only in server

Lines Matching refs:string

25 #include <string>
43 int32_t VtsDriverHalSocketServer::LoadHal(const string& path, int target_class,
45 const string& target_package,
46 const string& target_component_name,
47 const string& hw_binder_service_name,
48 const string& /*module_name*/) {
59 string VtsDriverHalSocketServer::ReadSpecification(
60 const string& name, int target_class, int target_type, float target_version,
61 const string& target_package) {
65 string result;
71 string VtsDriverHalSocketServer::Call(const string& arg) {
74 const string& result = driver_manager_->CallFunction(call_msg);
79 string VtsDriverHalSocketServer::GetAttribute(const string& arg) {
82 const string& result = driver_manager_->GetAttribute(call_msg);
87 string VtsDriverHalSocketServer::ListFunctions() const {
90 string output;
98 LOG(ERROR) << "Can't serialize the interface spec message to a string.";
151 const string& result = Call(command_message.arg());
160 const string& result = ReadSpecification(
172 const string& result = GetAttribute(command_message.arg());
181 string result = ListFunctions();
200 int StartSocketServer(const string& socket_port_file,