Lines Matching refs:result
66 string result; in ReadSpecification() local
67 google::protobuf::TextFormat::PrintToString(msg, &result); in ReadSpecification()
68 LOG(DEBUG) << "Result: " << result; in ReadSpecification()
69 return result; in ReadSpecification()
75 const string& result = driver_manager_->CallFunction(call_msg); in Call() local
76 LOG(DEBUG) << "Result: " << result; in Call()
77 return result; in Call()
83 const string& result = driver_manager_->GetAttribute(call_msg); in GetAttribute() local
84 LOG(DEBUG) << "Result: " << result; in GetAttribute()
85 return result; in GetAttribute()
141 int32_t result = command_message.status_type(); in ProcessOneCommand() local
144 response_message.set_return_value(result); in ProcessOneCommand()
153 const string& result = Call(command_message.arg()); in ProcessOneCommand() local
156 response_message.set_return_message(result); in ProcessOneCommand()
162 const string& result = ReadSpecification( in ProcessOneCommand() local
169 response_message.set_return_message(result); in ProcessOneCommand()
175 const string& result = GetAttribute(command_message.arg()); in ProcessOneCommand() local
178 response_message.set_return_message(result); in ProcessOneCommand()
184 string result = ListFunctions(); in ProcessOneCommand() local
186 if (result.size() > 0) { in ProcessOneCommand()
188 response_message.set_return_message(result.c_str()); in ProcessOneCommand()