Chromium Code Reviews| 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 /** | |
| 6 * The request ids for entry-related messages to send to the C extension. | |
| 7 * | |
| 8 * These ids are preceded by the read ids. | |
| 9 */ | |
| 10 #library("entry_request"); | |
| 11 | |
| 12 final int CLONE = 28; | |
|
Bob Nystrom
2012/08/02 18:18:25
These values need to not overlap the ones in read_
nweiz
2012/08/02 21:32:27
Done.
| |
| 13 final int FREE = 29; | |
| 14 final int NEW = 30; | |
| 15 final int SET_HARDLINK = 31; | |
| 16 final int SET_PATHNAME = 32; | |
| 17 final int SET_SOURCEPATH = 33; | |
| 18 final int SET_SYMLINK = 34; | |
| 19 final int SET_GID = 35; | |
| 20 final int SET_UID = 36; | |
| 21 final int SET_PERM_MASK = 37; | |
| 22 final int SET_GNAME = 38; | |
| 23 final int SET_UNAME = 39; | |
| 24 final int SET_FFLAGS_SET = 40; | |
| 25 final int SET_FFLAGS_CLEAR = 41; | |
| 26 final int SET_FFLAGS_TEXT = 42; | |
| 27 final int SET_FILETYPE_MASK = 43; | |
| 28 final int SET_MODE_MASK = 44; | |
| 29 final int SET_SIZE = 45; | |
| 30 final int SET_DEV = 46; | |
| 31 final int SET_DEVMAJOR = 47; | |
| 32 final int SET_DEVMINOR = 48; | |
| 33 final int SET_INO = 49; | |
| 34 final int SET_NLINK = 50; | |
| 35 final int SET_RDEV = 51; | |
| 36 final int SET_RDEVMAJOR = 52; | |
| 37 final int SET_RDEVMINOR = 53; | |
| 38 final int SET_ATIME = 54; | |
| 39 final int SET_BIRTHTIME = 55; | |
| 40 final int SET_CTIME = 56; | |
| 41 final int SET_MTIME = 57; | |
| OLD | NEW |