| OLD | NEW | 
|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 // Defines constants, etc. to be used with the |kIoctlTerminal| ioctl. | 5 // Defines constants, etc. to be used with the |kIoctlTerminal| ioctl. | 
| 6 // | 6 // | 
| 7 // TODO(vtl): Add constants for indices? | 7 // TODO(vtl): Add constants for indices? | 
| 8 | 8 | 
| 9 [DartPackage="mojo_services"] | 9 [DartPackage="mojo_services"] | 
| 10 module mojo.files; | 10 module mojo.files; | 
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 175 // "lflag" flag values: | 175 // "lflag" flag values: | 
| 176 const uint32 kIoctlTerminalTermiosLFlagISIG   = 0x0001; | 176 const uint32 kIoctlTerminalTermiosLFlagISIG   = 0x0001; | 
| 177 const uint32 kIoctlTerminalTermiosLFlagICANON = 0x0002; | 177 const uint32 kIoctlTerminalTermiosLFlagICANON = 0x0002; | 
| 178 const uint32 kIoctlTerminalTermiosLFlagXCASE  = 0x0004; | 178 const uint32 kIoctlTerminalTermiosLFlagXCASE  = 0x0004; | 
| 179 const uint32 kIoctlTerminalTermiosLFlagECHO   = 0x0008; | 179 const uint32 kIoctlTerminalTermiosLFlagECHO   = 0x0008; | 
| 180 const uint32 kIoctlTerminalTermiosLFlagECHOE  = 0x0010; | 180 const uint32 kIoctlTerminalTermiosLFlagECHOE  = 0x0010; | 
| 181 const uint32 kIoctlTerminalTermiosLFlagECHOK  = 0x0020; | 181 const uint32 kIoctlTerminalTermiosLFlagECHOK  = 0x0020; | 
| 182 const uint32 kIoctlTerminalTermiosLFlagECHONL = 0x0040; | 182 const uint32 kIoctlTerminalTermiosLFlagECHONL = 0x0040; | 
| 183 const uint32 kIoctlTerminalTermiosLFlagNOFLSH = 0x0080; | 183 const uint32 kIoctlTerminalTermiosLFlagNOFLSH = 0x0080; | 
| 184 const uint32 kIoctlTerminalTermiosLFlagTOSTOP = 0x0100; | 184 const uint32 kIoctlTerminalTermiosLFlagTOSTOP = 0x0100; | 
| OLD | NEW | 
|---|