Home
last modified time | relevance | path

Searched refs:uart_emul_get_tx_data (Results 1 – 7 of 7) sorted by relevance

/Zephyr-latest/tests/subsys/shell/shell_backend_uart/src/
Dmain.c64 uart_emul_get_tx_data(fixture->dev, tx_content, SAMPLE_DATA_SIZE); in ZTEST_F()
78 uart_emul_get_tx_data(fixture->dev, tx_content, SAMPLE_DATA_SIZE); in ZTEST_F()
91 uart_emul_get_tx_data(fixture->dev, tx_content, SAMPLE_DATA_SIZE); in ZTEST_F()
125 uart_emul_get_tx_data(fixture.dev, tx_content, SAMPLE_DATA_SIZE); in setup()
/Zephyr-latest/tests/drivers/uart/uart_emul/src/
Dbus.c99 tx_len = uart_emul_get_tx_data(fixture->dev, tx_content, sizeof(tx_content)); in ZTEST_F()
104 tx_len = uart_emul_get_tx_data(fixture->dev, tx_content, sizeof(tx_content)); in ZTEST_F()
207 tx_len = uart_emul_get_tx_data(fixture->dev, fixture->tx_content, SAMPLE_DATA_SIZE); in ZTEST_F()
212 tx_len = uart_emul_get_tx_data(fixture->dev, fixture->tx_content, in ZTEST_F()
291 tx_len = uart_emul_get_tx_data(fixture->dev, fixture->tx_content, SAMPLE_DATA_SIZE); in ZTEST_F()
296 tx_len = uart_emul_get_tx_data(fixture->dev, fixture->tx_content, in ZTEST_F()
Ddevice.c105 len = uart_emul_get_tx_data(fixture->dev, NULL, UINT32_MAX); in ZTEST_F()
183 tx_len = uart_emul_get_tx_data(fixture->dev, NULL, SAMPLE_DATA_SIZE); in ZTEST_F()
250 tx_len = uart_emul_get_tx_data(fixture->dev, NULL, SAMPLE_DATA_SIZE); in ZTEST_F()
279 ret = uart_emul_get_tx_data(dev, &byte, 1); in uart_dummy_emul_tx_ready()
/Zephyr-latest/include/zephyr/drivers/serial/
Duart_emul.h66 uint32_t uart_emul_get_tx_data(const struct device *dev, uint8_t *data, size_t size);
/Zephyr-latest/tests/subsys/logging/log_backend_uart/src/
Dmain.c69 tx_len = uart_emul_get_tx_data(fixture->dev[i], tx_content, sizeof(tx_content)); in ZTEST_F()
/Zephyr-latest/tests/drivers/console_switching/src/
Dmain.c49 ret[1] = uart_emul_get_tx_data(devs[j], buf, ARRAY_SIZE(buf)); in ZTEST()
/Zephyr-latest/drivers/serial/
Duart_emul.c947 uint32_t uart_emul_get_tx_data(const struct device *dev, uint8_t *data, size_t size) in uart_emul_get_tx_data() function