Home
last modified time | relevance | path

Searched refs:EventSeverity (Results 1 – 10 of 10) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/
H A Dlogging.hpp20 …virtual bool onRecord(EventSeverity severity, Event event, int64_t code, const std::string &msg) =…
24 bool onRecord(EventSeverity, Event, int64_t, const std::string&) override { in onRecord() argument
41 Record(EventSeverity::Debug, event, ::std::forward<Args>(args)...); in Debug()
46 Record(EventSeverity::Info, event, ::std::forward<Args>(args)...); in Info()
51 Record(EventSeverity::Warning, event, ::std::forward<Args>(args)...); in Warning()
56 Record(EventSeverity::Error, event, ::std::forward<Args>(args)...); in Error()
60 static void Record(EventSeverity severity, Event event, Args&& ...args) { in Record()
69 static void record(EventSeverity severity, Event event, const std::string &msg);
70 static void record(EventSeverity severity, Event event, const char* format = "", ...);
71 …static void record(EventSeverity severity, Event event, int64_t code, const char* format = "", ...…
[all …]
H A Devent.hpp7 enum class EventSeverity : uint8_t { enum
35 const EventSeverity severity;
43 constexpr EventSeverity disabledEventSeverities[] = {
45 EventSeverity(-1) // Avoid zero size array
47 EventSeverity::Debug
56 { EventSeverity::Debug, Event::Shader }
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Devent.cpp6 MBGL_DEFINE_ENUM(EventSeverity, {
7 { EventSeverity::Debug, "DEBUG" },
8 { EventSeverity::Info, "INFO" },
9 { EventSeverity::Warning, "WARNING" },
10 { EventSeverity::Error, "ERROR" },
11 { EventSeverity(-1), "UNKNOWN" },
H A Dstopwatch.hpp30 stopwatch(EventSeverity severity, Event event = Event::General);
32 stopwatch(std::string name, EventSeverity severity, Event event = Event::General);
38 EventSeverity severity = EventSeverity::Debug;
45 stopwatch(EventSeverity severity, Event event = Event::General);
47 stopwatch(const std::string &name, EventSeverity severity, Event event = Event::General);
H A Dlogging.cpp27 void Log::record(EventSeverity severity, Event event, const std::string &msg) { in record()
31 void Log::record(EventSeverity severity, Event event, const char* format, ...) { in record()
41 void Log::record(EventSeverity severity, Event event, int64_t code, const char* format, ...) { in record()
51 void Log::record(EventSeverity severity, Event event, int64_t code, const std::string &msg) { in record()
52 if (currentObserver && severity != EventSeverity::Debug && in record()
H A Dstopwatch.cpp16 stopwatch::stopwatch(EventSeverity severity_, Event event_) in stopwatch()
22 stopwatch::stopwatch(std::string name_, EventSeverity severity_, Event event_) in stopwatch()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/gl/
H A Ddebugging_extension.cpp41 mbgl::EventSeverity evtSeverity; in DebugCallback()
43 …EVERITY_HIGH: strSeverity = "DEBUG_SEVERITY_HIGH"; evtSeverity = mbgl::EventSeverity::Error; break; in DebugCallback()
44 …TY_MEDIUM: strSeverity = "DEBUG_SEVERITY_MEDIUM"; evtSeverity = mbgl::EventSeverity::Warning; brea… in DebugCallback()
45 …G_SEVERITY_LOW: strSeverity = "DEBUG_SEVERITY_LOW"; evtSeverity = mbgl::EventSeverity::Info; break; in DebugCallback()
46 …TION: strSeverity = "DEBUG_SEVERITY_NOTIFICATION"; evtSeverity = mbgl::EventSeverity::Debug; break; in DebugCallback()
47 default: strSource = "(unknown)"; evtSeverity = mbgl::EventSeverity::Debug; break; in DebugCallback()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dqt_logging.cpp8 void Log::platformRecord(EventSeverity severity, const std::string &msg) { in platformRecord()
9 …qWarning() << "[" << Enum<EventSeverity>::toString(severity) << "] " << QString::fromStdString(msg… in platformRecord()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/
H A Dlogging_stderr.cpp8 void Log::platformRecord(EventSeverity severity, const std::string &msg) { in platformRecord()
9 std::cerr << "[" << Enum<EventSeverity>::toString(severity) << "] " << msg << std::endl; in platformRecord()
H A Dsqlite3.cpp69 mbgl::Log::Record(mbgl::EventSeverity::Info, mbgl::Event::Database, err, "%s", msg); in errorLogCallback()