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.c135 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()
296 ut_assert(dm_testdrv_op_count[DM_TEST_OP_BIND] in dm_test_lifecycle()
304 ut_assert(dm_testdrv_op_count[DM_TEST_OP_PROBE] in dm_test_lifecycle()
311 ut_assert(dm_testdrv_op_count[DM_TEST_OP_PROBE] in dm_test_lifecycle()
511 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_INIT]); in dm_test_uclass()
516 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_INIT]); in dm_test_uclass()
619 dm_testdrv_op_count[DM_TEST_OP_REMOVE] = 0; in dm_test_children()
626 dm_testdrv_op_count[DM_TEST_OP_REMOVE]); in dm_test_children()
631 dm_testdrv_op_count[DM_TEST_OP_UNBIND] = 0; in dm_test_children()
[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];