HomeSort by relevance Sort by last modified time
    Searched refs:output_handle_ (Results 1 - 2 of 2) sorted by null

  /external/v8/src/
log-utils.h 54 return !is_stopped_ && output_handle_ != NULL;
78 ASSERT(output_handle_ != NULL);
79 size_t rv = fwrite(msg, 1, length, output_handle_);
82 fflush(output_handle_);
89 // When logging is active output_handle_ is used to store a pointer to log
90 // destination. mutex_ should be acquired before using output_handle_.
91 FILE* output_handle_; member in class:v8::internal::Log
log-utils.cc 42 output_handle_(NULL),
140 output_handle_ = stdout;
146 output_handle_ = i::OS::OpenTemporaryFile();
160 output_handle_ = OS::FOpen(name, OS::LogFileOpenMode);
175 if (output_handle_ != NULL) {
177 fclose(output_handle_);
179 result = output_handle_;
182 output_handle_ = NULL;

Completed in 31 milliseconds