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

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

Issue 2750843003: Rename TARGET_OS_* to HOST_OS_*. (Closed)
Patch Set: DEPS Created 3 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/crypto_macos.cc ('k') | runtime/bin/dartutils.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 #ifndef _CRT_RAND_S 5 #ifndef _CRT_RAND_S
6 #define _CRT_RAND_S 6 #define _CRT_RAND_S
7 #endif 7 #endif
8 8
9 #include "platform/globals.h" 9 #include "platform/globals.h"
10 #if defined(TARGET_OS_WINDOWS) 10 #if defined(HOST_OS_WINDOWS)
11 11
12 #include "bin/crypto.h" 12 #include "bin/crypto.h"
13 13
14 namespace dart { 14 namespace dart {
15 namespace bin { 15 namespace bin {
16 16
17 bool Crypto::GetRandomBytes(intptr_t count, uint8_t* buffer) { 17 bool Crypto::GetRandomBytes(intptr_t count, uint8_t* buffer) {
18 uint32_t num; 18 uint32_t num;
19 intptr_t read = 0; 19 intptr_t read = 0;
20 while (read < count) { 20 while (read < count) {
21 if (rand_s(&num) != 0) { 21 if (rand_s(&num) != 0) {
22 return false; 22 return false;
23 } 23 }
24 for (int i = 0; i < 4 && read < count; i++) { 24 for (int i = 0; i < 4 && read < count; i++) {
25 buffer[read] = num >> (i * 8); 25 buffer[read] = num >> (i * 8);
26 read++; 26 read++;
27 } 27 }
28 } 28 }
29 return true; 29 return true;
30 } 30 }
31 31
32 } // namespace bin 32 } // namespace bin
33 } // namespace dart 33 } // namespace dart
34 34
35 #endif // defined(TARGET_OS_WINDOWS) 35 #endif // defined(HOST_OS_WINDOWS)
OLDNEW
« no previous file with comments | « runtime/bin/crypto_macos.cc ('k') | runtime/bin/dartutils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698