| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 VM_DART_API_IMPL_H_ | 5 #ifndef VM_DART_API_IMPL_H_ |
| 6 #define VM_DART_API_IMPL_H_ | 6 #define VM_DART_API_IMPL_H_ |
| 7 | 7 |
| 8 #include "vm/allocation.h" | 8 #include "vm/allocation.h" |
| 9 | 9 |
| 10 namespace dart { | 10 namespace dart { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 // Validate and convert the passed in handle as a persistent handle. | 30 // Validate and convert the passed in handle as a persistent handle. |
| 31 static PersistentHandle* UnwrapAsPersistentHandle(const ApiState& state, | 31 static PersistentHandle* UnwrapAsPersistentHandle(const ApiState& state, |
| 32 Dart_Handle object); | 32 Dart_Handle object); |
| 33 | 33 |
| 34 // Get the handle used to designate successful return. | 34 // Get the handle used to designate successful return. |
| 35 static Dart_Handle Success(); | 35 static Dart_Handle Success(); |
| 36 | 36 |
| 37 // Generate a handle used to designate an error return. | 37 // Generate a handle used to designate an error return. |
| 38 static Dart_Handle Error(const char* msg); | 38 static Dart_Handle Error(const char* msg); |
| 39 | 39 |
| 40 // Get a handle to Null. |
| 41 static Dart_Handle Null(); |
| 42 |
| 43 // Get a handle to True. |
| 44 static Dart_Handle True(); |
| 45 |
| 46 // Get a handle to False |
| 47 static Dart_Handle False(); |
| 48 |
| 40 // Allocate space in the local zone. | 49 // Allocate space in the local zone. |
| 41 static uword Allocate(intptr_t size); | 50 static uword Allocate(intptr_t size); |
| 42 | 51 |
| 43 // Reallocate space in the local zone. | 52 // Reallocate space in the local zone. |
| 44 static uword Reallocate(uword ptr, intptr_t old_size, intptr_t new_size); | 53 static uword Reallocate(uword ptr, intptr_t old_size, intptr_t new_size); |
| 45 }; | 54 }; |
| 46 | 55 |
| 47 } // namespace dart. | 56 } // namespace dart. |
| 48 | 57 |
| 49 #endif // VM_DART_API_IMPL_H_ | 58 #endif // VM_DART_API_IMPL_H_ |
| OLD | NEW |