Searched refs:dm_testdrv_op_count (Results 1 – 5 of 5) sorted by relevance
| /OK3568_Linux_fs/u-boot/test/dm/ |
| H A D | core.c | 120 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_POST_BIND]); in dm_test_autobind() 129 ut_asserteq(3, dm_testdrv_op_count[DM_TEST_OP_POST_BIND]); in dm_test_autobind() 136 ut_assert(dm_testdrv_op_count[DM_TEST_OP_BIND] == 3); in dm_test_autobind() 209 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_INIT]); in dm_test_autoprobe() 210 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_PRE_PROBE]); in dm_test_autoprobe() 211 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_POST_PROBE]); in dm_test_autoprobe() 241 ut_asserteq(3, dm_testdrv_op_count[DM_TEST_OP_POST_PROBE]); in dm_test_autoprobe() 242 ut_asserteq(3, dm_testdrv_op_count[DM_TEST_OP_PRE_PROBE]); in dm_test_autoprobe() 292 memcpy(op_count, dm_testdrv_op_count, sizeof(op_count)); in dm_test_lifecycle() 297 ut_assert(dm_testdrv_op_count[DM_TEST_OP_BIND] in dm_test_lifecycle() [all …]
|
| H A D | test-driver.c | 18 int dm_testdrv_op_count[DM_TEST_OP_COUNT]; variable 41 dm_testdrv_op_count[DM_TEST_OP_BIND]++; in test_bind() 52 dm_testdrv_op_count[DM_TEST_OP_PROBE]++; in test_probe() 62 dm_testdrv_op_count[DM_TEST_OP_REMOVE]++; in test_remove() 71 dm_testdrv_op_count[DM_TEST_OP_UNBIND]++; in test_unbind() 110 dm_testdrv_op_count[DM_TEST_OP_BIND]++; in test_manual_bind() 119 dm_testdrv_op_count[DM_TEST_OP_PROBE]++; in test_manual_probe() 130 dm_testdrv_op_count[DM_TEST_OP_REMOVE]++; in test_manual_remove() 136 dm_testdrv_op_count[DM_TEST_OP_UNBIND]++; in test_manual_unbind()
|
| H A D | test-uclass.c | 35 dm_testdrv_op_count[DM_TEST_OP_POST_BIND]++; in test_post_bind() 50 dm_testdrv_op_count[DM_TEST_OP_PRE_UNBIND]++; in test_pre_unbind() 59 dm_testdrv_op_count[DM_TEST_OP_PRE_PROBE]++; in test_pre_probe() 75 dm_testdrv_op_count[DM_TEST_OP_POST_PROBE]++; in test_post_probe() 96 dm_testdrv_op_count[DM_TEST_OP_PRE_REMOVE]++; in test_pre_remove() 103 dm_testdrv_op_count[DM_TEST_OP_INIT]++; in test_init() 111 dm_testdrv_op_count[DM_TEST_OP_DESTROY]++; in test_destroy()
|
| H A D | test-main.c | 31 memset(dm_testdrv_op_count, '\0', sizeof(dm_testdrv_op_count)); in dm_test_init()
|
| /OK3568_Linux_fs/u-boot/include/dm/ |
| H A D | test.h | 125 extern int dm_testdrv_op_count[DM_TEST_OP_COUNT];
|