Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(978)

Side by Side Diff: utils/archive/entry_request.dart

Issue 10832116: Attach the native entry struct to the ArchiveEntry object. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698