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

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

Issue 1800863002: Cleanup in //runtime/bin (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 months 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
« no previous file with comments | « runtime/bin/file_android.cc ('k') | runtime/bin/file_macos.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "platform/globals.h" 5 #include "platform/globals.h"
6 #if defined(TARGET_OS_LINUX) 6 #if defined(TARGET_OS_LINUX)
7 7
8 #include "bin/file.h" 8 #include "bin/file.h"
9 9
10 #include <errno.h> // NOLINT 10 #include <errno.h> // NOLINT
11 #include <fcntl.h> // NOLINT 11 #include <fcntl.h> // NOLINT
12 #include <libgen.h> // NOLINT
13 #include <sys/sendfile.h> // NOLINT
12 #include <sys/stat.h> // NOLINT 14 #include <sys/stat.h> // NOLINT
13 #include <sys/types.h> // NOLINT 15 #include <sys/types.h> // NOLINT
14 #include <sys/sendfile.h> // NOLINT
15 #include <unistd.h> // NOLINT 16 #include <unistd.h> // NOLINT
16 #include <libgen.h> // NOLINT
17 17
18 #include "bin/builtin.h" 18 #include "bin/builtin.h"
19 #include "bin/log.h" 19 #include "bin/log.h"
20 #include "platform/signal_blocker.h" 20 #include "platform/signal_blocker.h"
21 #include "platform/utils.h" 21 #include "platform/utils.h"
22 22
23 namespace dart { 23 namespace dart {
24 namespace bin { 24 namespace bin {
25 25
26 class FileHandle { 26 class FileHandle {
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 return ((file_1_info.st_ino == file_2_info.st_ino) && 498 return ((file_1_info.st_ino == file_2_info.st_ino) &&
499 (file_1_info.st_dev == file_2_info.st_dev)) ? 499 (file_1_info.st_dev == file_2_info.st_dev)) ?
500 File::kIdentical : 500 File::kIdentical :
501 File::kDifferent; 501 File::kDifferent;
502 } 502 }
503 503
504 } // namespace bin 504 } // namespace bin
505 } // namespace dart 505 } // namespace dart
506 506
507 #endif // defined(TARGET_OS_LINUX) 507 #endif // defined(TARGET_OS_LINUX)
OLDNEW
« no previous file with comments | « runtime/bin/file_android.cc ('k') | runtime/bin/file_macos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698