| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 library ioctl_terminal_mojom; | 5 library ioctl_terminal_mojom; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import 'package:mojo/bindings.dart' as bindings; | 9 import 'package:mojo/bindings.dart' as bindings; |
| 10 import 'package:mojo/core.dart' as core; | 10 import 'package:mojo/core.dart' as core; |
| 11 import 'package:mojo/mojo/bindings/types/mojom_types.mojom.dart' as mojom_types; |
| 12 |
| 11 const int kIoctlTerminalInvalid = 0; | 13 const int kIoctlTerminalInvalid = 0; |
| 12 const int kIoctlTerminalGetSettings = 1; | 14 const int kIoctlTerminalGetSettings = 1; |
| 13 const int kIoctlTerminalSetSettings = 2; | 15 const int kIoctlTerminalSetSettings = 2; |
| 14 const int kIoctlTerminalGetWindowSize = 3; | 16 const int kIoctlTerminalGetWindowSize = 3; |
| 15 const int kIoctlTerminalSetWindowSize = 4; | 17 const int kIoctlTerminalSetWindowSize = 4; |
| 16 const int kIoctlTerminalTermiosBaseFieldCount = 6; | 18 const int kIoctlTerminalTermiosBaseFieldCount = 6; |
| 17 const int kIoctlTerminalTermiosIFlagIndex = 0; | 19 const int kIoctlTerminalTermiosIFlagIndex = 0; |
| 18 const int kIoctlTerminalTermiosOFlagIndex = 1; | 20 const int kIoctlTerminalTermiosOFlagIndex = 1; |
| 19 const int kIoctlTerminalTermiosCFlagIndex = 2; | 21 const int kIoctlTerminalTermiosCFlagIndex = 2; |
| 20 const int kIoctlTerminalTermiosLFlagIndex = 3; | 22 const int kIoctlTerminalTermiosLFlagIndex = 3; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 const int kIoctlTerminalTermiosLFlagXcase = 4; | 101 const int kIoctlTerminalTermiosLFlagXcase = 4; |
| 100 const int kIoctlTerminalTermiosLFlagEcho = 8; | 102 const int kIoctlTerminalTermiosLFlagEcho = 8; |
| 101 const int kIoctlTerminalTermiosLFlagEchoe = 16; | 103 const int kIoctlTerminalTermiosLFlagEchoe = 16; |
| 102 const int kIoctlTerminalTermiosLFlagEchok = 32; | 104 const int kIoctlTerminalTermiosLFlagEchok = 32; |
| 103 const int kIoctlTerminalTermiosLFlagEchonl = 64; | 105 const int kIoctlTerminalTermiosLFlagEchonl = 64; |
| 104 const int kIoctlTerminalTermiosLFlagNoflsh = 128; | 106 const int kIoctlTerminalTermiosLFlagNoflsh = 128; |
| 105 const int kIoctlTerminalTermiosLFlagTostop = 256; | 107 const int kIoctlTerminalTermiosLFlagTostop = 256; |
| 106 | 108 |
| 107 | 109 |
| 108 | 110 |
| 111 |
| 112 |
| OLD | NEW |