Home | History | Annotate | Download | only in feedback

Lines Matching refs:Client

6 from autotest_lib.client.common_lib import error
15 """Instantiates a feedback client.
17 @param fb_client_name: Name of the desired client.
18 @param available_clients: Set of available client names to choose from.
24 @return An instance of client.common_lib.feedback.client.Client.
26 @raise error.TestError: Requested client is invalid/unavailable/unknown.
29 raise error.TestError('Feedback client name is empty')
32 'Feedback client (%s) is unknown or unavailble for this test' %
43 return closed_loop_audio_client.Client(*args)
45 from autotest_lib.client.common_lib.feedback import tester_feedback_client
46 return tester_feedback_client.Client(test_name, dut_name, *args)
49 'Feedback client (%s) unknown despite being listed as '
54 """Instantiates an audio feedback client."""