Searched refs:ZTEST_DMEM (Results 1 – 25 of 42) sorted by relevance
12
/Zephyr-Core-3.4.0/tests/net/lib/mqtt_packet/src/ |
D | mqtt_packet.c | 21 static ZTEST_DMEM uint8_t rx_buffer[BUFFER_SIZE]; 22 static ZTEST_DMEM uint8_t tx_buffer[BUFFER_SIZE]; 23 static ZTEST_DMEM struct mqtt_client client; 25 static ZTEST_DMEM struct mqtt_topic topic_qos_0 = { 29 static ZTEST_DMEM struct mqtt_topic topic_qos_1 = { 33 static ZTEST_DMEM struct mqtt_topic topic_qos_2 = { 37 static ZTEST_DMEM struct mqtt_topic will_topic_qos_0 = { 41 static ZTEST_DMEM struct mqtt_topic will_topic_qos_1 = { 45 static ZTEST_DMEM struct mqtt_utf8 will_msg = WILL_MSG; 46 static ZTEST_DMEM struct mqtt_utf8 username = USERNAME; [all …]
|
/Zephyr-Core-3.4.0/tests/net/utils/src/ |
D | main.c | 52 static ZTEST_DMEM struct net_addr_test_data ipv4_pton_1 = { 59 static ZTEST_DMEM struct net_addr_test_data ipv4_pton_2 = { 66 static ZTEST_DMEM struct net_addr_test_data ipv4_pton_3 = { 73 static ZTEST_DMEM struct net_addr_test_data ipv4_pton_4 = { 80 static ZTEST_DMEM struct net_addr_test_data ipv4_pton_5 = { 87 static ZTEST_DMEM struct net_addr_test_data ipv4_pton_6 = { 94 static ZTEST_DMEM struct net_addr_test_data ipv4_pton_7 = { 101 static ZTEST_DMEM struct net_addr_test_data ipv4_pton_8 = { 108 static ZTEST_DMEM struct net_addr_test_data ipv6_pton_1 = { 115 static ZTEST_DMEM struct net_addr_test_data ipv6_pton_2 = { [all …]
|
/Zephyr-Core-3.4.0/tests/drivers/i2s/i2s_api/src/ |
D | main.c | 13 ZTEST_DMEM const struct device *dev_i2s_rx = 15 ZTEST_DMEM const struct device *dev_i2s_tx = 17 ZTEST_DMEM const struct device *dev_i2s = 19 ZTEST_DMEM bool dir_both_supported;
|
D | common.c | 16 ZTEST_DMEM int16_t data_l[SAMPLE_NO] = { 24 ZTEST_DMEM int16_t data_r[SAMPLE_NO] = { 44 static ZTEST_DMEM int offset = -1; in verify_buf()
|
/Zephyr-Core-3.4.0/tests/kernel/msgq/msgq_usage/src/ |
D | main.c | 32 static ZTEST_DMEM unsigned long __aligned(4) service1_buf[MSGQ_LEN]; 33 static ZTEST_DMEM unsigned long __aligned(4) service2_buf[MSGQ_LEN]; 34 static ZTEST_DMEM unsigned long __aligned(4) client_buf[MSGQ_LEN * 2]; 35 static ZTEST_DMEM struct k_msgq *services[NUM_SERVICES]; 36 static ZTEST_DMEM struct k_msgq *pclient; 37 static ZTEST_DMEM bool service1_run; 38 static ZTEST_DMEM bool service2_run; 39 static ZTEST_DMEM k_tid_t tservice_manager, tservice1, tservice2, tclient;
|
/Zephyr-Core-3.4.0/subsys/testsuite/ztest/include/zephyr/ |
D | ztest_test_deprecated.h | 253 #define ZTEST_DMEM K_APP_DMEM(ztest_mem_partition) macro 258 #define ZTEST_DMEM macro 279 static ZTEST_DMEM struct unit_test _##suite[] = { __VA_ARGS__, { 0 } }
|
D | ztest_test_new.h | 291 #define ZTEST_DMEM K_APP_DMEM(ztest_mem_partition) macro 296 #define ZTEST_DMEM macro
|
/Zephyr-Core-3.4.0/tests/kernel/spinlock/src/ |
D | spinlock_error_case.c | 35 static ZTEST_DMEM volatile bool valid_assert; 36 static ZTEST_DMEM volatile bool unlock_after_assert;
|
/Zephyr-Core-3.4.0/tests/kernel/msgq/msgq_api/src/ |
D | test_msgq_attrs.c | 10 static ZTEST_DMEM uint32_t send_buf[MSGQ_LEN] = { MSG0, MSG1 }; 11 static ZTEST_DMEM uint32_t rec_buf[MSGQ_LEN] = { MSG0, MSG1 };
|
D | test_msgq_purge.c | 13 static ZTEST_DMEM uint32_t data[MSGQ_LEN] = { MSG0, MSG1 };
|
D | test_msgq_fail.c | 9 static ZTEST_DMEM uint32_t data[MSGQ_LEN] = { MSG0, MSG1 };
|
D | test_msgq_contexts.c | 21 static ZTEST_DMEM char __aligned(4) tbuffer1[MSG_SIZE]; 22 static ZTEST_DMEM uint32_t data[MSGQ_LEN] = { MSG0, MSG1 };
|
/Zephyr-Core-3.4.0/subsys/testsuite/ztest/src/ |
D | ztest_defaults.c | 70 ZTEST_DMEM const struct ztest_arch_api ztest_api = {
|
D | ztest_posix.c | 222 ZTEST_DMEM const struct ztest_arch_api ztest_api = {
|
/Zephyr-Core-3.4.0/tests/kernel/stack/stack/src/ |
D | main.c | 59 static ZTEST_DMEM stack_data_t data1[STACK_LEN] = { 0xAAAA, 0xBBBB, 0xCCCC, 0xDDDD }; 60 static ZTEST_DMEM stack_data_t data2[STACK_LEN] = { 0x1111, 0x2222, 0x3333, 0x4444 }; 61 static ZTEST_DMEM stack_data_t data_isr[STACK_LEN] = { 0xABCD, 0xABCD, 0xABCD,
|
/Zephyr-Core-3.4.0/tests/drivers/can/api/src/ |
D | common.h | 54 extern ZTEST_DMEM const struct device *const can_dev;
|
D | common.c | 17 ZTEST_DMEM const struct device *const can_dev = DEVICE_DT_GET(DT_CHOSEN(zephyr_canbus));
|
/Zephyr-Core-3.4.0/tests/kernel/fatal/no-multithreading/src/ |
D | main.c | 14 static ZTEST_DMEM volatile int expected_reason = -1;
|
/Zephyr-Core-3.4.0/tests/kernel/semaphore/sys_sem/src/ |
D | main.c | 26 static ZTEST_DMEM int flag; 27 static ZTEST_DMEM atomic_t atomic_count;
|
/Zephyr-Core-3.4.0/tests/kernel/pipe/pipe_api/src/ |
D | test_pipe_avail.c | 15 static ZTEST_DMEM unsigned char __aligned(4) data[] = "abcdefgh";
|
/Zephyr-Core-3.4.0/tests/kernel/mutex/mutex_error_case/src/ |
D | test_mutex_error.c | 14 static ZTEST_DMEM int case_type;
|
/Zephyr-Core-3.4.0/tests/drivers/fuel_gauge/max17048/src/ |
D | test_max17048.c | 25 static ZTEST_DMEM struct max17048_fixture fixture; in max17048_setup()
|
/Zephyr-Core-3.4.0/tests/kernel/threads/thread_apis/src/ |
D | test_threads_spawn.c | 13 static ZTEST_DMEM int tp2 = 100;
|
/Zephyr-Core-3.4.0/tests/kernel/threads/thread_error_case/src/ |
D | main.c | 13 static ZTEST_DMEM int case_type;
|
/Zephyr-Core-3.4.0/tests/kernel/mutex/mutex_api/src/ |
D | test_mutex_apis.c | 15 static ZTEST_DMEM int case_type; 16 static ZTEST_DMEM int thread_ret = TC_FAIL;
|
12