Lines Matching refs:error_msg
195 std::string error_msg; in Execute() local
198 error_msg.assign("ambiguous command "); in Execute()
200 error_msg.assign("invalid command "); in Execute()
202 error_msg.append("'"); in Execute()
203 error_msg.append(std::string(GetCommandName())); in Execute()
204 error_msg.append(" "); in Execute()
205 error_msg.append(std::string(sub_command)); in Execute()
206 error_msg.append("'."); in Execute()
209 error_msg.append(" Possible completions:"); in Execute()
211 error_msg.append("\n\t"); in Execute()
212 error_msg.append(match); in Execute()
215 error_msg.append("\n"); in Execute()
216 result.AppendRawError(error_msg.c_str()); in Execute()