| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 /** The request ids for entry-related messages to send to the C extension. */ | 5 /** The request ids for entry-related messages to send to the C extension. */ |
| 6 #library("entry_request"); | 6 #library("entry_request"); |
| 7 | 7 |
| 8 #import("read_request.dart", prefix: "read"); | 8 #import("read_request.dart", prefix: "read"); |
| 9 | 9 |
| 10 final int _first = read.LAST; | 10 final int _first = read.LAST; |
| 11 | 11 |
| 12 final int CLONE = _first + 1; | 12 final int CLONE = _first + 1; |
| 13 final int FREE = _first + 2; | 13 final int FREE = _first + 2; |
| 14 final int NEW = _first + 3; | 14 final int NEW = _first + 3; |
| 15 final int SET_HARDLINK = _first + 4; | 15 final int SET_HARDLINK = _first + 4; |
| 16 final int SET_PATHNAME = _first + 5; | 16 final int SET_PATHNAME = _first + 5; |
| 17 final int SET_SOURCEPATH = _first + 6; | 17 final int SET_SYMLINK = _first + 6; |
| 18 final int SET_SYMLINK = _first + 7; | 18 final int SET_GID = _first + 7; |
| 19 final int SET_GID = _first + 8; | 19 final int SET_UID = _first + 8; |
| 20 final int SET_UID = _first + 9; | 20 final int SET_PERM_MASK = _first + 9; |
| 21 final int SET_PERM_MASK = _first + 10; | 21 final int SET_GNAME = _first + 10; |
| 22 final int SET_GNAME = _first + 11; | 22 final int SET_UNAME = _first + 11; |
| 23 final int SET_UNAME = _first + 12; | 23 final int SET_FFLAGS_SET = _first + 12; |
| 24 final int SET_FFLAGS_SET = _first + 13; | 24 final int SET_FFLAGS_CLEAR = _first + 13; |
| 25 final int SET_FFLAGS_CLEAR = _first + 14; | 25 final int SET_FILETYPE_MASK = _first + 14; |
| 26 final int SET_FFLAGS_TEXT = _first + 15; | 26 final int SET_MODE_MASK = _first + 15; |
| 27 final int SET_FILETYPE_MASK = _first + 16; | 27 final int SET_SIZE = _first + 16; |
| 28 final int SET_MODE_MASK = _first + 17; | 28 final int SET_DEV = _first + 17; |
| 29 final int SET_SIZE = _first + 18; | 29 final int SET_DEVMAJOR = _first + 18; |
| 30 final int SET_DEV = _first + 19; | 30 final int SET_DEVMINOR = _first + 19; |
| 31 final int SET_DEVMAJOR = _first + 20; | 31 final int SET_INO = _first + 20; |
| 32 final int SET_DEVMINOR = _first + 21; | 32 final int SET_NLINK = _first + 21; |
| 33 final int SET_INO = _first + 22; | 33 final int SET_RDEV = _first + 22; |
| 34 final int SET_NLINK = _first + 23; | 34 final int SET_RDEVMAJOR = _first + 23; |
| 35 final int SET_RDEV = _first + 24; | 35 final int SET_RDEVMINOR = _first + 24; |
| 36 final int SET_RDEVMAJOR = _first + 25; | 36 final int SET_ATIME = _first + 25; |
| 37 final int SET_RDEVMINOR = _first + 26; | 37 final int SET_BIRTHTIME = _first + 26; |
| 38 final int SET_ATIME = _first + 27; | 38 final int SET_CTIME = _first + 27; |
| 39 final int SET_BIRTHTIME = _first + 28; | 39 final int SET_MTIME = _first + 28; |
| 40 final int SET_CTIME = _first + 29; | |
| 41 final int SET_MTIME = _first + 30; | |
| 42 | 40 |
| 43 final int LAST = SET_MTIME; | 41 final int LAST = SET_MTIME; |
| OLD | NEW |