| 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 "include/dart_api.h" | 8 #include "include/dart_api.h" |
| 9 #include "include/dart_native_api.h" | 9 #include "include/dart_native_api.h" |
| 10 | 10 |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 static void ReadFile(const uint8_t** data, intptr_t* file_len, void* stream); | 117 static void ReadFile(const uint8_t** data, intptr_t* file_len, void* stream); |
| 118 static void WriteFile(const void* buffer, intptr_t num_bytes, void* stream); | 118 static void WriteFile(const void* buffer, intptr_t num_bytes, void* stream); |
| 119 static void CloseFile(void* stream); | 119 static void CloseFile(void* stream); |
| 120 static bool EntropySource(uint8_t* buffer, intptr_t length); | 120 static bool EntropySource(uint8_t* buffer, intptr_t length); |
| 121 static Dart_Handle ReadStringFromFile(const char* filename); | 121 static Dart_Handle ReadStringFromFile(const char* filename); |
| 122 static Dart_Handle LibraryTagHandler(Dart_LibraryTag tag, | 122 static Dart_Handle LibraryTagHandler(Dart_LibraryTag tag, |
| 123 Dart_Handle library, | 123 Dart_Handle library, |
| 124 Dart_Handle url); | 124 Dart_Handle url); |
| 125 static Dart_Handle LoadScript(const char* script_uri, | 125 static Dart_Handle LoadScript(const char* script_uri, |
| 126 Dart_Handle builtin_lib); | 126 Dart_Handle builtin_lib); |
| 127 static Dart_Handle LoadSourceAsync(Dart_Handle library, | |
| 128 Dart_Handle url, | |
| 129 Dart_LibraryTag tag, | |
| 130 Dart_Handle builtin_lib); | |
| 131 static Dart_Handle PrepareForScriptLoading(const char* package_root, | 127 static Dart_Handle PrepareForScriptLoading(const char* package_root, |
| 132 Dart_Handle builtin_lib); | 128 Dart_Handle builtin_lib); |
| 133 | 129 |
| 134 static bool PostNull(Dart_Port port_id); | 130 static bool PostNull(Dart_Port port_id); |
| 135 static bool PostInt32(Dart_Port port_id, int32_t value); | 131 static bool PostInt32(Dart_Port port_id, int32_t value); |
| 136 static bool PostInt64(Dart_Port port_id, int64_t value); | 132 static bool PostInt64(Dart_Port port_id, int64_t value); |
| 137 | 133 |
| 138 static Dart_Handle GetDartType(const char* library_url, | 134 static Dart_Handle GetDartType(const char* library_url, |
| 139 const char* class_name); | 135 const char* class_name); |
| 140 // Create a new Dart OSError object with the current OS error. | 136 // Create a new Dart OSError object with the current OS error. |
| (...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 | 540 |
| 545 ~ScopedBlockingCall() { | 541 ~ScopedBlockingCall() { |
| 546 Dart_IsolateUnblocked(); | 542 Dart_IsolateUnblocked(); |
| 547 } | 543 } |
| 548 }; | 544 }; |
| 549 | 545 |
| 550 } // namespace bin | 546 } // namespace bin |
| 551 } // namespace dart | 547 } // namespace dart |
| 552 | 548 |
| 553 #endif // BIN_DARTUTILS_H_ | 549 #endif // BIN_DARTUTILS_H_ |
| OLD | NEW |