| /lib/ |
| A D | of_live.c | 105 char *fn; in unflatten_dt_node() local 107 fn = (char *)np + sizeof(*np); in unflatten_dt_node() 112 np->full_name = fn; in unflatten_dt_node() 116 strcpy(fn, dad->full_name); in unflatten_dt_node() 118 if ((strlen(fn) + l + 1) != allocl) { in unflatten_dt_node() 120 pathp, (int)strlen(fn), l, in unflatten_dt_node() 124 fn += strlen(fn); in unflatten_dt_node() 126 *(fn++) = '/'; in unflatten_dt_node() 128 memcpy(fn, pathp, l); in unflatten_dt_node()
|
| A D | uthread.c | 37 curr->fn(curr->arg); in uthread_trampoline() 57 int uthread_create(struct uthread *uthr, void (*fn)(void *), void *arg, in uthread_create() 77 uthr->fn = fn; in uthread_create()
|
| /lib/lwip/lwip/src/apps/snmp/ |
| A D | snmp_mib2.c | 62 snmp_mib2_lwip_synchronizer(snmp_threadsync_called_fn fn, void *arg) in snmp_mib2_lwip_synchronizer() argument 66 fn(arg); in snmp_mib2_lwip_synchronizer() 69 tcpip_callback(fn, arg); in snmp_mib2_lwip_synchronizer()
|
| A D | snmp_threadsync.c | 45 call_synced_function(struct threadsync_data *call_data, snmp_threadsync_called_fn fn) in call_synced_function() argument 48 call_data->threadsync_node->instance->sync_fn(fn, call_data); in call_synced_function() 173 …_t *root_oid, u8_t root_oid_len, struct snmp_node_instance *instance, snmp_threadsync_called_fn fn) in do_sync() argument 193 call_synced_function(call_data, fn); in do_sync()
|
| /lib/lwip/lwip/src/api/ |
| A D | tcpip.c | 442 tcpip_send_msg_wait_sem(tcpip_callback_fn fn, void *apimsg, sys_sem_t *sem) in tcpip_send_msg_wait_sem() argument 447 fn(apimsg); in tcpip_send_msg_wait_sem() 458 TCPIP_MSG_VAR_REF(msg).msg.api_msg.function = fn; in tcpip_send_msg_wait_sem() 478 tcpip_api_call(tcpip_api_call_fn fn, struct tcpip_api_call_data *call) in tcpip_api_call() argument 483 err = fn(call); in tcpip_api_call() 501 TCPIP_MSG_VAR_REF(msg).msg.api_call.function = fn; in tcpip_api_call()
|
| A D | api_lib.c | 118 netconn_apimsg(tcpip_callback_fn fn, struct api_msg *apimsg) in netconn_apimsg() argument 131 err = tcpip_send_msg_wait_sem(fn, apimsg, LWIP_API_MSG_SEM(apimsg)); in netconn_apimsg()
|
| /lib/lwip/lwip/src/include/lwip/priv/ |
| A D | tcpip_priv.h | 97 err_t tcpip_send_msg_wait_sem(tcpip_callback_fn fn, void *apimsg, sys_sem_t* sem); 111 err_t tcpip_api_call(tcpip_api_call_fn fn, struct tcpip_api_call_data *call);
|
| /lib/lwip/lwip/src/include/lwip/apps/ |
| A D | snmp_mib2.h | 55 void snmp_mib2_lwip_synchronizer(snmp_threadsync_called_fn fn, void* arg);
|
| A D | snmp_threadsync.h | 53 typedef void (*snmp_threadsync_synchronizer_fn)(snmp_threadsync_called_fn fn, void* arg);
|
| /lib/zstd/decompress/ |
| A D | huf_decompress.c | 83 #define HUF_DGEN(fn) \ argument 85 static size_t fn##_default( \ 90 return fn##_body(dst, dstSize, cSrc, cSrcSize, DTable); \ 93 static BMI2_TARGET_ATTRIBUTE size_t fn##_bmi2( \ 98 return fn##_body(dst, dstSize, cSrc, cSrcSize, DTable); \ 101 static size_t fn(void* dst, size_t dstSize, void const* cSrc, \ 105 return fn##_bmi2(dst, dstSize, cSrc, cSrcSize, DTable); \ 107 return fn##_default(dst, dstSize, cSrc, cSrcSize, DTable); \ 112 #define HUF_DGEN(fn) \ argument 113 static size_t fn(void* dst, size_t dstSize, void const* cSrc, \ [all …]
|
| /lib/lwip/lwip/src/include/lwip/ |
| A D | netif.h | 679 void netif_add_ext_callback(netif_ext_callback_t* callback, netif_ext_callback_fn fn); 684 #define netif_add_ext_callback(callback, fn) argument
|
| /lib/lwip/lwip/src/core/ |
| A D | netif.c | 1792 netif_add_ext_callback(netif_ext_callback_t *callback, netif_ext_callback_fn fn) in netif_add_ext_callback() argument 1796 LWIP_ASSERT("fn must be != NULL", fn != NULL); in netif_add_ext_callback() 1798 callback->callback_fn = fn; in netif_add_ext_callback()
|
| /lib/lwip/lwip/src/apps/smtp/ |
| A D | smtp.c | 759 smtp_result_fn fn = s->callback_fn; in smtp_free() local 765 if (fn != NULL) { in smtp_free() 766 fn(arg, result, srv_err, err); in smtp_free()
|