| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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_ISOLATE_H_ | 5 #ifndef VM_ISOLATE_H_ |
| 6 #define VM_ISOLATE_H_ | 6 #define VM_ISOLATE_H_ |
| 7 | 7 |
| 8 #include "include/dart_api.h" | 8 #include "include/dart_api.h" |
| 9 #include "platform/assert.h" | 9 #include "platform/assert.h" |
| 10 #include "vm/base_isolate.h" | 10 #include "vm/base_isolate.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 class RawGrowableObjectArray; | 70 class RawGrowableObjectArray; |
| 71 class RawMint; | 71 class RawMint; |
| 72 class RawObject; | 72 class RawObject; |
| 73 class RawInteger; | 73 class RawInteger; |
| 74 class RawError; | 74 class RawError; |
| 75 class RawFloat32x4; | 75 class RawFloat32x4; |
| 76 class RawInt32x4; | 76 class RawInt32x4; |
| 77 class RawUserTag; | 77 class RawUserTag; |
| 78 class SampleBuffer; | 78 class SampleBuffer; |
| 79 class SendPort; | 79 class SendPort; |
| 80 class ServiceIdZone; |
| 80 class Simulator; | 81 class Simulator; |
| 81 class StackResource; | 82 class StackResource; |
| 82 class StackZone; | 83 class StackZone; |
| 83 class StubCode; | 84 class StubCode; |
| 84 class TypeArguments; | 85 class TypeArguments; |
| 85 class TypeParameter; | 86 class TypeParameter; |
| 86 class UserTag; | 87 class UserTag; |
| 87 | 88 |
| 88 | 89 |
| 89 class IsolateVisitor { | 90 class IsolateVisitor { |
| (...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 965 uint8_t* serialized_args_; | 966 uint8_t* serialized_args_; |
| 966 intptr_t serialized_args_len_; | 967 intptr_t serialized_args_len_; |
| 967 uint8_t* serialized_message_; | 968 uint8_t* serialized_message_; |
| 968 intptr_t serialized_message_len_; | 969 intptr_t serialized_message_len_; |
| 969 bool paused_; | 970 bool paused_; |
| 970 }; | 971 }; |
| 971 | 972 |
| 972 } // namespace dart | 973 } // namespace dart |
| 973 | 974 |
| 974 #endif // VM_ISOLATE_H_ | 975 #endif // VM_ISOLATE_H_ |
| OLD | NEW |