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 /** | 5 /** |
6 * File, socket, HTTP, and other I/O support for server applications. | 6 * File, socket, HTTP, and other I/O support for server applications. |
7 * | 7 * |
8 * The I/O library is used for Dart server applications, | 8 * The I/O library is used for Dart server applications, |
9 * which run on a stand-alone Dart VM from the command line. | 9 * which run on a stand-alone Dart VM from the command line. |
10 * *This library does not work in browser-based applications.* | 10 * *This library does not work in browser-based applications.* |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 import 'dart:async'; | 199 import 'dart:async'; |
200 import 'dart:_internal'; | 200 import 'dart:_internal'; |
201 import 'dart:collection' show HashMap, | 201 import 'dart:collection' show HashMap, |
202 HashSet, | 202 HashSet, |
203 Queue, | 203 Queue, |
204 ListQueue, | 204 ListQueue, |
205 LinkedList, | 205 LinkedList, |
206 LinkedListEntry, | 206 LinkedListEntry, |
207 UnmodifiableMapView; | 207 UnmodifiableMapView; |
208 import 'dart:convert'; | 208 import 'dart:convert'; |
209 import 'dart:developer'; | |
210 import 'dart:isolate'; | 209 import 'dart:isolate'; |
211 import 'dart:math'; | 210 import 'dart:math'; |
212 import 'dart:typed_data'; | 211 import 'dart:typed_data'; |
213 | 212 |
214 part 'bytes_builder.dart'; | 213 part 'bytes_builder.dart'; |
215 part 'common.dart'; | 214 part 'common.dart'; |
216 part 'crypto.dart'; | 215 part 'crypto.dart'; |
217 part 'data_transformer.dart'; | 216 part 'data_transformer.dart'; |
218 part 'directory.dart'; | 217 part 'directory.dart'; |
219 part 'directory_impl.dart'; | 218 part 'directory_impl.dart'; |
220 part 'eventhandler.dart'; | 219 part 'eventhandler.dart'; |
221 part 'file.dart'; | 220 part 'file.dart'; |
222 part 'file_impl.dart'; | 221 part 'file_impl.dart'; |
223 part 'file_system_entity.dart'; | 222 part 'file_system_entity.dart'; |
224 part 'http.dart'; | 223 part 'http.dart'; |
225 part 'http_date.dart'; | 224 part 'http_date.dart'; |
226 part 'http_headers.dart'; | 225 part 'http_headers.dart'; |
227 part 'http_impl.dart'; | 226 part 'http_impl.dart'; |
228 part 'http_parser.dart'; | 227 part 'http_parser.dart'; |
229 part 'http_session.dart'; | 228 part 'http_session.dart'; |
230 part 'io_resource_info.dart'; | |
231 part 'io_sink.dart'; | 229 part 'io_sink.dart'; |
232 part 'io_service.dart'; | 230 part 'io_service.dart'; |
233 part 'link.dart'; | 231 part 'link.dart'; |
234 part 'platform.dart'; | 232 part 'platform.dart'; |
235 part 'platform_impl.dart'; | 233 part 'platform_impl.dart'; |
236 part 'process.dart'; | 234 part 'process.dart'; |
237 part 'secure_server_socket.dart'; | 235 part 'secure_server_socket.dart'; |
238 part 'secure_socket.dart'; | 236 part 'secure_socket.dart'; |
239 part 'security_context.dart'; | 237 part 'security_context.dart'; |
240 part 'service_object.dart'; | 238 part 'service_object.dart'; |
241 part 'socket.dart'; | 239 part 'socket.dart'; |
242 part 'stdio.dart'; | 240 part 'stdio.dart'; |
243 part 'string_transformer.dart'; | 241 part 'string_transformer.dart'; |
244 part 'websocket.dart'; | 242 part 'websocket.dart'; |
245 part 'websocket_impl.dart'; | 243 part 'websocket_impl.dart'; |
OLD | NEW |