Home | History | Annotate | Download | only in feedback

Lines Matching refs:Client

6 from autotest_lib.client.common_lib import error
14 """Instantiates a feedback client.
16 @param fb_client_name: Name of the desired client.
17 @param available_clients: Set of available client names to choose from.
23 @return An instance of client.common_lib.feedback.client.Client.
25 @raise error.TestError: Requested client is invalid/unavailable/unknown.
28 raise error.TestError('Feedback client name is empty')
31 'Feedback client (%s) is unknown or unavailble for this test' %
40 return closed_loop_audio_client.Client(*args)
42 from autotest_lib.client.common_lib.feedback import tester_feedback_client
43 return tester_feedback_client.Client(test_name, dut_name, *args)
46 'Feedback client (%s) unknown despite being listed as '
51 """Instantiates an audio feedback client."""