Home
last modified time | relevance | path

Searched refs:FUNC_ALIAS (Results 1 – 15 of 15) sorted by relevance

/Zephyr-latest/lib/posix/options/
Dfd_mgmt.c33 FUNC_ALIAS(fcntl, _fcntl, int);
41 FUNC_ALIAS(ftruncate, _ftruncate, int);
49 FUNC_ALIAS(lseek, _lseek, off_t);
Ddevice_io.c49 FUNC_ALIAS(close, _close, int);
76 FUNC_ALIAS(open, _open, int);
119 FUNC_ALIAS(read, _read, ssize_t);
137 FUNC_ALIAS(write, _write, ssize_t);
Dmulti_process.c25 FUNC_ALIAS(getpid, _getpid, pid_t);
Dfsync.c17 FUNC_ALIAS(fsync, _fsync, int);
Dsignal.c141 FUNC_ALIAS(kill, _kill, int);
Dfs.c446 FUNC_ALIAS(fstat, _fstat, int);
/Zephyr-latest/lib/libc/newlib/
Dlibc-hooks.c232 __weak FUNC_ALIAS(_read, read, int);
240 __weak FUNC_ALIAS(_write, write, int);
246 __weak FUNC_ALIAS(_open, open, int);
252 __weak FUNC_ALIAS(_close, close, int);
260 __weak FUNC_ALIAS(_lseek, lseek, int);
267 __weak FUNC_ALIAS(_isatty, isatty, int);
274 __weak FUNC_ALIAS(_kill, kill, int);
283 __weak FUNC_ALIAS(_fstat, fstat, int);
291 __weak FUNC_ALIAS(_getpid, getpid, int);
323 __weak FUNC_ALIAS(_sbrk, sbrk, void *);
/Zephyr-latest/drivers/mm/
Dmm_drv_common.c158 __weak FUNC_ALIAS(sys_mm_drv_simple_map_region,
206 __weak FUNC_ALIAS(sys_mm_drv_simple_map_array, sys_mm_drv_map_array, int);
229 __weak FUNC_ALIAS(sys_mm_drv_simple_unmap_region,
326 __weak FUNC_ALIAS(sys_mm_drv_simple_remap_region,
410 __weak FUNC_ALIAS(sys_mm_drv_simple_move_region,
501 __weak FUNC_ALIAS(sys_mm_drv_simple_move_array,
536 __weak FUNC_ALIAS(sys_mm_drv_simple_update_region_flags,
548 __weak FUNC_ALIAS(sys_mm_drv_simple_query_memory_regions,
557 __weak FUNC_ALIAS(sys_mm_drv_simple_query_memory_regions_free,
/Zephyr-latest/subsys/net/l2/ieee802154/
Dieee802154_radio_aloha.c25 FUNC_ALIAS(aloha_channel_access, ieee802154_wait_for_clear_channel, int);
Dieee802154_radio_csma_ca.c72 FUNC_ALIAS(unslotted_csma_ca_channel_access, ieee802154_wait_for_clear_channel, int);
/Zephyr-latest/kernel/
Dcompiler_stack_protect.c65 FUNC_ALIAS(_StackCheckHandler, __stack_chk_fail, void);
Dmmu.c501 __weak FUNC_ALIAS(virt_to_page_frame, arch_page_phys_get, int);
885 __weak FUNC_ALIAS(virt_region_align, arch_virt_region_align, size_t);
/Zephyr-latest/arch/arm/core/cortex_m/
Dexc_exit.c45 FUNC_ALIAS(z_arm_exc_exit, z_arm_int_exit, void);
/Zephyr-latest/include/zephyr/net/
Dnet_mgmt.h123 FUNC_ALIAS(_func, net_mgmt_##_mgmt_request, int)
/Zephyr-latest/include/zephyr/toolchain/
Dgcc.h103 #define FUNC_ALIAS(real_func, new_alias, return_type) \ macro