/third_party/lwip/src/apps/http/ |
H A D | fs.c | 48 u8_t fs_wait_read_custom(struct fs_file *file, fs_wait_cb callback_fn, void *callback_arg); 49 int fs_read_async_custom(struct fs_file *file, char *buffer, int count, fs_wait_cb callback_fn, void *callback_arg); 112 fs_read_async(struct fs_file *file, char *buffer, int count, fs_wait_cb callback_fn, void *callback_arg) in fs_read_async() argument 123 LWIP_UNUSED_ARG(callback_fn); in fs_read_async() 129 return fs_read_async_custom(file, buffer, count, callback_fn, callback_arg); in fs_read_async() 150 fs_is_file_ready(struct fs_file *file, fs_wait_cb callback_fn, void *callback_arg) in fs_is_file_ready() argument 156 if (fs_wait_read_custom(file, callback_fn, callback_arg)) { in fs_is_file_ready() 161 LWIP_UNUSED_ARG(callback_fn); in fs_is_file_ready()
|
/third_party/lwip/src/include/lwip/apps/ |
H A D | smtp.h | 52 * (e.g. using mem_malloc/mem_free) until its 'callback_fn' is called. 59 smtp_result_fn callback_fn; member 103 smtp_bodycback_fn bodycback_fn, smtp_result_fn callback_fn, void* callback_arg); 116 smtp_result_fn callback_fn, void* callback_arg); 118 smtp_result_fn callback_fn, void* callback_arg);
|
H A D | fs.h | 93 int fs_read_async(struct fs_file *file, char *buffer, int count, fs_wait_cb callback_fn, void *callback_arg); 99 int fs_is_file_ready(struct fs_file *file, fs_wait_cb callback_fn, void *callback_arg);
|
/third_party/lwip/src/apps/smtp/ |
H A D | smtp.c | 226 smtp_bodycback_fn callback_fn; /* The function to call (again) */ member 260 smtp_result_fn callback_fn; member 578 * @param callback_fn callback function 579 * @param callback_arg user argument to callback_fn 586 smtp_result_fn callback_fn, void* callback_arg) in smtp_send_mail() 626 s->callback_fn = callback_fn; in smtp_send_mail() 641 const char* body, smtp_result_fn callback_fn, void* callback_arg) in smtp_send_mail_static() 670 s->callback_fn = callback_fn; in smtp_send_mail_static() 585 smtp_send_mail(const char* from, const char* to, const char* subject, const char* body, smtp_result_fn callback_fn, void* callback_arg) smtp_send_mail() argument 640 smtp_send_mail_static(const char *from, const char* to, const char* subject, const char* body, smtp_result_fn callback_fn, void* callback_arg) smtp_send_mail_static() argument 1468 smtp_send_mail_bodycback(const char *from, const char* to, const char* subject, smtp_bodycback_fn bodycback_fn, smtp_result_fn callback_fn, void* callback_arg) smtp_send_mail_bodycback() argument [all...] |
/third_party/libbpf/src/ |
H A D | bpf_helper_defs.h | 3892 * For each element in **map**, call **callback_fn** function with 3894 * The **callback_fn** should be a static function and 3906 * long (\*callback_fn)(struct bpf_map \*map, const void \*key, void \*value, void \*ctx); 3911 * If **callback_fn** return 0, the helper will continue to the next 3920 static long (*bpf_for_each_map_elem)(void *map, void *callback_fn, void *callback_ctx, __u64 flags) = (void *) 164; 4008 * Configure the timer to call *callback_fn* static function. 4018 static long (*bpf_timer_set_callback)(struct bpf_timer *timer, void *callback_fn) = (void *) 170; 4029 * of BPF program to make sure that callback_fn code stays valid. 4034 * bpffs the callback_fn can re-arm itself indefinitely. 4037 * The map can contain timers that invoke callback_fn [all...] |
/third_party/jerryscript/jerry-main/ |
H A D | main-unix.c | 972 jerry_value_t callback_fn = jerry_get_property (global, fn_str); in main() local 977 if (jerry_value_is_function (callback_fn)) in main() 979 jerry_value_t ret_val = jerry_call_function (callback_fn, jerry_create_undefined (), NULL, 0); in main() 991 jerry_release_value (callback_fn); in main()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | STLExtras.h | 62 static Ret callback_fn(intptr_t callable, Params ...params) { in callback_fn() function in llvm::function_ref 73 : callback(callback_fn<typename std::remove_reference<Callable>::type>), in function_ref()
|
/third_party/lwip/src/include/lwip/ |
H A D | netif.h | 692 netif_ext_callback_fn callback_fn; member
|
/third_party/lwip/src/core/ |
H A D | netif.c | 1907 callback->callback_fn = fn; 1958 callback->callback_fn(netif, reason, args);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | STLExtras.h | 107 static Ret callback_fn(intptr_t callable, Params ...params) { in callback_fn() function in llvm::function_ref 121 : callback(callback_fn<typename std::remove_reference<Callable>::type>), in function_ref()
|