OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 "bin/vmservice_dartium.h" | 5 #include "bin/vmservice_dartium.h" |
6 | 6 |
7 #include "bin/builtin.h" | 7 #include "bin/builtin.h" |
8 #include "bin/dartutils.h" | 8 #include "bin/dartutils.h" |
9 #include "bin/eventhandler.h" | 9 #include "bin/eventhandler.h" |
10 #include "bin/platform.h" | 10 #include "bin/platform.h" |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 | 141 |
142 // We've processed size_in bytes. | 142 // We've processed size_in bytes. |
143 input_cursor += size_in; | 143 input_cursor += size_in; |
144 | 144 |
145 // We're finished decompressing when zlib tells us. | 145 // We're finished decompressing when zlib tells us. |
146 } while (ret != Z_STREAM_END); | 146 } while (ret != Z_STREAM_END); |
147 | 147 |
148 inflateEnd(&strm); | 148 inflateEnd(&strm); |
149 } | 149 } |
150 | 150 |
| 151 |
151 /* DISALLOW_ALLOCATION */ | 152 /* DISALLOW_ALLOCATION */ |
152 void VmServiceServer::operator delete(void* pointer) { | 153 void VmServiceServer::operator delete(void* pointer) { |
153 fprintf(stderr, "unreachable code\n"); | 154 fprintf(stderr, "unreachable code\n"); |
154 abort(); | 155 abort(); |
155 } | 156 } |
156 | 157 |
157 } // namespace bin | 158 } // namespace bin |
158 } // namespace dart | 159 } // namespace dart |
OLD | NEW |