Home
last modified time | relevance | path

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

/aosp12/frameworks/base/startop/scripts/iorap/
H A Dcompile_handcrafted_file.py92 def handle_zip_entry(input_record, zip_paths): argument
94 res = re.match("([^!]+)[!](.*)", input_record.filepath)
97 return input_record
/aosp12/art/compiler/optimizing/
H A Dgraph_checker.cc442 const HUserRecord<HInstruction*>& input_record = input_records[i]; in VisitInstruction() local
443 HInstruction* input = input_record.GetInstruction(); in VisitInstruction()
444 if ((input_record.GetBeforeUseNode() == input->GetUses().end()) || in VisitInstruction()
445 (input_record.GetUseNode() == input->GetUses().end()) || in VisitInstruction()
446 !input->GetUses().ContainsNode(*input_record.GetUseNode()) || in VisitInstruction()
447 (input_record.GetUseNode()->GetIndex() != i)) { in VisitInstruction()
/aosp12/packages/modules/adb/
H A Dsysdeps_win32.cpp1525 static bool _get_key_event_record(const HANDLE console, INPUT_RECORD* const input_record) { in _get_key_event_record() argument
1528 memset(input_record, 0, sizeof(*input_record)); in _get_key_event_record()
1529 if (!ReadConsoleInputA(console, input_record, 1, &read_count)) { in _get_key_event_record()
1551 if (input_record->EventType == WINDOW_BUFFER_SIZE_EVENT) { in _get_key_event_record()
1556 if ((input_record->EventType == KEY_EVENT) && in _get_key_event_record()
1557 (input_record->Event.KeyEvent.bKeyDown)) { in _get_key_event_record()
1558 if (input_record->Event.KeyEvent.wRepeatCount == 0) { in _get_key_event_record()
1934 INPUT_RECORD input_record; in _console_read() local
1935 if (!_get_key_event_record(console, &input_record)) { in _console_read()
1939 KEY_EVENT_RECORD* const key_event = &input_record.Event.KeyEvent; in _console_read()