OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 /** The request ids for entry-related messages to send to the C extension. */ | |
6 library entry_request; | |
7 | |
8 import 'read_request.dart' as read; | |
9 | |
10 final int _first = read.LAST; | |
11 | |
12 final int CLONE = _first + 1; | |
13 final int FREE = _first + 2; | |
14 final int NEW = _first + 3; | |
15 final int SET_HARDLINK = _first + 4; | |
16 final int SET_PATHNAME = _first + 5; | |
17 final int SET_SYMLINK = _first + 6; | |
18 final int SET_GID = _first + 7; | |
19 final int SET_UID = _first + 8; | |
20 final int SET_PERM_MASK = _first + 9; | |
21 final int SET_GNAME = _first + 10; | |
22 final int SET_UNAME = _first + 11; | |
23 final int SET_FFLAGS_SET = _first + 12; | |
24 final int SET_FFLAGS_CLEAR = _first + 13; | |
25 final int SET_FILETYPE_MASK = _first + 14; | |
26 final int SET_MODE_MASK = _first + 15; | |
27 final int SET_SIZE = _first + 16; | |
28 final int SET_DEV = _first + 17; | |
29 final int SET_DEVMAJOR = _first + 18; | |
30 final int SET_DEVMINOR = _first + 19; | |
31 final int SET_INO = _first + 20; | |
32 final int SET_NLINK = _first + 21; | |
33 final int SET_RDEV = _first + 22; | |
34 final int SET_RDEVMAJOR = _first + 23; | |
35 final int SET_RDEVMINOR = _first + 24; | |
36 final int SET_ATIME = _first + 25; | |
37 final int SET_BIRTHTIME = _first + 26; | |
38 final int SET_CTIME = _first + 27; | |
39 final int SET_MTIME = _first + 28; | |
40 | |
41 final int LAST = SET_MTIME; | |
OLD | NEW |