| /u-boot/env/ |
| A D | callback.c | 59 var_entry->callback = NULL; in env_callback_init() 75 var_entry->callback = clbkp->callback + gd->reloc_off; in env_callback_init() 77 var_entry->callback = clbkp->callback; in env_callback_init() 88 entry->callback = NULL; in clear_callback() 103 e.callback = NULL; in set_callback() 110 ep->callback = NULL; in set_callback() 116 ep->callback = clbkp->callback + gd->reloc_off; in set_callback() 118 ep->callback = clbkp->callback; in set_callback()
|
| A D | attr.c | 29 int (*callback)(const char *name, const char *attributes, void *priv), in env_attr_walk() 97 retval = callback(name, attributes, priv); in env_attr_walk()
|
| A D | Makefile | 12 obj-y += callback.o
|
| /u-boot/include/ |
| A D | env.h | 35 int (*callback)(const char *name, const char *value, enum env_op op, member 48 #define U_BOOT_ENV_CALLBACK(name, callback) \ argument 51 (void)callback; \ 54 #define U_BOOT_ENV_CALLBACK(name, callback) \ argument 56 {#name, callback}
|
| A D | search.h | 33 int (*callback)(const char *name, const char *value, enum env_op op, member 108 int (*callback)(struct env_entry *entry));
|
| A D | env_attr.h | 24 int (*callback)(const char *name, const char *attributes, void *priv),
|
| /u-boot/doc/develop/ |
| A D | environment.rst | 14 deletion, the callback will provide the opportunity for some side 28 If the callback name is not specified, then the callback is deleted. 39 the same callback without explicitly listing them all out. 41 The signature of the callback functions is:: 43 int callback(const char *name, const char *value, enum env_op op, int flags)
|
| /u-boot/doc/ |
| A D | README.udp | 16 The callback prereq define if all the requirements are 19 The callback start define the first step in the network/udp loop, 23 could be used by both callback.
|
| /u-boot/arch/sandbox/include/asm/ |
| A D | getopt.h | 31 int (*callback)(struct sandbox_state *state, const char *opt); member 44 .callback = sandbox_cmdline_cb_##f, \
|
| /u-boot/drivers/usb/gadget/ |
| A D | g_dnl.c | 127 struct g_dnl_bind_callback *callback = g_dnl_bind_callback_first(); in g_dnl_do_config() local 132 for (; callback != g_dnl_bind_callback_end(); callback++) in g_dnl_do_config() 133 if (!strcmp(s, callback->usb_function_name)) in g_dnl_do_config() 134 return callback->fptr(c); in g_dnl_do_config()
|
| /u-boot/test/env/ |
| A D | hashtable.c | 28 item.callback = NULL; in htab_fill() 48 item.callback = NULL; in htab_check_fill() 71 item.callback = NULL; in htab_create_delete()
|
| /u-boot/arch/mips/mach-octeon/include/mach/ |
| A D | octeon_fdt.h | 58 void (*callback)(void *fdt, int offset, void *arg), void *cbarg);
|
| /u-boot/fs/btrfs/ |
| A D | dir-item.c | 118 btrfs_iter_dir_callback_t callback) in btrfs_iter_dir() argument 158 ret = callback(root, path.nodes[0], di); in btrfs_iter_dir()
|
| /u-boot/drivers/crypto/fsl/ |
| A D | jr.h | 62 void (*callback)(uint32_t status, void *arg); member
|
| A D | jr.c | 156 void (*callback)(uint32_t status, void *arg), in jr_enqueue() 182 jr->info[head].callback = (void *)callback; in jr_enqueue() 239 void (*callback)(uint32_t status, void *arg); in jr_dequeue() local 290 callback = (void *)jr->info[idx].callback; in jr_dequeue() 308 callback(status, arg); in jr_dequeue()
|
| /u-boot/cmd/ |
| A D | nvedit.c | 424 if (entry->callback == NULL) in print_active_callback() 433 if (entry->callback == clbkp->callback + gd->reloc_off) in print_active_callback() 435 if (entry->callback == clbkp->callback) in print_active_callback() 442 printf("\t%-20s %p\n", entry->key, entry->callback); in print_active_callback()
|
| /u-boot/arch/arm/mach-uniphier/dram/ |
| A D | cmd_ddrphy.c | 86 void (*callback)(void __iomem *)) in dump_loop() 97 (*callback)(dx_base); in dump_loop()
|
| A D | cmd_ddrmphy.c | 71 void (*callback)(void __iomem *)) in dump_loop() 82 (*callback)(dx_base); in dump_loop()
|
| /u-boot/common/ |
| A D | menu.c | 61 void *(*callback)(struct menu *, struct menu_item *, void *), in menu_items_iter() 71 ret = callback(m, item, extra); in menu_items_iter()
|
| /u-boot/arch/mips/mach-octeon/ |
| A D | octeon_fdt.c | 161 void (*callback)(void *fdt, int offset, void *arg), 167 void (*callback)(void *fdt, int offset, void *arg), in __octeon_fdt_patch_rename() 300 if (callback) in __octeon_fdt_patch_rename() 301 callback(fdt, offset, cbarg); in __octeon_fdt_patch_rename()
|
| /u-boot/lib/ |
| A D | hashtable.c | 228 if (e->callback) in do_callback() 229 return e->callback(name, value, op, flags); in do_callback() 994 int hwalk_r(struct hsearch_data *htab, int (*callback)(struct env_entry *entry)) in hwalk_r() 1001 retval = callback(&htab->table[i].entry); in hwalk_r()
|
| /u-boot/doc/develop/driver-model/ |
| A D | bind.rst | 12 The unbind command calls the remove device driver callback and unbind the
|
| /u-boot/arch/x86/cpu/ |
| A D | mp_init.c | 615 static int run_ap_work(struct mp_callback *callback, struct udevice *bsp, in run_ap_work() argument 632 store_callback(&ap_callbacks[i], callback); in run_ap_work()
|
| /u-boot/arch/sandbox/cpu/ |
| A D | sdl.c | 487 wanted.callback = sandbox_sdl_fill_audio; in sandbox_sdl_sound_init()
|
| /u-boot/lib/lzma/ |
| A D | lzma.txt | 471 1) you must implement callback structures for interfaces: 530 If callback function return some error code, LzmaEnc_Encode also returns that code
|