/Zephyr-Core-3.7.0/subsys/modem/ |
D | modem_pipe.c | 14 static void pipe_set_callback(struct modem_pipe *pipe, in pipe_set_callback() 24 static void pipe_call_callback(struct modem_pipe *pipe, enum modem_pipe_event event) in pipe_call_callback() 33 static uint32_t pipe_test_events(struct modem_pipe *pipe, uint32_t events) in pipe_test_events() 38 static uint32_t pipe_await_events(struct modem_pipe *pipe, in pipe_await_events() 45 static void pipe_post_events(struct modem_pipe *pipe, uint32_t events) in pipe_post_events() 50 static void pipe_clear_events(struct modem_pipe *pipe, uint32_t events) in pipe_clear_events() 55 static void pipe_set_events(struct modem_pipe *pipe, uint32_t events) in pipe_set_events() 60 static int pipe_call_open(struct modem_pipe *pipe) in pipe_call_open() 65 static int pipe_call_transmit(struct modem_pipe *pipe, const uint8_t *buf, size_t size) in pipe_call_transmit() 70 static int pipe_call_receive(struct modem_pipe *pipe, uint8_t *buf, size_t size) in pipe_call_receive() [all …]
|
D | modem_pipelink.c | 52 void modem_pipelink_init(struct modem_pipelink *link, struct modem_pipe *pipe) in modem_pipelink_init()
|
D | modem_ubx.c | 179 static void modem_ubx_pipe_callback(struct modem_pipe *pipe, enum modem_pipe_event event, in modem_ubx_pipe_callback() 284 int modem_ubx_attach(struct modem_ubx *ubx, struct modem_pipe *pipe) in modem_ubx_attach()
|
D | modem_ppp.c | 336 static void modem_ppp_pipe_callback(struct modem_pipe *pipe, enum modem_pipe_event event, in modem_ppp_pipe_callback() 527 int modem_ppp_attach(struct modem_ppp *ppp, struct modem_pipe *pipe) in modem_ppp_attach()
|
/Zephyr-Core-3.7.0/kernel/ |
D | pipes.c | 39 void k_pipe_init(struct k_pipe *pipe, unsigned char *buffer, size_t size) in k_pipe_init() 63 int z_impl_k_pipe_alloc_init(struct k_pipe *pipe, size_t size) in z_impl_k_pipe_alloc_init() 90 static inline int z_vrfy_k_pipe_alloc_init(struct k_pipe *pipe, size_t size) in z_vrfy_k_pipe_alloc_init() 99 static inline void handle_poll_events(struct k_pipe *pipe) in handle_poll_events() 108 void z_impl_k_pipe_flush(struct k_pipe *pipe) in z_impl_k_pipe_flush() 123 void z_vrfy_k_pipe_flush(struct k_pipe *pipe) in z_vrfy_k_pipe_flush() 132 void z_impl_k_pipe_buffer_flush(struct k_pipe *pipe) in z_impl_k_pipe_buffer_flush() 151 void z_vrfy_k_pipe_buffer_flush(struct k_pipe *pipe) in z_vrfy_k_pipe_buffer_flush() 159 int k_pipe_cleanup(struct k_pipe *pipe) in k_pipe_cleanup() 326 static size_t pipe_write(struct k_pipe *pipe, sys_dlist_t *src_list, in pipe_write() [all …]
|
/Zephyr-Core-3.7.0/tests/kernel/pipe/pipe/src/ |
D | test_pipe.c | 728 ZTEST_USER(pipe, test_pipe_on_single_elements) in ZTEST_USER() argument 754 ZTEST_USER(pipe, test_pipe_on_multiple_elements) in ZTEST_USER() argument 772 ZTEST_USER(pipe, test_pipe_forever_wait) in ZTEST_USER() argument 823 ZTEST_USER(pipe, test_pipe_timeout) in ZTEST_USER() argument 841 ZTEST_USER(pipe, test_pipe_get_on_empty_pipe) in ZTEST_USER() argument 854 ZTEST_USER(pipe, test_pipe_forever_timeout) in ZTEST_USER() argument 873 ZTEST_USER(pipe, test_pipe_get_timeout) in ZTEST_USER() argument 885 ZTEST_USER(pipe, test_pipe_get_invalid_size) in ZTEST_USER() argument 904 ZTEST_USER(pipe, test_pipe_get_min_xfer) in ZTEST_USER() argument 927 ZTEST_USER(pipe, test_pipe_put_min_xfer) in ZTEST_USER() argument [all …]
|
/Zephyr-Core-3.7.0/tests/kernel/pipe/pipe/ |
D | CMakeLists.txt | 5 project(pipe) project
|
/Zephyr-Core-3.7.0/tests/benchmarks/app_kernel/src/ |
D | pipe_r.c | 32 int pipe; in piperecvtask() local 82 int pipeget(struct k_pipe *pipe, enum pipe_options option, int size, int count, in pipeget()
|
D | pipe_b.c | 63 int pipe; in pipe_test() local 155 int pipeput(struct k_pipe *pipe, in pipeput()
|
/Zephyr-Core-3.7.0/tests/ztest/fail/src/ |
D | main.cpp | 20 auto pipe = popen(FAIL_TARGET_BINARY, "r"); in ZTEST() local
|
/Zephyr-Core-3.7.0/tests/kernel/obj_tracking/src/ |
D | main.c | 39 struct k_pipe pipe; in ZTEST() local
|
/Zephyr-Core-3.7.0/tests/subsys/modem/backends/uart/src/ |
D | main.c | 33 static struct modem_pipe *pipe; variable 47 static void modem_pipe_callback_handler(struct modem_pipe *pipe, enum modem_pipe_event event, in modem_pipe_callback_handler()
|
/Zephyr-Core-3.7.0/tests/subsys/modem/modem_cmux_pair/src/ |
D | main.c | 64 static void test_dlci1_pipe_cb(struct modem_pipe *pipe, enum modem_pipe_event event, in test_dlci1_pipe_cb() 85 static void test_dlci2_pipe_cb(struct modem_pipe *pipe, enum modem_pipe_event event, in test_dlci2_pipe_cb() 105 static void test_dlci1_pipe_cb_dce(struct modem_pipe *pipe, enum modem_pipe_event event, in test_dlci1_pipe_cb_dce() 126 static void test_dlci2_pipe_cb_dce(struct modem_pipe *pipe, enum modem_pipe_event event, in test_dlci2_pipe_cb_dce()
|
/Zephyr-Core-3.7.0/include/zephyr/modem/backend/ |
D | tty.h | 25 struct modem_pipe pipe; member
|
/Zephyr-Core-3.7.0/tests/kernel/pipe/pipe_api/src/ |
D | test_pipe_avail.c | 16 static struct k_pipe pipe = { variable
|
/Zephyr-Core-3.7.0/subsys/tracing/sysview/ |
D | tracing_sysview.h | 524 #define sys_port_trace_k_pipe_init(pipe) argument 525 #define sys_port_trace_k_pipe_cleanup_enter(pipe) argument 526 #define sys_port_trace_k_pipe_cleanup_exit(pipe, ret) argument 527 #define sys_port_trace_k_pipe_alloc_init_enter(pipe) argument 528 #define sys_port_trace_k_pipe_alloc_init_exit(pipe, ret) argument 529 #define sys_port_trace_k_pipe_flush_enter(pipe) argument 530 #define sys_port_trace_k_pipe_flush_exit(pipe) argument 531 #define sys_port_trace_k_pipe_buffer_flush_enter(pipe) argument 532 #define sys_port_trace_k_pipe_buffer_flush_exit(pipe) argument 533 #define sys_port_trace_k_pipe_put_enter(pipe, timeout) argument [all …]
|
/Zephyr-Core-3.7.0/include/zephyr/modem/ |
D | pipelink.h | 54 struct modem_pipe *pipe; member
|
/Zephyr-Core-3.7.0/tests/subsys/modem/mock/ |
D | modem_backend_mock.h | 25 struct modem_pipe pipe; member
|
/Zephyr-Core-3.7.0/subsys/tracing/ctf/ |
D | tracing_ctf.h | 283 #define sys_port_trace_k_pipe_init(pipe) argument 284 #define sys_port_trace_k_pipe_cleanup_enter(pipe) argument 285 #define sys_port_trace_k_pipe_cleanup_exit(pipe, ret) argument 286 #define sys_port_trace_k_pipe_alloc_init_enter(pipe) argument 287 #define sys_port_trace_k_pipe_alloc_init_exit(pipe, ret) argument 288 #define sys_port_trace_k_pipe_flush_enter(pipe) argument 289 #define sys_port_trace_k_pipe_flush_exit(pipe) argument 290 #define sys_port_trace_k_pipe_buffer_flush_enter(pipe) argument 291 #define sys_port_trace_k_pipe_buffer_flush_exit(pipe) argument 292 #define sys_port_trace_k_pipe_put_enter(pipe, timeout) argument [all …]
|
/Zephyr-Core-3.7.0/subsys/tracing/test/ |
D | tracing_test.h | 342 #define sys_port_trace_k_pipe_init(pipe) sys_trace_k_pipe_init(pipe, buffer, size) argument 343 #define sys_port_trace_k_pipe_cleanup_enter(pipe) sys_trace_k_pipe_cleanup_enter(pipe) argument 344 #define sys_port_trace_k_pipe_cleanup_exit(pipe, ret) sys_trace_k_pipe_cleanup_exit(pipe, ret) argument 345 #define sys_port_trace_k_pipe_alloc_init_enter(pipe) sys_trace_k_pipe_alloc_init_enter(pipe, size) argument 346 #define sys_port_trace_k_pipe_alloc_init_exit(pipe, ret) \ argument 348 #define sys_port_trace_k_pipe_flush_enter(pipe) \ argument 350 #define sys_port_trace_k_pipe_flush_exit(pipe) \ argument 352 #define sys_port_trace_k_pipe_buffer_flush_enter(pipe) \ argument 354 #define sys_port_trace_k_pipe_buffer_flush_exit(pipe) \ argument 357 #define sys_port_trace_k_pipe_put_enter(pipe, timeout) \ argument [all …]
|
/Zephyr-Core-3.7.0/subsys/tracing/user/ |
D | tracing_user.h | 273 #define sys_port_trace_k_pipe_init(pipe) argument 274 #define sys_port_trace_k_pipe_cleanup_enter(pipe) argument 275 #define sys_port_trace_k_pipe_cleanup_exit(pipe, ret) argument 276 #define sys_port_trace_k_pipe_alloc_init_enter(pipe) argument 277 #define sys_port_trace_k_pipe_alloc_init_exit(pipe, ret) argument 278 #define sys_port_trace_k_pipe_flush_enter(pipe) argument 279 #define sys_port_trace_k_pipe_flush_exit(pipe) argument 280 #define sys_port_trace_k_pipe_buffer_flush_enter(pipe) argument 281 #define sys_port_trace_k_pipe_buffer_flush_exit(pipe) argument 282 #define sys_port_trace_k_pipe_put_enter(pipe, timeout) argument [all …]
|
/Zephyr-Core-3.7.0/include/zephyr/tracing/ |
D | tracing.h | 1540 #define sys_port_trace_k_pipe_init(pipe) argument 1546 #define sys_port_trace_k_pipe_cleanup_enter(pipe) argument 1553 #define sys_port_trace_k_pipe_cleanup_exit(pipe, ret) argument 1559 #define sys_port_trace_k_pipe_alloc_init_enter(pipe) argument 1566 #define sys_port_trace_k_pipe_alloc_init_exit(pipe, ret) argument 1572 #define sys_port_trace_k_pipe_flush_enter(pipe) argument 1578 #define sys_port_trace_k_pipe_flush_exit(pipe) argument 1584 #define sys_port_trace_k_pipe_buffer_flush_enter(pipe) argument 1590 #define sys_port_trace_k_pipe_buffer_flush_exit(pipe) argument 1597 #define sys_port_trace_k_pipe_put_enter(pipe, timeout) argument [all …]
|
/Zephyr-Core-3.7.0/tests/kernel/mutex/mutex_error_case/src/ |
D | test_mutex_error.c | 18 static struct k_pipe pipe; variable
|
/Zephyr-Core-3.7.0/tests/subsys/modem/backends/tty/src/ |
D | main.c | 64 static void modem_pipe_callback_handler(struct modem_pipe *pipe, enum modem_pipe_event event, in modem_pipe_callback_handler()
|
/Zephyr-Core-3.7.0/subsys/tracing/ |
D | tracing_tracking.c | 107 void sys_track_k_pipe_init(struct k_pipe *pipe) in sys_track_k_pipe_init()
|