Lines Matching refs:found_device
116 rt_device_t found_device; in test_object_find_operations() local
147 found_device = rt_device_find(name); in test_object_find_operations()
148 uassert_not_null(found_device); in test_object_find_operations()
149 uassert_ptr_equal(found_device, &device); in test_object_find_operations()
150 uassert_str_equal(found_device->parent.name, name); in test_object_find_operations()
163 found_device = rt_device_find(name1); in test_object_find_operations()
164 uassert_not_null(found_device); in test_object_find_operations()
165 uassert_ptr_equal(found_device, &dev1); in test_object_find_operations()
166 uassert_str_equal(found_device->parent.name, name1); in test_object_find_operations()
167 found_device = rt_device_find(name2); in test_object_find_operations()
168 uassert_not_null(found_device); in test_object_find_operations()
169 uassert_ptr_equal(found_device, &dev2); in test_object_find_operations()
170 uassert_str_equal(found_device->parent.name, name2); in test_object_find_operations()
188 found_device = rt_device_find(NULL); in test_object_find_operations()
189 uassert_null(found_device); in test_object_find_operations()