Home
last modified time | relevance | path

Searched refs:WTFLogChannel (Results 1 – 20 of 20) sorted by relevance

/external/webkit/Source/WebCore/platform/
DLogging.h38 extern WTFLogChannel LogNotYetImplemented;
39 extern WTFLogChannel LogFrames;
40 extern WTFLogChannel LogLoading;
41 extern WTFLogChannel LogPopupBlocking;
42 extern WTFLogChannel LogEvents;
43 extern WTFLogChannel LogEditing;
44 extern WTFLogChannel LogLiveConnect;
45 extern WTFLogChannel LogIconDatabase;
46 extern WTFLogChannel LogSQLDatabase;
47 extern WTFLogChannel LogSpellingAndGrammar;
[all …]
DLogging.cpp32 WTFLogChannel LogNotYetImplemented = { 0x00000001, "WebCoreLogLevel", WTFLogChannelOff };
34 WTFLogChannel LogFrames = { 0x00000010, "WebCoreLogLevel", WTFLogChannelOff };
35 WTFLogChannel LogLoading = { 0x00000020, "WebCoreLogLevel", WTFLogChannelOff };
36 WTFLogChannel LogPopupBlocking = { 0x00000040, "WebCoreLogLevel", WTFLogChannelOff };
37 WTFLogChannel LogEvents = { 0x00000080, "WebCoreLogLevel", WTFLogChannelOff };
39 WTFLogChannel LogEditing = { 0x00000100, "WebCoreLogLevel", WTFLogChannelOff };
40 WTFLogChannel LogLiveConnect = { 0x00000200, "WebCoreLogLevel", WTFLogChannelOff };
41 WTFLogChannel LogIconDatabase = { 0x00000400, "WebCoreLogLevel", WTFLogChannelOff };
42 WTFLogChannel LogSQLDatabase = { 0x00000800, "WebCoreLogLevel", WTFLogChannelOff };
44 WTFLogChannel LogSpellingAndGrammar ={ 0x00001000, "WebCoreLogLevel", WTFLogChannelOff };
[all …]
/external/webkit/Source/WebKit/win/
DWebKitLogging.h39 extern WTFLogChannel WebKitLogTextInput;
40 extern WTFLogChannel WebKitLogTiming;
41 extern WTFLogChannel WebKitLogLoading;
42 extern WTFLogChannel WebKitLogFontCache;
43 extern WTFLogChannel WebKitLogFontSubstitution;
44 extern WTFLogChannel WebKitLogFontSelection;
45 extern WTFLogChannel WebKitLogDownload;
46 extern WTFLogChannel WebKitLogDocumentLoad;
47 extern WTFLogChannel WebKitLogPlugins;
48 extern WTFLogChannel WebKitLogEvents;
[all …]
DWebKitLogging.cpp32 WTFLogChannel WebKitLogTextInput = { 0x00000010, "WebKitLogLevel", WTFLogChannelOff };
33 WTFLogChannel WebKitLogTiming = { 0x00000020, "WebKitLogLevel", WTFLogChannelOff };
34 WTFLogChannel WebKitLogLoading = { 0x00000040, "WebKitLogLevel", WTFLogChannelOff };
35 WTFLogChannel WebKitLogFontCache = { 0x00000100, "WebKitLogLevel", WTFLogChannelOff };
36 WTFLogChannel WebKitLogFontSubstitution = { 0x00000200, "WebKitLogLevel", WTFLogChannelOff };
37 WTFLogChannel WebKitLogDownload = { 0x00000800, "WebKitLogLevel", WTFLogChannelOff };
38 WTFLogChannel WebKitLogDocumentLoad = { 0x00001000, "WebKitLogLevel", WTFLogChannelOff };
39 WTFLogChannel WebKitLogPlugins = { 0x00002000, "WebKitLogLevel", WTFLogChannelOff };
40 WTFLogChannel WebKitLogEvents = { 0x00010000, "WebKitLogLevel", WTFLogChannelOff };
41 WTFLogChannel WebKitLogView = { 0x00020000, "WebKitLogLevel", WTFLogChannelOff };
[all …]
/external/webkit/Source/WebKit/mac/Misc/
DWebKitLogging.h39 extern WTFLogChannel WebKitLogTiming;
40 extern WTFLogChannel WebKitLogLoading;
41 extern WTFLogChannel WebKitLogFontCache;
42 extern WTFLogChannel WebKitLogFontSubstitution;
43 extern WTFLogChannel WebKitLogFontSelection;
44 extern WTFLogChannel WebKitLogDownload;
45 extern WTFLogChannel WebKitLogDocumentLoad;
46 extern WTFLogChannel WebKitLogPlugins;
47 extern WTFLogChannel WebKitLogEvents;
48 extern WTFLogChannel WebKitLogView;
[all …]
DWebKitLogging.m31 WTFLogChannel WebKitLogTextInput = { 0x00000010, "WebKitLogLevel", WTFLogChannelOff };
32 WTFLogChannel WebKitLogTiming = { 0x00000020, "WebKitLogLevel", WTFLogChannelOff };
33 WTFLogChannel WebKitLogLoading = { 0x00000040, "WebKitLogLevel", WTFLogChannelOff };
34 WTFLogChannel WebKitLogFontCache = { 0x00000100, "WebKitLogLevel", WTFLogChannelOff };
35 WTFLogChannel WebKitLogFontSubstitution = { 0x00000200, "WebKitLogLevel", WTFLogChannelOff };
36 WTFLogChannel WebKitLogDownload = { 0x00000800, "WebKitLogLevel", WTFLogChannelOff };
37 WTFLogChannel WebKitLogDocumentLoad = { 0x00001000, "WebKitLogLevel", WTFLogChannelOff };
38 WTFLogChannel WebKitLogPlugins = { 0x00002000, "WebKitLogLevel", WTFLogChannelOff };
39 WTFLogChannel WebKitLogEvents = { 0x00010000, "WebKitLogLevel", WTFLogChannelOff };
40 WTFLogChannel WebKitLogView = { 0x00020000, "WebKitLogLevel", WTFLogChannelOff };
[all …]
/external/webkit/Source/WebKit2/Platform/
DLogging.h39 extern WTFLogChannel LogContextMenu;
40 extern WTFLogChannel LogIconDatabase;
41 extern WTFLogChannel LogSessionState;
42 extern WTFLogChannel LogTextInput;
43 extern WTFLogChannel LogView;
45 void initializeLogChannel(WTFLogChannel*);
DLogging.cpp33 WTFLogChannel LogSessionState = { 0x00000001, "WebKit2LogLevel", WTFLogChannelOff };
34 WTFLogChannel LogContextMenu = { 0x00000002, "WebKit2LogLevel", WTFLogChannelOff };
35 WTFLogChannel LogTextInput = { 0x00000004, "WebKit2LogLevel", WTFLogChannelOff };
36 WTFLogChannel LogView = { 0x00000008, "WebKit2LogLevel", WTFLogChannelOff };
37 WTFLogChannel LogIconDatabase = { 0x00000010, "WebKit2LogLevel", WTFLogChannelOff };
40 void initializeLogChannel(WTFLogChannel* channel) in initializeLogChannel()
/external/webkit/Source/JavaScriptCore/wtf/
DAssertions.h147 } WTFLogChannel; typedef
155 WTF_EXPORT_PRIVATE void WTFLog(WTFLogChannel*, const char* format, ...) WTF_ATTRIBUTE_PRINTF(2, 3);
156 … void WTFLogVerbose(const char* file, int line, const char* function, WTFLogChannel*, const char* …
DRefCountedLeakCounter.cpp42 static WTFLogChannel LogRefCountedLeaks = { 0x00000000, "", WTFLogChannelOn };
DAssertions.cpp272 void WTFLog(WTFLogChannel* channel, const char* format, ...) in WTFLog()
285 void WTFLogVerbose(const char* file, int line, const char* function, WTFLogChannel* channel, const … in WTFLogVerbose()
/external/webkit/Source/WebCore/platform/gtk/
DLoggingGtk.cpp53 if (WTFLogChannel* channel = getChannelFromName(logv[i])) in InitializeLoggingChannelsIfNecessary()
/external/webkit/Source/WebCore/platform/efl/
DLoggingEfl.cpp52 if (WTFLogChannel* channel = getChannelFromName(logv[i])) in InitializeLoggingChannelsIfNecessary()
/external/webkit/Source/WebCore/platform/qt/
DLoggingQt.cpp46 if (WTFLogChannel* channel = getChannelFromName(channels.at(i))) in InitializeLoggingChannelsIfNecessary()
/external/webkit/Source/WebCore/platform/wx/
DLoggingWx.cpp57 WTFLogChannel* channel = getChannelFromName(logs[i]); in InitializeLoggingChannelsIfNecessary()
/external/webkit/Source/WebKit/chromium/src/
DWebKit.cpp101 WTFLogChannel* channel = WebCore::getChannelFromName(name); in enableLogChannel()
/external/webkit/Source/WebCore/platform/win/
DLoggingWin.cpp34 static inline void initializeWithUserDefault(WTFLogChannel& channel) in initializeWithUserDefault()
/external/webkit/Source/WebKit2/Platform/mac/
DLogging.mac.mm33 void initializeLogChannel(WTFLogChannel* channel)
/external/webkit/Source/WebCore/platform/mac/
DLoggingMac.mm32 static inline void initializeWithUserDefault(WTFLogChannel& channel)
/external/webkit/Source/WebCore/platform/graphics/gstreamer/
DMediaPlayerPrivateGStreamer.cpp1703 WTFLogChannel* channel = getChannelFromName("Media"); in createGSTPlayBin()