Home
last modified time | relevance | path

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

/rk3399_rockchip-uboot/include/
H A D_exports.h7 #ifndef EXPORT_FUNC
8 #define EXPORT_FUNC(a, b, c, ...) macro
10 EXPORT_FUNC(get_version, unsigned long, get_version, void)
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 *)
15 EXPORT_FUNC(printf, int, printf, const char*, ...)
17 EXPORT_FUNC(irq_install_handler, void, install_hdlr,
20 EXPORT_FUNC(irq_free_handler, void, free_hdlr, int)
[all …]
H A Dexports.h53 #define EXPORT_FUNC(impl, res, func, ...) res(*func)(__VA_ARGS__); macro
55 #undef EXPORT_FUNC
/rk3399_rockchip-uboot/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
136 #define EXPORT_FUNC(f, a, x, ...) \ macro
148 #define EXPORT_FUNC(f, a, x, ...) \ macro
[all …]
/rk3399_rockchip-uboot/common/
H A Dexports.c17 #define EXPORT_FUNC(f, a, x, ...) gd->jt->x = f; macro
/rk3399_rockchip-uboot/doc/
H A DREADME.standalone74 EXPORT_FUNC(foobar, long, foobar, int, char)
76 Parameters to EXPORT_FUNC:
102 EXPORT_FUNC(foobar, long, foobar, int, char)
104 EXPORT_FUNC(dummy, void, foobar, void)
H A DREADME.xtensa54 (grep for EXPORT_FUNC). The implementation for Xtensa depends on