Searched refs:sev (Results 1 - 25 of 31) sorted by relevance

12

/external/webrtc/webrtc/p2p/base/
H A Dcommon.h17 #define LOG_J(sev, obj) LOG(sev) << "Jingle:" << obj->ToString() << ": "
18 #define LOG_JV(sev, obj) LOG_V(sev) << "Jingle:" << obj->ToString() << ": "
H A Dport.cc581 rtc::LoggingSeverity sev = (conn && !conn->writable()) ? local
583 LOG_JV(sev, this)
909 rtc::LoggingSeverity sev = (!writable() ? rtc::LS_INFO : rtc::LS_VERBOSE); local
912 LOG_JV(sev, this) << "Received STUN ping"
1208 rtc::LoggingSeverity sev = !writable() ? rtc::LS_INFO : rtc::LS_VERBOSE; local
1214 if (LOG_CHECK_LEVEL_V(sev)) {
1219 LOG_JV(sev, this) << "Received STUN ping response"
1263 rtc::LoggingSeverity sev = writable() ? rtc::LS_INFO : rtc::LS_VERBOSE; local
1264 LOG_JV(sev, this) << "Timing-out STUN ping "
1271 rtc::LoggingSeverity sev local
[all...]
/external/strace/tests/
H A Dtimer_create.c49 struct_sigevent sev = { local
55 syscall(__NR_timer_create, CLOCK_REALTIME, &sev, NULL);
59 sev.sigev_value.sival_int,
60 sev.sigev_value.sival_ptr,
61 sev.sigev_signo, sev.sigev_notify,
64 sev.sigev_notify = SIGEV_NONE;
65 if (syscall(__NR_timer_create, CLOCK_REALTIME, &sev, &tid[0]))
70 sev.sigev_value.sival_int,
71 sev
[all...]
H A Dtimer_xettime.c53 struct sigevent sev = { .sigev_notify = SIGEV_NONE }; local
55 if (syscall(__NR_timer_create, CLOCK_MONOTONIC, &sev, &tid))
/external/strace/tests-m32/
H A Dtimer_create.c49 struct_sigevent sev = { local
55 syscall(__NR_timer_create, CLOCK_REALTIME, &sev, NULL);
59 sev.sigev_value.sival_int,
60 sev.sigev_value.sival_ptr,
61 sev.sigev_signo, sev.sigev_notify,
64 sev.sigev_notify = SIGEV_NONE;
65 if (syscall(__NR_timer_create, CLOCK_REALTIME, &sev, &tid[0]))
70 sev.sigev_value.sival_int,
71 sev
[all...]
H A Dtimer_xettime.c53 struct sigevent sev = { .sigev_notify = SIGEV_NONE }; local
55 if (syscall(__NR_timer_create, CLOCK_MONOTONIC, &sev, &tid))
/external/strace/tests-mx32/
H A Dtimer_create.c49 struct_sigevent sev = { local
55 syscall(__NR_timer_create, CLOCK_REALTIME, &sev, NULL);
59 sev.sigev_value.sival_int,
60 sev.sigev_value.sival_ptr,
61 sev.sigev_signo, sev.sigev_notify,
64 sev.sigev_notify = SIGEV_NONE;
65 if (syscall(__NR_timer_create, CLOCK_REALTIME, &sev, &tid[0]))
70 sev.sigev_value.sival_int,
71 sev
[all...]
H A Dtimer_xettime.c53 struct sigevent sev = { .sigev_notify = SIGEV_NONE }; local
55 if (syscall(__NR_timer_create, CLOCK_MONOTONIC, &sev, &tid))
/external/strace/
H A Dprint_sigevent.c41 struct_sigevent sev; local
43 if (umove_or_printaddr(tcp, addr, &sev))
47 if (sev.sigev_value.sival_ptr) {
49 sev.sigev_value.sival_int);
50 printaddr(sev.sigev_value.sival_ptr);
55 switch (sev.sigev_notify) {
59 tprints(signame(sev.sigev_signo));
62 tprintf("%u", sev.sigev_signo);
66 printxval(sigev_value, sev.sigev_notify, "SIGEV_???");
68 switch (sev
[all...]
/external/webrtc/webrtc/system_wrappers/include/
H A Dlogging.h32 // LOG(sev) logs the given stream at severity "sev", which must be a
35 // LOG_V(sev) Like LOG(), but sev is a run-time variable of the LoggingSeverity
37 // LOG_F(sev) Like LOG(), but includes the name of the current function.
64 LogMessage(const char* file, int line, LoggingSeverity sev);
67 static bool Loggable(LoggingSeverity sev);
100 #define RESTRICT_LOGGING_PRECONDITION(sev) \
101 sev < webrtc::LS_INFO ? (void) 0 :
103 #define RESTRICT_LOGGING_PRECONDITION(sev)
[all...]
/external/webrtc/webrtc/base/
H A Dlogging.h21 // LOG(sev) logs the given stream at severity "sev", which must be a
24 // LOG_V(sev) Like LOG(), but sev is a run-time variable of the LoggingSeverity
26 // LOG_F(sev) Like LOG(), but includes the name of the current function.
27 // LOG_T(sev) Like LOG(), but includes the this pointer.
28 // LOG_T_F(sev) Like LOG_F(), but includes the this pointer.
29 // LOG_GLE(M)(sev [, mod]) attempt to add a string description of the
32 // LOG_ERRNO(sev) attempts to add a string description of an errno-derived
35 // LOG_ERR(sev) i
146 Loggable(LoggingSeverity sev) argument
301 LogCheckLevel(LoggingSeverity sev) argument
[all...]
H A Dprofiler.h57 // Reports current timings to the log at severity |sev|.
58 #define PROFILE_DUMP_ALL(sev) \
59 rtc::Profiler::Instance()->ReportAllToLog(__FILE__, __LINE__, sev)
61 // to the log at severity |sev|. Using a unique event name as |prefix| will
63 #define PROFILE_DUMP(sev, prefix) \
64 rtc::Profiler::Instance()->ReportToLog(__FILE__, __LINE__, sev, prefix)
69 // TODO(ryanpetrie): Consider adding PROFILE_DUMP_EVERY(sev, iterations)
79 #define PROFILE_DUMP_ALL(sev) (void)0
80 #define PROFILE_DUMP(sev, prefix) (void)0
H A Dlogging_unittest.cc40 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));
H A Dlogging.cc120 LoggingSeverity sev,
124 : severity_(sev), tag_(kLibjingle) {
188 LoggingSeverity sev,
190 : LogMessage(file, line, sev, ERRCTX_NONE, 0 /* err */, NULL /* module */) {
243 LoggingSeverity sev = LS_NONE; local
246 sev = std::min(sev, kv.second);
249 return sev;
118 LogMessage(const char* file, int line, LoggingSeverity sev, LogErrorContext err_ctx, int err, const char* module) argument
186 LogMessage(const char* file, int line, LoggingSeverity sev, const std::string& tag) argument
H A Dautodetectproxy.cc213 LoggingSeverity sev = (proxy_.type == PROXY_UNKNOWN) ? LS_ERROR : LS_INFO; local
214 LOG_V(sev) << "AutoDetectProxy detected "
/external/clang/test/CodeGen/
H A Dbuiltins-arm-microsoft.c28 void sev() { function
H A Dbuiltins-arm.c47 void sev() { function
/external/webrtc/webrtc/system_wrappers/source/
H A Dlogging.cc23 TraceLevel WebRtcSeverity(LoggingSeverity sev) { argument
24 switch (sev) {
47 LogMessage::LogMessage(const char* file, int line, LoggingSeverity sev) argument
48 : severity_(sev) {
52 bool LogMessage::Loggable(LoggingSeverity sev) { argument
54 return WebRtcSeverity(sev) & Trace::level_filter() ? true : false;
/external/mesa3d/src/mesa/main/
H A Derrors.h92 #define _mesa_perf_debug(ctx, sev, ...) do { \
98 sev, \
/external/mesa3d/src/gallium/state_trackers/clover/api/
H A Devent.cpp42 auto &sev = obj<soft_event>(d_ev); local
47 if (sev.status() <= 0)
51 sev.abort(status);
53 sev.trigger();
75 auto sev = create<soft_event>(evs.front().context(), evs, true); local
78 sev().wait();
/external/llvm/test/MC/ARM/
H A Darm11-hint-instr.s24 sev
41 @ CHECK-ERROR-V6: sev
57 @ CHECK-ARM: sev @ encoding: [0x04,0xf0,0x20,0xe3]
67 @ CHECK-THUMB: sev @ encoding: [0x40,0xbf]
79 @ CHECK-V6M: sev @ encoding: [0x40,0xbf]
H A Dthumb-hints.s13 sev
18 @ CHECK: sev @ encoding: [0x40,0xbf]
46 @ CHECK-ERROR-NEXT: sev
H A Dthumb-diagnostics.s240 sev
246 @ CHECK-ERRORS: sev
/external/webrtc/talk/media/webrtc/
H A Dwebrtcvoiceengine.cc944 rtc::LoggingSeverity sev = rtc::LS_VERBOSE; local
946 sev = rtc::LS_ERROR;
948 sev = rtc::LS_WARNING;
950 sev = rtc::LS_INFO;
952 sev = rtc::LS_INFO;
958 LOG_V(sev) << msg;
961 LOG_V(sev) << "webrtc: " << msg;
/external/mesa3d/include/D3D9/
H A Dd3d9types.h42 #define MAKE_HRESULT(sev,fac,code) \
44 ((HRESULT)(sev) << 31) | \

Completed in 490 milliseconds

12