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 #ifndef BIN_DARTUTILS_H_ | 5 #ifndef BIN_DARTUTILS_H_ |
6 #define BIN_DARTUTILS_H_ | 6 #define BIN_DARTUTILS_H_ |
7 | 7 |
8 #include "bin/isolate_data.h" | 8 #include "bin/isolate_data.h" |
9 #include "include/dart_api.h" | 9 #include "include/dart_api.h" |
10 #include "include/dart_native_api.h" | 10 #include "include/dart_native_api.h" |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 return isolate_data->builtin_lib(); | 192 return isolate_data->builtin_lib(); |
193 } | 193 } |
194 | 194 |
195 static bool SetOriginalWorkingDirectory(); | 195 static bool SetOriginalWorkingDirectory(); |
196 | 196 |
197 static const char* MapLibraryUrl(CommandLineOptions* url_mapping, | 197 static const char* MapLibraryUrl(CommandLineOptions* url_mapping, |
198 const char* url_string); | 198 const char* url_string); |
199 | 199 |
200 static Dart_Handle ResolveUriInWorkingDirectory(Dart_Handle script_uri); | 200 static Dart_Handle ResolveUriInWorkingDirectory(Dart_Handle script_uri); |
201 static Dart_Handle FilePathFromUri(Dart_Handle script_uri); | 201 static Dart_Handle FilePathFromUri(Dart_Handle script_uri); |
| 202 static Dart_Handle ResolveUri(Dart_Handle library_url, Dart_Handle url); |
202 | 203 |
203 // Sniffs the specified text_buffer to see if it contains the magic number | 204 // Sniffs the specified text_buffer to see if it contains the magic number |
204 // representing a script snapshot. If the text_buffer is a script snapshot | 205 // representing a script snapshot. If the text_buffer is a script snapshot |
205 // the return value is an updated pointer to the text_buffer pointing past | 206 // the return value is an updated pointer to the text_buffer pointing past |
206 // the magic number value. The 'buffer_len' parameter is also appropriately | 207 // the magic number value. The 'buffer_len' parameter is also appropriately |
207 // adjusted. | 208 // adjusted. |
208 static const uint8_t* SniffForMagicNumber(const uint8_t* text_buffer, | 209 static const uint8_t* SniffForMagicNumber(const uint8_t* text_buffer, |
209 intptr_t* buffer_len, | 210 intptr_t* buffer_len, |
210 bool* is_snapshot); | 211 bool* is_snapshot); |
211 | 212 |
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
662 bool is_typed_data_; | 663 bool is_typed_data_; |
663 | 664 |
664 DISALLOW_ALLOCATION(); | 665 DISALLOW_ALLOCATION(); |
665 DISALLOW_COPY_AND_ASSIGN(ScopedMemBuffer); | 666 DISALLOW_COPY_AND_ASSIGN(ScopedMemBuffer); |
666 }; | 667 }; |
667 | 668 |
668 } // namespace bin | 669 } // namespace bin |
669 } // namespace dart | 670 } // namespace dart |
670 | 671 |
671 #endif // BIN_DARTUTILS_H_ | 672 #endif // BIN_DARTUTILS_H_ |
OLD | NEW |