OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:output_handle_
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/v8/src/
log-utils.h
61
return !is_stopped_ &&
output_handle_
!= NULL;
129
ASSERT(
output_handle_
!= NULL);
130
size_t rv = fwrite(msg, 1, length,
output_handle_
);
133
fflush(
output_handle_
);
140
// When logging is active
output_handle_
is used to store a pointer to log
141
// destination. mutex_ should be acquired before using
output_handle_
.
142
FILE*
output_handle_
;
member in class:v8::internal::Log
/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
Completed in 41 milliseconds