Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/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
/OK3568_Linux_fs/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
136 #define EXPORT_FUNC(f, a, x, ...) \ macro
148 #define EXPORT_FUNC(f, a, x, ...) \ macro
[all …]
/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0047-dl-Only-allow-unloading-modules-that-are-not-depende.patch70 @@ -203,9 +203,11 @@ grub_dl_t EXPORT_FUNC(grub_dl_load) (const char *name);
72 grub_dl_t EXPORT_FUNC(grub_dl_load_core_noinit) (void *addr, grub_size_t size);
73 int EXPORT_FUNC(grub_dl_unload) (grub_dl_t mod);
75 -int EXPORT_FUNC(grub_dl_ref) (grub_dl_t mod);
76 -int EXPORT_FUNC(grub_dl_unref) (grub_dl_t mod);
78 +extern int EXPORT_FUNC(grub_dl_ref) (grub_dl_t mod);
79 +extern int EXPORT_FUNC(grub_dl_unref) (grub_dl_t mod);
80 +extern int EXPORT_FUNC(grub_dl_ref_count) (grub_dl_t mod);
H A D0004-calloc-Make-sure-we-always-have-an-overflow-checking.patch209 +void * EXPORT_FUNC(xcalloc) (grub_size_t nmemb, grub_size_t size) WARN_UNUSED_RESULT;
210 void * EXPORT_FUNC(xmalloc) (grub_size_t size) WARN_UNUSED_RESULT;
211 void * EXPORT_FUNC(xrealloc) (void *ptr, grub_size_t size) WARN_UNUSED_RESULT;
212 char * EXPORT_FUNC(xstrdup) (const char *str) WARN_UNUSED_RESULT;
221 +void *EXPORT_FUNC(grub_calloc) (grub_size_t nmemb, grub_size_t size);
222 void *EXPORT_FUNC(grub_malloc) (grub_size_t size);
223 void *EXPORT_FUNC(grub_zalloc) (grub_size_t size);
224 void EXPORT_FUNC(grub_free) (void *ptr);
239 +void *EXPORT_FUNC(grub_debug_calloc) (const char *file, int line,
241 void *EXPORT_FUNC(grub_debug_malloc) (const char *file, int line,
[all …]
H A D0030-efi-Return-grub_efi_status_t-from-grub_efi_get_varia.patch133 @@ -74,9 +74,10 @@ grub_err_t EXPORT_FUNC (grub_efi_set_virtual_address_map) (grub_efi_uintn_t memo
137 -void *EXPORT_FUNC (grub_efi_get_variable) (const char *variable,
140 +grub_efi_status_t EXPORT_FUNC (grub_efi_get_variable) (const char *variable,
145 EXPORT_FUNC (grub_efi_set_variable) (const char *var,
H A D0031-efi-Add-a-function-to-read-EFI-variables-with-attrib.patch64 @@ -74,6 +74,11 @@ grub_err_t EXPORT_FUNC (grub_efi_set_virtual_address_map) (grub_efi_uintn_t memo
68 +grub_efi_status_t EXPORT_FUNC (grub_efi_get_variable_with_attributes) (const char *variable,
73 grub_efi_status_t EXPORT_FUNC (grub_efi_get_variable) (const char *variable,
H A D0035-kern-Add-lockdown-support.patch661 @@ -86,6 +86,11 @@ EXPORT_FUNC(grub_register_command_prio) (const char *name,
666 +EXPORT_FUNC(grub_register_command_lockdown) (const char *name,
670 void EXPORT_FUNC(grub_unregister_command) (grub_command_t cmd);
677 @@ -62,6 +62,13 @@ grub_extcmd_t EXPORT_FUNC(grub_register_extcmd) (const char *name,
681 +grub_extcmd_t EXPORT_FUNC(grub_register_extcmd_lockdown) (const char *name,
688 grub_extcmd_t EXPORT_FUNC(grub_register_extcmd_prio) (const char *name,
725 +EXPORT_FUNC (grub_lockdown) (void);
727 +EXPORT_FUNC (grub_is_lockdown) (void);
H A D0026-efi-Fix-use-after-free-in-halt-reboot-path.patch180 void EXPORT_FUNC (grub_loader_set) (grub_err_t (*boot) (void),
H A D0146-kern-misc-Add-function-to-check-printf-format-agains.patch212 +grub_err_t EXPORT_FUNC (grub_printf_fmt_check) (const char *fmt, const char *fmt_expected);
H A D0133-kern-efi-Add-initial-stack-protector-implementation.patch448 +extern void __attribute__ ((noreturn)) EXPORT_FUNC (__stack_chk_fail) (void);
H A D0032-efi-Add-secure-boot-detection.patch510 +EXPORT_FUNC (grub_efi_get_secureboot) (void);
H A D0033-verifiers-Move-verifiers-API-to-kernel-image.patch1625 +EXPORT_FUNC (grub_verify_string) (char *str, enum grub_verify_string_type type);
H A D0034-efi-Move-the-shim_lock-verifier-to-the-GRUB-core.patch13204 EXPORT_FUNC (grub_efi_get_secureboot) (void);
/OK3568_Linux_fs/u-boot/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
/OK3568_Linux_fs/yocto/poky/meta/recipes-bsp/grub/files/
H A Dcommands-boot-Add-API-to-pass-context-to-loader.patch154 @@ -40,6 +40,11 @@ void EXPORT_FUNC (grub_loader_set) (grub_err_t (*boot) (void),
158 +void EXPORT_FUNC (grub_loader_set_ex) (grub_err_t (*boot) (void *context),
164 void EXPORT_FUNC (grub_loader_unset) (void);
H A D0001-font-Fix-size-overflow-in-grub_font_get_glyph_intern.patch100 void EXPORT_FUNC (grub_video_bitmap_get_mode_info) (struct grub_video_bitmap *bitmap,
/OK3568_Linux_fs/u-boot/common/
H A Dexports.c17 #define EXPORT_FUNC(f, a, x, ...) gd->jt->x = f; macro