Lines Matching refs:response
8 def in_tree(response, name, uclass, drv, depth, last_child): argument
9 lines = [x.strip() for x in response.splitlines()]
37 response = u_boot_console.run_command('unbind /bind-test/bind-test-child1')
38 assert response == ''
45 response = u_boot_console.run_command('bind /bind-test/bind-test-child1 phy_sandbox')
46 assert response == ''
53 response = u_boot_console.run_command('unbind /bind-test/bind-test-child2')
54 assert response == ''
62 response = u_boot_console.run_command('bind /bind-test/bind-test-child2 simple_bus')
63 assert response == ''
70 response = u_boot_console.run_command('unbind /bind-test')
71 assert response == ''
78 response = u_boot_console.run_command('bind /not-a-valid-node simple_bus')
79 assert response != ''
84 response = u_boot_console.run_command('bind /bind-test not_a_driver')
85 assert response != ''
90 response = u_boot_console.run_command('bind /bind-test simple_bus')
91 assert response == ''
97 response = u_boot_console.run_command('unbind /bind-test')
98 assert response == ''
115 response = u_boot_console.run_command('bind /bind-test simple_bus')
116 assert response == ''
127 …response = u_boot_console.run_command('bind {} {} simple_bus'.format(child2_uclass, child2_index,…
139 response = u_boot_console.run_command('unbind simple_bus {}'.format(child_of_child2_index))
140 assert response == ''
148 …response = u_boot_console.run_command('bind {} {} simple_bus'.format(child2_uclass, child2_index,…
161 …response = u_boot_console.run_command('unbind {} {} simple_bus'.format(child2_uclass, child2_inde…
162 assert response == ''
172 …response = u_boot_console.run_command('unbind {} {} simple_bus'.format(child2_uclass, child2_inde…
175 assert response == ''
178 response = u_boot_console.run_command('unbind /bind-test')
179 assert response == ''