| 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 patch class _FileUtils { | 5 patch class _FileUtils { |
| 6 /* patch */ static SendPort _newServicePort() native "File_NewServicePort"; | 6 /* patch */ static SendPort _newServicePort() native "File_NewServicePort"; |
| 7 } | 7 } |
| 8 | 8 |
| 9 patch class _File { | 9 patch class _File { |
| 10 /* patch */ static _exists(String path) native "File_Exists"; | 10 /* patch */ static _exists(String path) native "File_Exists"; |
| 11 /* patch */ static _create(String path) native "File_Create"; | 11 /* patch */ static _create(String path) native "File_Create"; |
| 12 /* patch */ static _createLink(String path, String target) | 12 /* patch */ static _createLink(String path, String target) |
| 13 native "File_CreateLink"; | 13 native "File_CreateLink"; |
| 14 /* patch */ static _linkTarget(String path) native "File_LinkTarget"; | 14 /* patch */ static _linkTarget(String path) native "File_LinkTarget"; |
| 15 /* patch */ static _delete(String path) native "File_Delete"; | 15 /* patch */ static _delete(String path) native "File_Delete"; |
| 16 /* patch */ static _deleteLink(String path) native "File_DeleteLink"; | 16 /* patch */ static _deleteLink(String path) native "File_DeleteLink"; |
| 17 /* patch */ static _rename(String oldPath, String newPath) | 17 /* patch */ static _rename(String oldPath, String newPath) |
| 18 native "File_Rename"; | 18 native "File_Rename"; |
| 19 /* patch */ static _renameLink(String oldPath, String newPath) |
| 20 native "File_RenameLink"; |
| 19 /* patch */ static _lengthFromPath(String path) native "File_LengthFromPath"; | 21 /* patch */ static _lengthFromPath(String path) native "File_LengthFromPath"; |
| 20 /* patch */ static _lastModified(String path) native "File_LastModified"; | 22 /* patch */ static _lastModified(String path) native "File_LastModified"; |
| 21 /* patch */ static _open(String path, int mode) native "File_Open"; | 23 /* patch */ static _open(String path, int mode) native "File_Open"; |
| 22 /* patch */ static int _openStdio(int fd) native "File_OpenStdio"; | 24 /* patch */ static int _openStdio(int fd) native "File_OpenStdio"; |
| 23 /* patch */ static _fullPath(String path) native "File_FullPath"; | 25 /* patch */ static _fullPath(String path) native "File_FullPath"; |
| 24 } | 26 } |
| 25 | 27 |
| 26 patch class _RandomAccessFile { | 28 patch class _RandomAccessFile { |
| 27 /* patch */ static int _close(int id) native "File_Close"; | 29 /* patch */ static int _close(int id) native "File_Close"; |
| 28 /* patch */ static _readByte(int id) native "File_ReadByte"; | 30 /* patch */ static _readByte(int id) native "File_ReadByte"; |
| 29 /* patch */ static _read(int id, int bytes) native "File_Read"; | 31 /* patch */ static _read(int id, int bytes) native "File_Read"; |
| 30 /* patch */ static _readInto(int id, List<int> buffer, int start, int end) | 32 /* patch */ static _readInto(int id, List<int> buffer, int start, int end) |
| 31 native "File_ReadInto"; | 33 native "File_ReadInto"; |
| 32 /* patch */ static _writeByte(int id, int value) native "File_WriteByte"; | 34 /* patch */ static _writeByte(int id, int value) native "File_WriteByte"; |
| 33 /* patch */ static _writeFrom(int id, List<int> buffer, int start, int end) | 35 /* patch */ static _writeFrom(int id, List<int> buffer, int start, int end) |
| 34 native "File_WriteFrom"; | 36 native "File_WriteFrom"; |
| 35 /* patch */ static _position(int id) native "File_Position"; | 37 /* patch */ static _position(int id) native "File_Position"; |
| 36 /* patch */ static _setPosition(int id, int position) | 38 /* patch */ static _setPosition(int id, int position) |
| 37 native "File_SetPosition"; | 39 native "File_SetPosition"; |
| 38 /* patch */ static _truncate(int id, int length) native "File_Truncate"; | 40 /* patch */ static _truncate(int id, int length) native "File_Truncate"; |
| 39 /* patch */ static _length(int id) native "File_Length"; | 41 /* patch */ static _length(int id) native "File_Length"; |
| 40 /* patch */ static _flush(int id) native "File_Flush"; | 42 /* patch */ static _flush(int id) native "File_Flush"; |
| 41 } | 43 } |
| 42 | 44 |
| 43 Uint8List _makeUint8ListView(Uint8List source, int offsetInBytes, int length) { | 45 Uint8List _makeUint8ListView(Uint8List source, int offsetInBytes, int length) { |
| 44 return new Uint8List.view(source.buffer, offsetInBytes, length); | 46 return new Uint8List.view(source.buffer, offsetInBytes, length); |
| 45 } | 47 } |
| OLD | NEW |