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' as 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_SYMLINK = _first + 6; | 17 final int SET_SYMLINK = _first + 6; |
18 final int SET_GID = _first + 7; | 18 final int SET_GID = _first + 7; |
(...skipping 13 matching lines...) Expand all Loading... |
32 final int SET_NLINK = _first + 21; | 32 final int SET_NLINK = _first + 21; |
33 final int SET_RDEV = _first + 22; | 33 final int SET_RDEV = _first + 22; |
34 final int SET_RDEVMAJOR = _first + 23; | 34 final int SET_RDEVMAJOR = _first + 23; |
35 final int SET_RDEVMINOR = _first + 24; | 35 final int SET_RDEVMINOR = _first + 24; |
36 final int SET_ATIME = _first + 25; | 36 final int SET_ATIME = _first + 25; |
37 final int SET_BIRTHTIME = _first + 26; | 37 final int SET_BIRTHTIME = _first + 26; |
38 final int SET_CTIME = _first + 27; | 38 final int SET_CTIME = _first + 27; |
39 final int SET_MTIME = _first + 28; | 39 final int SET_MTIME = _first + 28; |
40 | 40 |
41 final int LAST = SET_MTIME; | 41 final int LAST = SET_MTIME; |
OLD | NEW |