Searched refs:param_init (Results 1 – 4 of 4) sorted by relevance
215 param_init: None, in kunit_case()
699 ``param_init()`` function that initializes the parameterized test and has713 * Example of a parameterized test param_init() function that registers a dynamic760 custom ``param_init()`` and ``param_exit()`` functions. These functions run once763 The ``param_init()`` function, with the signature ``int (*)(struct kunit *test)``,773 Both ``param_init()`` and ``param_exit()`` are passed the parameterized test855 As stated previously ``param_init()`` and ``param_exit()`` get the parameterized856 test context. So, you can directly use ``test->priv`` within ``param_init/exit``890 * Allocate memory using kunit_kzalloc(). Since the `param_init`
672 if (test_case->param_init) { in kunit_init_parent_param_test()673 int err = test_case->param_init(test); in kunit_init_parent_param_test()
134 int (*param_init)(struct kunit *test); member248 .param_init = init, .param_exit = exit, \