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

Side by Side Diff: runtime/bin/builtin_natives.cc

Issue 529203004: Cleanup resource loading of the VM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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
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 #include <stdlib.h> 5 #include <stdlib.h>
6 #include <stdio.h> 6 #include <stdio.h>
7 #include <string.h> 7 #include <string.h>
8 8
9 #include "include/dart_api.h" 9 #include "include/dart_api.h"
10 10
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 V(File_DeleteLink, 1) \ 57 V(File_DeleteLink, 1) \
58 V(File_Rename, 2) \ 58 V(File_Rename, 2) \
59 V(File_Copy, 2) \ 59 V(File_Copy, 2) \
60 V(File_RenameLink, 2) \ 60 V(File_RenameLink, 2) \
61 V(File_ResolveSymbolicLinks, 1) \ 61 V(File_ResolveSymbolicLinks, 1) \
62 V(File_OpenStdio, 1) \ 62 V(File_OpenStdio, 1) \
63 V(File_GetStdioHandleType, 1) \ 63 V(File_GetStdioHandleType, 1) \
64 V(File_GetType, 2) \ 64 V(File_GetType, 2) \
65 V(File_AreIdentical, 2) \ 65 V(File_AreIdentical, 2) \
66 V(Logger_PrintString, 1) \ 66 V(Logger_PrintString, 1) \
67 V(Builtin_LoadScript, 2) \ 67 V(Builtin_LoadScript, 4) \
68 V(Builtin_LoadLibrarySource, 4) \
69 V(Builtin_AsyncLoadError, 3) \ 68 V(Builtin_AsyncLoadError, 3) \
70 V(Builtin_DoneLoading, 0) \ 69 V(Builtin_DoneLoading, 0) \
71 70
72 71
73 BUILTIN_NATIVE_LIST(DECLARE_FUNCTION); 72 BUILTIN_NATIVE_LIST(DECLARE_FUNCTION);
74 73
75 static struct NativeEntries { 74 static struct NativeEntries {
76 const char* name_; 75 const char* name_;
77 Dart_NativeFunction function_; 76 Dart_NativeFunction function_;
78 int argument_count_; 77 int argument_count_;
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 } else { 132 } else {
134 // Uses fwrite to support printing NUL bytes. 133 // Uses fwrite to support printing NUL bytes.
135 fwrite(chars, 1, length, stdout); 134 fwrite(chars, 1, length, stdout);
136 fputs("\n", stdout); 135 fputs("\n", stdout);
137 } 136 }
138 fflush(stdout); 137 fflush(stdout);
139 } 138 }
140 139
141 } // namespace bin 140 } // namespace bin
142 } // namespace dart 141 } // namespace dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698