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

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

Issue 2843343002: [dart:io] Make Platform.localeName fall back on en_US if LANG is not defined (Closed)
Patch Set: Created 3 years, 7 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/platform_android.cc ('k') | runtime/bin/platform_linux.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) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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(HOST_OS_FUCHSIA) 6 #if defined(HOST_OS_FUCHSIA)
7 7
8 #include "bin/platform.h" 8 #include "bin/platform.h"
9 9
10 #include <string.h> // NOLINT 10 #include <string.h> // NOLINT
(...skipping 30 matching lines...) Expand all
41 return "lib"; 41 return "lib";
42 } 42 }
43 43
44 44
45 const char* Platform::LibraryExtension() { 45 const char* Platform::LibraryExtension() {
46 return "so"; 46 return "so";
47 } 47 }
48 48
49 49
50 const char* Platform::LocaleName() { 50 const char* Platform::LocaleName() {
51 return getenv("LANG"); 51 char* lang = getenv("LANG");
52 if (lang == NULL) {
53 return "en_US";
54 }
55 return lang;
52 } 56 }
53 57
54 58
55 bool Platform::LocalHostname(char* buffer, intptr_t buffer_length) { 59 bool Platform::LocalHostname(char* buffer, intptr_t buffer_length) {
56 return gethostname(buffer, buffer_length) == 0; 60 return gethostname(buffer, buffer_length) == 0;
57 } 61 }
58 62
59 63
60 char** Platform::Environment(intptr_t* count) { 64 char** Platform::Environment(intptr_t* count) {
61 // Using environ directly is only safe as long as we do not 65 // Using environ directly is only safe as long as we do not
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 119
116 120
117 void Platform::Exit(int exit_code) { 121 void Platform::Exit(int exit_code) {
118 exit(exit_code); 122 exit(exit_code);
119 } 123 }
120 124
121 } // namespace bin 125 } // namespace bin
122 } // namespace dart 126 } // namespace dart
123 127
124 #endif // defined(HOST_OS_FUCHSIA) 128 #endif // defined(HOST_OS_FUCHSIA)
OLDNEW
« no previous file with comments | « runtime/bin/platform_android.cc ('k') | runtime/bin/platform_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698