OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |