Searched refs:fifo_path (Results 1 – 2 of 2) sorted by relevance
/Zephyr-latest/tests/bsim/bluetooth/ll/edtt/common/ |
D | edtt_driver_bsim.c | 44 static char *fifo_path[2] = {NULL, NULL}; variable 189 fifo_path[TO_DEVICE] = (char *)bs_calloc(pb_com_path_length + 30, in edptd_create_fifo_if() 191 fifo_path[TO_EDTT] = (char *)bs_calloc(pb_com_path_length + 30, in edptd_create_fifo_if() 193 sprintf(fifo_path[TO_DEVICE], "%s/Device%i.PTTin", pb_com_path, device_nbr); in edptd_create_fifo_if() 194 sprintf(fifo_path[TO_EDTT], "%s/Device%i.PTTout", pb_com_path, device_nbr); in edptd_create_fifo_if() 196 if ((pb_create_fifo_if_not_there(fifo_path[TO_DEVICE]) != 0) in edptd_create_fifo_if() 197 || (pb_create_fifo_if_not_there(fifo_path[TO_EDTT]) != 0)) { in edptd_create_fifo_if() 202 fifo[TO_EDTT] = open(fifo_path[TO_EDTT], O_WRONLY); in edptd_create_fifo_if() 212 fifo[TO_DEVICE] = open(fifo_path[TO_DEVICE], O_RDONLY); in edptd_create_fifo_if() 225 if (fifo_path[dir]) { in edttd_clean_up() [all …]
|
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/ |
D | fifo_handler.py | 23 def __init__(self, fifo_path: str | Path, timeout: float): 28 self._fifo_out_path = str(fifo_path) + '.out' 29 self._fifo_in_path = str(fifo_path) + '.in'
|