Home
last modified time | relevance | path

Searched refs:KUNIT_STATIC_STUB_REDIRECT (Results 1 – 3 of 3) sorted by relevance

/openbmc/linux/include/kunit/
H A Dstatic_stub.h14 #define KUNIT_STATIC_STUB_REDIRECT(real_fn_name, args...) do {} while (0) macro
59 #define KUNIT_STATIC_STUB_REDIRECT(real_fn_name, args...) \ macro
/openbmc/linux/Documentation/dev-tools/kunit/api/
H A Dfunctionredirection.rst48 1. Add the KUNIT_STATIC_STUB_REDIRECT() macro to the start of the "real"
52 declarations. KUNIT_STATIC_STUB_REDIRECT() takes the name of the
61 KUNIT_STATIC_STUB_REDIRECT(send_data_to_hardware, str);
133 KUNIT_STATIC_STUB_REDIRECT(send_data_to_hardware, str);
/openbmc/linux/lib/kunit/
H A Dkunit-example-test.c158 KUNIT_STATIC_STUB_REDIRECT(add_one, i); in add_one()