Home
last modified time | relevance | path

Searched refs:EXPORT_FUNC (Results 1 – 6 of 6) sorted by relevance

/openbmc/u-boot/include/
H A D_exports.h7 #ifndef EXPORT_FUNC
8 #define EXPORT_FUNC(a, b, c, ...) macro
11 EXPORT_FUNC(getc, int, getc, void)
12 EXPORT_FUNC(tstc, int, tstc, void)
13 EXPORT_FUNC(putc, void, putc, const char)
14 EXPORT_FUNC(puts, void, puts, const char *)
23 EXPORT_FUNC(dummy, void, free_hdlr, void)
25 EXPORT_FUNC(malloc, void *, malloc, size_t)
27 EXPORT_FUNC(free, void, free, void *)
49 EXPORT_FUNC(dummy, void, i2c_read, void)
[all …]
H A Dexports.h53 #define EXPORT_FUNC(impl, res, func, ...) res(*func)(__VA_ARGS__); macro
55 #undef EXPORT_FUNC
/openbmc/u-boot/examples/standalone/
H A Dstubs.c18 #define EXPORT_FUNC(f, a, x, ...) \ macro
31 #define EXPORT_FUNC(f, a, x, ...) \ macro
46 #define EXPORT_FUNC(f, a, x, ...) \ macro
59 #define EXPORT_FUNC(f, a, x, ...) \ macro
76 #define EXPORT_FUNC(f, a, x, ...) \ macro
92 #define EXPORT_FUNC(f, a, x, ...) \ macro
105 #define EXPORT_FUNC(f, a, x, ...) \ macro
121 #define EXPORT_FUNC(f, a, x, ...) \ macro
167 #define EXPORT_FUNC(f, a, x, ...) \ macro
180 #define EXPORT_FUNC(f, a, x, ...) \ macro
[all …]
/openbmc/u-boot/doc/
H A DREADME.standalone75 EXPORT_FUNC(foobar, long, foobar, int, char)
77 Parameters to EXPORT_FUNC:
103 EXPORT_FUNC(foobar, long, foobar, int, char)
105 EXPORT_FUNC(dummy, void, foobar, void)
H A DREADME.xtensa54 (grep for EXPORT_FUNC). The implementation for Xtensa depends on
/openbmc/u-boot/common/
H A Dexports.c17 #define EXPORT_FUNC(f, a, x, ...) gd->jt->x = f; macro