Searched refs:FUNC_ALIAS (Results 1 – 15 of 15) sorted by relevance
/Zephyr-latest/lib/posix/options/ |
D | fd_mgmt.c | 33 FUNC_ALIAS(fcntl, _fcntl, int); 41 FUNC_ALIAS(ftruncate, _ftruncate, int); 49 FUNC_ALIAS(lseek, _lseek, off_t);
|
D | device_io.c | 49 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);
|
D | multi_process.c | 25 FUNC_ALIAS(getpid, _getpid, pid_t);
|
D | fsync.c | 17 FUNC_ALIAS(fsync, _fsync, int);
|
D | signal.c | 141 FUNC_ALIAS(kill, _kill, int);
|
D | fs.c | 446 FUNC_ALIAS(fstat, _fstat, int);
|
/Zephyr-latest/lib/libc/newlib/ |
D | libc-hooks.c | 232 __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/ |
D | mm_drv_common.c | 158 __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/ |
D | ieee802154_radio_aloha.c | 25 FUNC_ALIAS(aloha_channel_access, ieee802154_wait_for_clear_channel, int);
|
D | ieee802154_radio_csma_ca.c | 72 FUNC_ALIAS(unslotted_csma_ca_channel_access, ieee802154_wait_for_clear_channel, int);
|
/Zephyr-latest/kernel/ |
D | compiler_stack_protect.c | 65 FUNC_ALIAS(_StackCheckHandler, __stack_chk_fail, void);
|
D | mmu.c | 501 __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/ |
D | exc_exit.c | 45 FUNC_ALIAS(z_arm_exc_exit, z_arm_int_exit, void);
|
/Zephyr-latest/include/zephyr/net/ |
D | net_mgmt.h | 123 FUNC_ALIAS(_func, net_mgmt_##_mgmt_request, int)
|
/Zephyr-latest/include/zephyr/toolchain/ |
D | gcc.h | 103 #define FUNC_ALIAS(real_func, new_alias, return_type) \ macro
|