Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: runtime/bin/file_win.cc

Issue 8578003: Implement setPosition on File to seek to a byte position. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 #include <fcntl.h> 5 #include <fcntl.h>
6 #include <io.h> 6 #include <io.h>
7 #include <stdio.h> 7 #include <stdio.h>
8 #include <string.h> 8 #include <string.h>
9 #include <sys/stat.h> 9 #include <sys/stat.h>
10 10
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 return write(handle_->fd(), buffer, num_bytes); 62 return write(handle_->fd(), buffer, num_bytes);
63 } 63 }
64 64
65 65
66 off_t File::Position() { 66 off_t File::Position() {
67 ASSERT(handle_->fd() >= 0); 67 ASSERT(handle_->fd() >= 0);
68 return lseek(handle_->fd(), 0, SEEK_CUR); 68 return lseek(handle_->fd(), 0, SEEK_CUR);
69 } 69 }
70 70
71 71
72 off_t File::Position(int64_t position) {
73 ASSERT(handle_->fd() >= 0);
74 return lseek(handle_->fd(), position, SEEK_SET);
75 }
76
77
72 void File::Flush() { 78 void File::Flush() {
73 ASSERT(handle_->fd()); 79 ASSERT(handle_->fd());
74 _commit(handle_->fd()); 80 _commit(handle_->fd());
75 } 81 }
76 82
77 83
78 off_t File::Length() { 84 off_t File::Length() {
79 ASSERT(handle_->fd() >= 0); 85 ASSERT(handle_->fd() >= 0);
80 off_t position = lseek(handle_->fd(), 0, SEEK_CUR); 86 off_t position = lseek(handle_->fd(), 0, SEEK_CUR);
81 if (position < 0) { 87 if (position < 0) {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 145
140 146
141 const char* File::PathSeparator() { 147 const char* File::PathSeparator() {
142 return "\\"; 148 return "\\";
143 } 149 }
144 150
145 151
146 const char* File::StringEscapedPathSeparator() { 152 const char* File::StringEscapedPathSeparator() {
147 return "\\\\"; 153 return "\\\\";
148 } 154 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698