• Home
  • Raw
  • Download

Lines Matching refs:records

81                                    BOOL is_wsl, INPUT_RECORD* records) {  in make_key_event_records()  argument
82 # define KEV(I) records[(I)].Event.KeyEvent in make_key_event_records()
87 records[0].EventType = records[1].EventType = KEY_EVENT; in make_key_event_records()
140 INPUT_RECORD records[2]; in TEST_IMPL() local
177 make_key_event_records(VK_F1, 0, TRUE, records); in TEST_IMPL()
178 WriteConsoleInputW(handle, records, ARRAY_SIZE(records), &written); in TEST_IMPL()
179 ASSERT(written == ARRAY_SIZE(records)); in TEST_IMPL()
193 INPUT_RECORD records[2]; in TEST_IMPL() local
231 make_key_event_records(L'A', LEFT_ALT_PRESSED, FALSE, records); in TEST_IMPL()
232 WriteConsoleInputW(handle, records, ARRAY_SIZE(records), &written); in TEST_IMPL()
241 make_key_event_records(L'A', LEFT_ALT_PRESSED, TRUE, records); in TEST_IMPL()
242 WriteConsoleInputW(handle, records, ARRAY_SIZE(records), &written); in TEST_IMPL()
259 INPUT_RECORD records[2]; in TEST_IMPL() local
297 make_key_event_records(VK_NUMPAD0, LEFT_ALT_PRESSED, FALSE, records); in TEST_IMPL()
298 WriteConsoleInputW(handle, records, ARRAY_SIZE(records), &written); in TEST_IMPL()
299 ASSERT(written == ARRAY_SIZE(records)); in TEST_IMPL()
300 make_key_event_records(VK_NUMPAD1, LEFT_ALT_PRESSED, FALSE, records); in TEST_IMPL()
301 WriteConsoleInputW(handle, records, ARRAY_SIZE(records), &written); in TEST_IMPL()
302 ASSERT(written == ARRAY_SIZE(records)); in TEST_IMPL()
303 make_key_event_records(VK_NUMPAD2, LEFT_ALT_PRESSED, FALSE, records); in TEST_IMPL()
304 WriteConsoleInputW(handle, records, ARRAY_SIZE(records), &written); in TEST_IMPL()
305 ASSERT(written == ARRAY_SIZE(records)); in TEST_IMPL()
306 make_key_event_records(VK_NUMPAD8, LEFT_ALT_PRESSED, FALSE, records); in TEST_IMPL()
307 WriteConsoleInputW(handle, records, ARRAY_SIZE(records), &written); in TEST_IMPL()
308 ASSERT(written == ARRAY_SIZE(records)); in TEST_IMPL()