Home
last modified time | relevance | path

Searched refs:__kunit_add_resource (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/include/kunit/
H A Dresource.h153 int __kunit_add_resource(struct kunit *test,
176 return __kunit_add_resource(test, init, free, res, data); in kunit_add_resource()
212 return __kunit_add_resource(test, init, free, res, data); in kunit_add_named_resource()
252 ret = __kunit_add_resource(test, init, free, res, context); in kunit_alloc_and_get_resource()
293 if (!__kunit_add_resource(test, init, free, res, context)) in kunit_alloc_resource()
/openbmc/linux/lib/kunit/
H A Dresource.c19 int __kunit_add_resource(struct kunit *test, in __kunit_add_resource() function
46 EXPORT_SYMBOL_GPL(__kunit_add_resource);
110 __kunit_add_resource(test, NULL, __kunit_action_free, &action_ctx->res, action_ctx); in kunit_add_action()