OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Verbosity
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps_instance.h
34
//
Verbosity
levels, ecplicitly numbered since we pass these
36
enum
Verbosity
{
59
void SetVerbosity(
Verbosity
verbosity
);
86
// Output log message to stderr if the current
verbosity
is set
87
// at or above the given
verbosity
.
88
void VALog(
Verbosity
verbosity
, const char *fmt, va_list args);
122
Verbosity
verbosity_;
ps_instance.cc
195
// Reset
verbosity
if passed in
196
const char*
verbosity
= getenv("PS_VERBOSITY");
local
197
if (
verbosity
) SetVerbosity(static_cast<
Verbosity
>(atoi(
verbosity
)));
228
void PSInstance::SetVerbosity(
Verbosity
verbosity
) {
229
verbosity_ =
verbosity
;
232
void PSInstance::VALog(
Verbosity
verbosity
, const char *fmt, va_list args)
[
all
...]
Completed in 575 milliseconds