| /examples/utest/testcases/kernel/ |
| A D | object_tc.c | 93 uassert_true(static_obj2.name[0] == '\0'); in test_object_name_handling() 99 uassert_true(dyn_obj->name[0] == '\0'); in test_object_name_handling() 108 uassert_str_equal(static_obj3.name, exact_name); in test_object_name_handling() 117 char name[TEST_RT_NAME_MAX]; in test_object_find_operations() local 128 uassert_str_equal(found->name, name); in test_object_find_operations() 135 found_thread = rt_thread_find(name); in test_object_find_operations() 138 uassert_str_equal(found_thread->parent.name, name); in test_object_find_operations() 147 found_device = rt_device_find(name); in test_object_find_operations() 150 uassert_str_equal(found_device->parent.name, name); in test_object_find_operations() 262 char name[TEST_RT_NAME_MAX]; in test_object_type_handling() local [all …]
|
| A D | device_tc.c | 22 rt_memcpy(_device_name, console->parent.name, RT_NAME_MAX); in test_rt_device_find() 41 device3 = rt_device_find(console->parent.name); in test_rt_device_find()
|
| /examples/utest/testcases/mm/ |
| A D | test_synchronization.h | 126 char name[RT_NAME_MAX]; in synchronization_tc() local 127 rt_sprintf(name, "grp1_%d", i); in synchronization_tc() 129 rt_thread_create(name, group1_entry, (void *)i, ARCH_PAGE_SIZE, PRIO, 10); in synchronization_tc() 138 char name[RT_NAME_MAX]; in synchronization_tc() local 139 rt_sprintf(name, "grp2_%d", i); in synchronization_tc() 141 rt_thread_create(name, group2_entry, (void *)i, ARCH_PAGE_SIZE, PRIO, 10); in synchronization_tc()
|
| /examples/utest/testcases/perf/ |
| A D | Kconfig | 13 string "Hardware timer device name" 17 Specify the hardware timer device name used for context switch testing (e.g., timer0).
|
| A D | irq_latency_tc.c | 43 rt_strcpy(perf->name,__func__); in rt_perf_irq_latency() 45 rt_strcpy(perf->name,"rt_perf_irq_latency"); in rt_perf_irq_latency()
|
| A D | thread_mbox_tc.c | 71 rt_strcpy(perf->name,__func__); in rt_perf_thread_mbox() 73 rt_strcpy(perf->name,"rt_perf_thread_mbox"); in rt_perf_thread_mbox()
|
| A D | thread_mq_tc.c | 70 rt_strcpy(perf->name,__func__); in rt_perf_thread_mq() 72 rt_strcpy(perf->name,"rt_perf_thread_mq"); in rt_perf_thread_mq()
|
| A D | thread_event_tc.c | 73 rt_strcpy(perf->name,__func__); in rt_perf_thread_event() 75 rt_strcpy(perf->name,"rt_perf_thread_event"); in rt_perf_thread_event()
|
| A D | context_switch_tc.c | 67 rt_strcpy(perf->name,__func__); in context_switch_test() 69 rt_strcpy(perf->name,"context_switch_test"); in context_switch_test()
|
| A D | thread_sem_tc.c | 82 rt_strcpy(perf->name,__func__); in rt_perf_thread_sem() 84 rt_strcpy(perf->name,"rt_perf_thread_sem"); in rt_perf_thread_sem()
|
| A D | perf_tc.h | 24 char name[64]; member
|
| A D | perf_tc.c | 120 perf->name, in rt_perf_dump() 157 LOG_E("%s test fail",perf_data->name); in rt_perf_all_test()
|
| /examples/test/ |
| A D | device_test.c | 95 rt_kprintf("read device :%s ", device->parent.name); in _block_device_test() 114 rt_kprintf("but write device :%s ", device->parent.name); in _block_device_test() 127 rt_kprintf("write device :%s ",device->parent.name); in _block_device_test() 139 rt_kprintf("write device :%s ",device->parent.name); in _block_device_test() 149 rt_kprintf("read device :%s ",device->parent.name); in _block_device_test() 168 rt_kprintf("verify device :%s ",device->parent.name); in _block_device_test() 178 rt_kprintf("read device :%s ",device->parent.name); in _block_device_test() 197 rt_kprintf("verify device :%s ",device->parent.name); in _block_device_test() 207 rt_kprintf("read device :%s ",device->parent.name); in _block_device_test() 226 rt_kprintf("verify device :%s ",device->parent.name); in _block_device_test() [all …]
|
| /examples/utest/testcases/drivers/serial_v2/ |
| A D | Kconfig | 10 string "the device name for serial test" 39 string "the device name for serial posix test"
|
| /examples/libc/ |
| A D | termios_test.c | 62 int open_comm(const char *name) in open_comm() argument 65 fd = open(name, O_RDWR | O_NOCTTY | O_NONBLOCK, 0); in open_comm() 68 rt_kprintf("Open %s fail.\n",name); in open_comm() 73 rt_kprintf("Open %s success,fd:%d\n",name,fd); in open_comm()
|
| /examples/rt-link/ |
| A D | rtlink_dev_example.c | 35 LOG_I("rx_ind: dev name %s, rx size %d", dev->parent.name, size); in rtlink_dev_rx_ind() 43 …LOG_I("tx_done: dev name %s, buffer 0x%p errno %d", dev->parent.name, buffer, rtlink_dev->service.… in rtlink_dev_tx_done()
|