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

Side by Side Diff: src/log-utils.cc

Issue 7860011: Rename SmartPointer to SmartArrayPointer. (Closed) Base URL: git://github.com/v8/v8.git@bleeding_edge
Patch Set: rebase it again to get more fixes Created 9 years, 3 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 | « src/log.cc ('k') | src/messages.h » ('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 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 default: 118 default:
119 // All other %'s expand to themselves. 119 // All other %'s expand to themselves.
120 stream.Put('%'); 120 stream.Put('%');
121 stream.Put(*p); 121 stream.Put(*p);
122 break; 122 break;
123 } 123 }
124 } else { 124 } else {
125 stream.Put(*p); 125 stream.Put(*p);
126 } 126 }
127 } 127 }
128 SmartPointer<const char> expanded = stream.ToCString(); 128 SmartArrayPointer<const char> expanded = stream.ToCString();
129 OpenFile(*expanded); 129 OpenFile(*expanded);
130 } else { 130 } else {
131 OpenFile(FLAG_logfile); 131 OpenFile(FLAG_logfile);
132 } 132 }
133 } 133 }
134 } 134 }
135 } 135 }
136 136
137 137
138 void Log::OpenStdout() { 138 void Log::OpenStdout() {
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 ASSERT(pos_ <= Log::kMessageBufferSize); 301 ASSERT(pos_ <= Log::kMessageBufferSize);
302 const int written = log_->WriteToFile(log_->message_buffer_, pos_); 302 const int written = log_->WriteToFile(log_->message_buffer_, pos_);
303 if (written != pos_) { 303 if (written != pos_) {
304 log_->stop(); 304 log_->stop();
305 log_->logger_->LogFailure(); 305 log_->logger_->LogFailure();
306 } 306 }
307 } 307 }
308 308
309 309
310 } } // namespace v8::internal 310 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/log.cc ('k') | src/messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698