| 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 #include "platform/globals.h" | 5 #include "platform/globals.h" |
| 6 #if defined(TARGET_OS_ANDROID) | 6 #if defined(HOST_OS_ANDROID) |
| 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 | 12 #include <libgen.h> // NOLINT |
| 13 #include <sys/mman.h> // NOLINT | 13 #include <sys/mman.h> // NOLINT |
| 14 #include <sys/sendfile.h> // NOLINT | 14 #include <sys/sendfile.h> // NOLINT |
| 15 #include <sys/stat.h> // NOLINT | 15 #include <sys/stat.h> // NOLINT |
| 16 #include <sys/types.h> // NOLINT | 16 #include <sys/types.h> // NOLINT |
| (...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 } | 601 } |
| 602 return ((file_1_info.st_ino == file_2_info.st_ino) && | 602 return ((file_1_info.st_ino == file_2_info.st_ino) && |
| 603 (file_1_info.st_dev == file_2_info.st_dev)) | 603 (file_1_info.st_dev == file_2_info.st_dev)) |
| 604 ? File::kIdentical | 604 ? File::kIdentical |
| 605 : File::kDifferent; | 605 : File::kDifferent; |
| 606 } | 606 } |
| 607 | 607 |
| 608 } // namespace bin | 608 } // namespace bin |
| 609 } // namespace dart | 609 } // namespace dart |
| 610 | 610 |
| 611 #endif // defined(TARGET_OS_ANDROID) | 611 #endif // defined(HOST_OS_ANDROID) |
| OLD | NEW |