Home
last modified time | relevance | path

Searched refs:param_init (Results 1 – 4 of 4) sorted by relevance

/linux/rust/kernel/
H A Dkunit.rs215 param_init: None, in kunit_case()
/linux/Documentation/dev-tools/kunit/
H A Dusage.rst699 ``param_init()`` function that initializes the parameterized test and has
713 * Example of a parameterized test param_init() function that registers a dynamic
760 custom ``param_init()`` and ``param_exit()`` functions. These functions run once
763 The ``param_init()`` function, with the signature ``int (*)(struct kunit *test)``,
773 Both ``param_init()`` and ``param_exit()`` are passed the parameterized test
855 As stated previously ``param_init()`` and ``param_exit()`` get the parameterized
856 test context. So, you can directly use ``test->priv`` within ``param_init/exit``
890 * Allocate memory using kunit_kzalloc(). Since the `param_init`
/linux/lib/kunit/
H A Dtest.c672 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()
/linux/include/kunit/
H A Dtest.h134 int (*param_init)(struct kunit *test); member
248 .param_init = init, .param_exit = exit, \