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 44 return !is_stopped_ && output_handle_ != NULL;
112 DCHECK(output_handle_ != NULL);
113 size_t rv = fwrite(msg, 1, length, output_handle_);
116 fflush(output_handle_);
123 // When logging is active output_handle_ is used to store a pointer to log
124 // destination. mutex_ should be acquired before using output_handle_.
125 FILE* output_handle_; member in class:v8::internal::Log
log-utils.cc 24 output_handle_(NULL),
57 if (output_handle_ != nullptr) {
70 output_handle_ = stdout;
76 output_handle_ = base::OS::OpenTemporaryFile();
82 output_handle_ = base::OS::FOpen(name, base::OS::LogFileOpenMode);
88 if (output_handle_ != NULL) {
90 fclose(output_handle_);
92 result = output_handle_;
95 output_handle_ = NULL;

Completed in 47 milliseconds