/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
common.h | 34 #define LOG_J(sev, obj) LOG(sev) << "Jingle:" << obj->ToString() << ": " 35 #define LOG_JV(sev, obj) LOG_V(sev) << "Jingle:" << obj->ToString() << ": "
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
common.h | 34 #define LOG_J(sev, obj) LOG(sev) << "Jingle:" << obj->ToString() << ": " 35 #define LOG_JV(sev, obj) LOG_V(sev) << "Jingle:" << obj->ToString() << ": "
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
logging.h | 38 // LOG(sev) logs the given stream at severity "sev", which must be a 41 // LOG_V(sev) Like LOG(), but sev is a run-time variable of the LoggingSeverity 43 // LOG_F(sev) Like LOG(), but includes the name of the current function. 44 // LOG_T(sev) Like LOG(), but includes the this pointer. 45 // LOG_T_F(sev) Like LOG_F(), but includes the this pointer. 46 // LOG_GLE(M)(sev [, mod]) attempt to add a string description of the 49 // LOG_ERRNO(sev) attempts to add a string description of an errno-derived 52 // LOG_ERR(sev) is an alias for the platform's normal error system, i.e. _GLE o [all...] |
profiler.h | 72 // Reports current timings to the log at severity |sev|. 73 #define PROFILE_DUMP_ALL(sev) \ 74 talk_base::Profiler::Instance()->ReportAllToLog(__FILE__, __LINE__, sev) 76 // to the log at severity |sev|. Using a unique event name as |prefix| will 78 #define PROFILE_DUMP(sev, prefix) \ 79 talk_base::Profiler::Instance()->ReportToLog(__FILE__, __LINE__, sev, prefix) 84 // TODO(ryanpetrie): Consider adding PROFILE_DUMP_EVERY(sev, iterations) 94 #define PROFILE_DUMP_ALL(sev) (void)0 95 #define PROFILE_DUMP(sev, prefix) (void)0
|
logging_unittest.cc | 40 int sev = LogMessage::GetLogToStream(NULL); local 55 EXPECT_EQ(sev, LogMessage::GetLogToStream(NULL)); 62 int sev = LogMessage::GetLogToStream(NULL); local 84 EXPECT_EQ(sev, LogMessage::GetLogToStream(NULL)); 103 int sev = LogMessage::GetLogToStream(NULL); local 120 EXPECT_EQ(sev, LogMessage::GetLogToStream(NULL));
|
logging.cc | 122 LogMessage::LogMessage(const char* file, int line, LoggingSeverity sev, 124 : severity_(sev), 144 print_stream_ << Describe(sev) << "(" << DescribeFile(file) 264 int sev = NO_LOGGING; local 267 sev = _min(sev, it->second); 270 return sev; 390 const char* LogMessage::Describe(LoggingSeverity sev) { 391 switch (sev) {
|
autodetectproxy.cc | 224 LoggingSeverity sev = (proxy_.type == PROXY_UNKNOWN) ? LS_ERROR : LS_INFO; local 225 LOG_V(sev) << "AutoDetectProxy detected "
|
/external/chromium_org/third_party/libjingle/overrides/talk/base/ |
logging.h | 93 ERRCTX_EN = ERRCTX_ERRNO, // LOG_E(sev, EN, x) 94 ERRCTX_HR = ERRCTX_HRESULT, // LOG_E(sev, HR, x) 95 ERRCTX_OS = ERRCTX_OSSTATUS, // LOG_E(sev, OS, x) 171 #define DIAGNOSTIC_LOG(sev, ctx, err, ...) \ 173 __FILE__, __LINE__, sev, VLOG_IS_ON(sev), \ 176 #define LOG_CHECK_LEVEL(sev) VLOG_IS_ON(talk_base::sev) 177 #define LOG_CHECK_LEVEL_V(sev) VLOG_IS_ON(sev) [all...] |
logging.cc | 27 #define LOG_LAZY_STREAM_DIRECT(file_name, line_number, sev) \ 29 -sev).stream(), true)
|
/external/chromium/third_party/libjingle/overrides/talk/base/ |
logging.h | 38 // LOG(sev) logs the given stream at severity "sev", which must be a 41 // LOG_V(sev) Like LOG(), but sev is a run-time variable of the LoggingSeverity 43 // LOG_F(sev) Like LOG(), but includes the name of the current function. 44 // LOG_GLE(M)(sev [, mod]) attempt to add a string description of the 47 // LOG_ERRNO(sev) attempts to add a string description of an errno-derived 50 // LOG_ERR(sev) is an alias for the platform's normal error system, i.e. _GLE on 54 // LOG_E(sev, ctx, err, ...) logs a detailed error interpreted using the 56 // LOG_CHECK_LEVEL(sev) (and LOG_CHECK_LEVEL_V(sev)) can be used as a tes [all...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
logging.h | 38 // LOG(sev) logs the given stream at severity "sev", which must be a 41 // LOG_V(sev) Like LOG(), but sev is a run-time variable of the LoggingSeverity 43 // LOG_F(sev) Like LOG(), but includes the name of the current function. 44 // LOG_GLE(M)(sev [, mod]) attempt to add a string description of the 47 // LOG_ERRNO(sev) attempts to add a string description of an errno-derived 50 // LOG_ERR(sev) is an alias for the platform's normal error system, i.e. _GLE on 54 // LOG_E(sev, ctx, err, ...) logs a detailed error interpreted using the 56 // LOG_CHECK_LEVEL(sev) (and LOG_CHECK_LEVEL_V(sev)) can be used as a tes [all...] |
logging.cc | 122 LogMessage::LogMessage(const char* file, int line, LoggingSeverity sev, 124 : severity_(sev) { 143 print_stream_ << Describe(sev) << "(" << DescribeFile(file) 245 int sev = NO_LOGGING; local 248 sev = _min(sev, it->second); 251 return sev; 371 const char* LogMessage::Describe(LoggingSeverity sev) { 372 switch (sev) {
|
autodetectproxy.cc | 113 LoggingSeverity sev = (proxy_.type == PROXY_UNKNOWN) ? LS_ERROR : LS_INFO; local 114 LOG_V(sev) << "AutoDetectProxy detected " << proxy_.address.ToString()
|
/external/qemu/distrib/sdl-1.2.15/src/audio/windx5/ |
directx.h | 22 #define MAKE_HRESULT(sev,fac,code) \ 23 ((HRESULT)(((unsigned long)(sev)<<31) | ((unsigned long)(fac)<<16) | ((unsigned long)(code))))
|
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/ |
directx.h | 22 #define MAKE_HRESULT(sev,fac,code) \ 23 ((HRESULT)(((unsigned long)(sev)<<31) | ((unsigned long)(fac)<<16) | ((unsigned long)(code))))
|
/external/libvpx/libvpx/nestegg/test/ |
test.c | 44 char const * sev = NULL; local 53 sev = "debug: "; 56 sev = "warning: "; 59 sev = "critical:"; 62 sev = "unknown: "; 65 fprintf(stderr, "%p %s ", (void *) ctx, sev);
|
/external/strace/ |
time.c | 774 } sev; local 776 if (umove(tcp, arg, &sev) < 0) 779 tprintf("{%#x, ", sev.sigev_value); 780 if (sev.sigev_notify == SIGEV_SIGNAL) 781 tprintf("%s, ", signame(sev.sigev_signo)); 783 tprintf("%u, ", sev.sigev_signo); 784 printxval(sigev_value, sev.sigev_notify + 1, "SIGEV_???"); 786 if (sev.sigev_notify == SIGEV_THREAD_ID) 787 tprintf("{%d}", sev.un.tid); 788 else if (sev.sigev_notify == SIGEV_THREAD 802 struct sigevent sev; local [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
errors.c | 54 #define severity_is(sev, kind) enum_is(sev, SEVERITY, kind) 270 int s, t, sev; local 273 sev = enum_to_index(severity); 275 return get_message_state(ctx, s, t, sev, id); 598 int s, t, sev, smax, tmax, sevmax; local 621 for (sev = severity; sev < sevmax; sev++) 628 ClientIDs->Defaults[sev][s][t] = enabled 740 int s, t, sev; local 776 int s, t, sev; local [all...] |
/external/mesa3d/src/mesa/main/ |
errors.c | 54 #define severity_is(sev, kind) enum_is(sev, SEVERITY, kind) 270 int s, t, sev; local 273 sev = enum_to_index(severity); 275 return get_message_state(ctx, s, t, sev, id); 598 int s, t, sev, smax, tmax, sevmax; local 621 for (sev = severity; sev < sevmax; sev++) 628 ClientIDs->Defaults[sev][s][t] = enabled 740 int s, t, sev; local 776 int s, t, sev; local [all...] |
/build/tools/ |
warn.py | 21 def colorforseverity(sev): 22 if sev == severity.FIXMENOW: 24 if sev == severity.HIGH: 26 if sev == severity.MEDIUM: 28 if sev == severity.LOW: 30 if sev == severity.HARMLESS: 32 if sev == severity.UNKNOWN: 492 def dumpseverity(sev): 494 if i['severity'] == sev: [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/api/ |
event.cpp | 78 ref_ptr<soft_event> sev = transfer( local 82 sev->wait(); 130 ref_ptr<soft_event> sev = transfer( local
|
/external/mesa3d/src/gallium/state_trackers/clover/api/ |
event.cpp | 78 ref_ptr<soft_event> sev = transfer( local 82 sev->wait(); 130 ref_ptr<soft_event> sev = transfer( local
|
/hardware/qcom/media/mm-video-legacy/vidc/vdec/src/ |
h264_utils.cpp | 1011 pan_scan_param->rect_left_offset[i] = sev(); 1012 pan_scan_param->rect_right_offset[i] = sev(); 1013 pan_scan_param->rect_top_offset[i] = sev(); 1014 pan_scan_param->rect_bottom_offset[i] = sev(); 1199 OMX_S32 h264_stream_parser::sev() function in class:h264_stream_parser [all...] |
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/ |
h264_utils.cpp | 1117 OMX_S32 h264_stream_parser::sev() function in class:h264_stream_parser [all...] |