Home
last modified time | relevance | path

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

/Zephyr-latest/tests/subsys/input/longpress/src/
Dmain.c36 static struct input_event last_events_no_short[2]; variable
42 memcpy(&last_events_no_short[1], &last_events_no_short[0], sizeof(struct input_event)); in test_cb_no_short()
43 memcpy(&last_events_no_short[0], evt, sizeof(struct input_event)); in test_cb_no_short()
100 zassert_equal(last_events_no_short[1].type, INPUT_EV_KEY); in ZTEST()
101 zassert_equal(last_events_no_short[1].code, INPUT_KEY_X); in ZTEST()
102 zassert_equal(last_events_no_short[1].value, 1); in ZTEST()
103 zassert_equal(last_events_no_short[0].type, INPUT_EV_KEY); in ZTEST()
104 zassert_equal(last_events_no_short[0].code, INPUT_KEY_X); in ZTEST()
105 zassert_equal(last_events_no_short[0].value, 0); in ZTEST()
120 zassert_equal(last_events_no_short[1].type, INPUT_EV_KEY); in ZTEST()
[all …]