Home
last modified time | relevance | path

Searched refs:dm_testdrv_op_count (Results 1 – 5 of 5) sorted by relevance

/openbmc/u-boot/test/dm/
H A Dtest-driver.c17 int dm_testdrv_op_count[DM_TEST_OP_COUNT]; variable
40 dm_testdrv_op_count[DM_TEST_OP_BIND]++; in test_bind()
51 dm_testdrv_op_count[DM_TEST_OP_PROBE]++; in test_probe()
61 dm_testdrv_op_count[DM_TEST_OP_REMOVE]++; in test_remove()
70 dm_testdrv_op_count[DM_TEST_OP_UNBIND]++; in test_unbind()
109 dm_testdrv_op_count[DM_TEST_OP_BIND]++; in test_manual_bind()
118 dm_testdrv_op_count[DM_TEST_OP_PROBE]++; in test_manual_probe()
129 dm_testdrv_op_count[DM_TEST_OP_REMOVE]++; in test_manual_remove()
135 dm_testdrv_op_count[DM_TEST_OP_UNBIND]++; in test_manual_unbind()
H A Dcore.c119 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_POST_BIND]); in dm_test_autobind()
128 ut_asserteq(3, dm_testdrv_op_count[DM_TEST_OP_POST_BIND]); in dm_test_autobind()
135 ut_assert(dm_testdrv_op_count[DM_TEST_OP_BIND] == 3); in dm_test_autobind()
208 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_INIT]); in dm_test_autoprobe()
209 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_PRE_PROBE]); in dm_test_autoprobe()
210 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_POST_PROBE]); in dm_test_autoprobe()
240 ut_asserteq(3, dm_testdrv_op_count[DM_TEST_OP_POST_PROBE]); in dm_test_autoprobe()
241 ut_asserteq(3, dm_testdrv_op_count[DM_TEST_OP_PRE_PROBE]); in dm_test_autoprobe()
291 memcpy(op_count, dm_testdrv_op_count, sizeof(op_count)); in dm_test_lifecycle()
296 ut_assert(dm_testdrv_op_count[DM_TEST_OP_BIND] in dm_test_lifecycle()
[all …]
H A Dtest-uclass.c34 dm_testdrv_op_count[DM_TEST_OP_POST_BIND]++; in test_post_bind()
49 dm_testdrv_op_count[DM_TEST_OP_PRE_UNBIND]++; in test_pre_unbind()
58 dm_testdrv_op_count[DM_TEST_OP_PRE_PROBE]++; in test_pre_probe()
74 dm_testdrv_op_count[DM_TEST_OP_POST_PROBE]++; in test_post_probe()
95 dm_testdrv_op_count[DM_TEST_OP_PRE_REMOVE]++; in test_pre_remove()
102 dm_testdrv_op_count[DM_TEST_OP_INIT]++; in test_init()
110 dm_testdrv_op_count[DM_TEST_OP_DESTROY]++; in test_destroy()
H A Dtest-main.c30 memset(dm_testdrv_op_count, '\0', sizeof(dm_testdrv_op_count)); in dm_test_init()
/openbmc/u-boot/include/dm/
H A Dtest.h125 extern int dm_testdrv_op_count[DM_TEST_OP_COUNT];