Home
last modified time | relevance | path

Searched refs:fun (Results 1 – 13 of 13) sorted by relevance

/Zephyr-latest/scripts/
Dvalgrind.supp5 fun:malloc
6 fun:realloc
7 fun:load_blacklist
8 fun:bindresvport
15 fun:posix_new_thread
16 fun:arch_new_thread
23 fun:posix_boot_cpu
25 fun:main
32 fun:nct_init
33 fun:posix_arch_init
[all …]
/Zephyr-latest/include/zephyr/dt-bindings/pinctrl/
Dgecko-pinctrl.h83 #define GECKO_PSEL(fun, port, pin) \ argument
86 ((GECKO_FUN_##fun & GECKO_FUN_MSK) << GECKO_FUN_POS))
94 #define GECKO_LOC(fun, loc) \ argument
96 ((GECKO_FUN_##fun##_LOC & GECKO_FUN_MSK) << GECKO_FUN_POS))
Dgecko-pinctrl-s1.h103 #define GECKO_PSEL(fun, port, pin) \ argument
106 ((GECKO_FUN_##fun & GECKO_FUN_MSK) << GECKO_FUN_POS))
114 #define GECKO_LOC(fun, loc) \ argument
116 ((GECKO_FUN_##fun##_LOC & GECKO_FUN_MSK) << GECKO_FUN_POS))
Dnrf-pinctrl.h242 #define NRF_PSEL(fun, port, pin) \ argument
244 ((NRF_FUN_ ## fun & NRF_FUN_MSK) << NRF_FUN_POS))
254 #define NRF_PSEL_DISCONNECTED(fun) \ argument
256 ((NRF_FUN_ ## fun & NRF_FUN_MSK) << NRF_FUN_POS))
Dquicklogic-eos-s3-pinctrl.h17 #define QUICKLOGIC_EOS_S3_PINMUX(pin, fun) (pin) (fun) argument
Dsi32-pinctrl.h110 #define SI32_MUX(fun, port, pin) \ argument
111 ((((port)&0x7)) | (((pin)&0xF) << 3) | ((SI32_SIGNAL_##fun & 0x7F) << 22))
/Zephyr-latest/tests/lib/c_lib/thrd/src/
Dthrd.c58 thrd_start_t fun = thrd_create_join_fn; in ZTEST() local
66 zassert_equal(thrd_error, thrd_create(NULL, fun, NULL)); in ZTEST()
67 zassert_equal(thrd_error, thrd_create(NULL, fun, &param)); in ZTEST()
72 zassert_equal(thrd_success, thrd_create(&thr, fun, NULL)); in ZTEST()
75 zassert_equal(thrd_success, thrd_create(&thr, fun, &param)); in ZTEST()
/Zephyr-latest/soc/nordic/common/
Dpinctrl_soc.h37 #define Z_CHECK_CLOCKPIN_ENABLE(node_id, prop, idx, fun) \ argument
38 DT_PROP_BY_IDX(node_id, prop, idx) == fun ? BIT(NRF_CLOCKPIN_ENABLE_POS) :
/Zephyr-latest/tests/application_development/code_relocation/src/
Dtest_file1.c88 __in_section(custom_section, static, fun) void function_in_custom_section(void) in __in_section() argument
/Zephyr-latest/samples/net/sockets/socketpair/src/
Dmain.c69 static void *fun(void *arg) in fun() function
134 res = pthread_create(&ctx[i].thread, attrp, fun, &ctx[i]); in setup()
/Zephyr-latest/boards/bytesatwork/bytesensi_l/doc/
Dindex.rst6 The byteSENSI-L is a fun LoRa device based on nRF52 MCU that integrates many
/Zephyr-latest/modules/hal_infineon/abstraction-rtos/source/COMPONENT_ZEPHYR/
Dcyabs_rtos_zephyr.c780 cy_timer_callback_t fun, cy_timer_callback_arg_t arg) in cy_rtos_init_timer() argument
784 if ((timer == NULL) || (fun == NULL)) { in cy_rtos_init_timer()
787 timer->callback_function = (void *)fun; in cy_rtos_init_timer()
/Zephyr-latest/tests/net/tcp/src/
Dmain.c143 const char *fun, int line) in verify_flags() argument
148 fun, line, th->th_flags, flags); in verify_flags()