Home
last modified time | relevance | path

Searched refs:Logging (Results 1 – 25 of 225) sorted by relevance

123456789

/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/s3/
Daws_logging.cc30 static const std::map<const std::string, const Aws::Utils::Logging::LogLevel>
32 {"off", Aws::Utils::Logging::LogLevel::Off},
33 {"fatal", Aws::Utils::Logging::LogLevel::Fatal},
34 {"error", Aws::Utils::Logging::LogLevel::Error},
35 {"warn", Aws::Utils::Logging::LogLevel::Warn},
36 {"info", Aws::Utils::Logging::LogLevel::Info},
37 {"debug", Aws::Utils::Logging::LogLevel::Debug},
38 {"trace", Aws::Utils::Logging::LogLevel::Trace}};
40 static const std::map<const int, const Aws::Utils::Logging::LogLevel>
41 log_levels_tf_to_aws = {{0, Aws::Utils::Logging::LogLevel::Info},
[all …]
Daws_logging.h26 class AWSLogSystem : public Aws::Utils::Logging::LogSystemInterface {
31 explicit AWSLogSystem(Aws::Utils::Logging::LogLevel log_level);
35 Aws::Utils::Logging::LogLevel GetLogLevel(void) const override { in GetLogLevel()
40 void SetLogLevel(Aws::Utils::Logging::LogLevel log_level) { in SetLogLevel()
46 void Log(Aws::Utils::Logging::LogLevel log_level, const char* tag,
50 void LogStream(Aws::Utils::Logging::LogLevel log_level, const char* tag,
57 void LogMessage(Aws::Utils::Logging::LogLevel log_level,
59 std::atomic<Aws::Utils::Logging::LogLevel> log_level_;
/external/tensorflow/tensorflow/core/platform/s3/
Daws_logging.cc29 static const std::map<std::string, Aws::Utils::Logging::LogLevel>
31 {"off", Aws::Utils::Logging::LogLevel::Off},
32 {"fatal", Aws::Utils::Logging::LogLevel::Fatal},
33 {"error", Aws::Utils::Logging::LogLevel::Error},
34 {"warn", Aws::Utils::Logging::LogLevel::Warn},
35 {"info", Aws::Utils::Logging::LogLevel::Info},
36 {"debug", Aws::Utils::Logging::LogLevel::Debug},
37 {"trace", Aws::Utils::Logging::LogLevel::Trace}};
39 static const std::map<int, Aws::Utils::Logging::LogLevel> log_levels_tf_to_aws =
40 {{INFO, Aws::Utils::Logging::LogLevel::Info},
[all …]
Daws_logging.h28 class AWSLogSystem : public Aws::Utils::Logging::LogSystemInterface {
33 explicit AWSLogSystem(Aws::Utils::Logging::LogLevel log_level);
37 Aws::Utils::Logging::LogLevel GetLogLevel(void) const override { in GetLogLevel()
42 void SetLogLevel(Aws::Utils::Logging::LogLevel log_level) { in SetLogLevel()
50 void Log(Aws::Utils::Logging::LogLevel log_level, const char* tag,
54 void LogStream(Aws::Utils::Logging::LogLevel log_level, const char* tag,
61 void LogMessage(Aws::Utils::Logging::LogLevel log_level,
63 std::atomic<Aws::Utils::Logging::LogLevel> log_level_;
/external/webrtc/modules/remote_bitrate_estimator/test/
Dbwe_test_logging.cc35 Logging::ThreadState::ThreadState() = default;
36 Logging::ThreadState::~ThreadState() = default;
38 Logging::Context::Context(uint32_t name, int64_t timestamp_ms, bool enabled) { in Context()
39 Logging::GetInstance()->PushState(ToString(name), timestamp_ms, enabled); in Context()
42 Logging::Context::Context(const std::string& name, in Context()
45 Logging::GetInstance()->PushState(name, timestamp_ms, enabled); in Context()
48 Logging::Context::Context(const char* name, in Context()
51 Logging::GetInstance()->PushState(name, timestamp_ms, enabled); in Context()
54 Logging::Context::~Context() { in ~Context()
55 Logging::GetInstance()->PopState(); in ~Context()
[all …]
Dbwe_test_logging.h136 webrtc::testing::bwe::Logging::GetInstance()->SetGlobalContext(name); \
141 webrtc::testing::bwe::Logging::GetInstance()->SetGlobalEnable(enabled); \
146 webrtc::testing::bwe::Logging::Context __BWE_TEST_LOGGING_CONTEXT_NAME( \
161 webrtc::testing::bwe::Logging::GetInstance()->Log(format, _1); \
166 webrtc::testing::bwe::Logging::GetInstance()->Log(format, _1, _2); \
171 webrtc::testing::bwe::Logging::GetInstance()->Log(format, _1, _2, _3); \
176 webrtc::testing::bwe::Logging::GetInstance()->Log(format, _1, _2, _3, _4); \
181 webrtc::testing::bwe::Logging::GetInstance()->Log(format, _1, _2, _3, _4, \
189 webrtc::testing::bwe::Logging::GetInstance()->Plot(figure, name, value); \
196 webrtc::testing::bwe::Logging::GetInstance()->Plot(figure, name, value, \
[all …]
/external/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
DWebRtcAudioTrack.java25 import org.webrtc.Logging;
58 Logging.w(TAG, "Default usage attribute is changed from: " in setAudioTrackUsageAttribute()
111 Logging.d(TAG, "Set error callback (deprecated"); in setErrorCallback()
116 Logging.d(TAG, "Set extended error callback"); in setErrorCallback()
136 Logging.d(TAG, "AudioTrackThread" + WebRtcAudioUtils.getThreadInfo()); in run()
159 Logging.e(TAG, "AudioTrack.write played invalid number of bytes: " + bytesWritten); in run()
181 Logging.d(TAG, "Calling AudioTrack.stop..."); in run()
184 Logging.d(TAG, "AudioTrack.stop is done."); in run()
186 Logging.e(TAG, "AudioTrack.stop failed: " + e.getMessage()); in run()
202 Logging.d(TAG, "stopThread"); in stopThread()
[all …]
DWebRtcAudioEffects.java21 import org.webrtc.Logging;
80 Logging.w(TAG, Build.MODEL + " is blacklisted for HW AEC usage!"); in isAcousticEchoCancelerBlacklisted()
90 Logging.w(TAG, Build.MODEL + " is blacklisted for HW NS usage!"); in isNoiseSuppressorBlacklisted()
142 Logging.d(TAG, "canUseAcousticEchoCanceler: " + canUseAcousticEchoCanceler); in canUseAcousticEchoCanceler()
152 Logging.d(TAG, "canUseNoiseSuppressor: " + canUseNoiseSuppressor); in canUseNoiseSuppressor()
161 Logging.d(TAG, "ctor" + WebRtcAudioUtils.getThreadInfo()); in WebRtcAudioEffects()
169 Logging.d(TAG, "setAEC(" + enable + ")"); in setAEC()
171 Logging.w(TAG, "Platform AEC is not supported"); in setAEC()
176 Logging.e(TAG, "Platform AEC state can't be modified while recording"); in setAEC()
188 Logging.d(TAG, "setNS(" + enable + ")"); in setNS()
[all …]
DWebRtcAudioRecord.java23 import org.webrtc.Logging;
80 Logging.d(TAG, "Set error callback"); in setErrorCallback()
151 Logging.d(TAG, "AudioRecordThread" + WebRtcAudioUtils.getThreadInfo()); in run()
177 Logging.e(TAG, errorMessage); in run()
187 Logging.d(TAG, "bytesRead[" + durationInMs + "] " + bytesRead); in run()
196 Logging.e(TAG, "AudioRecord.stop failed: " + e.getMessage()); in run()
203 Logging.d(TAG, "stopThread"); in stopThread()
209 Logging.d(TAG, "ctor" + WebRtcAudioUtils.getThreadInfo()); in WebRtcAudioRecord()
218 Logging.d(TAG, "enableBuiltInAEC(" + enable + ')'); in enableBuiltInAEC()
220 Logging.e(TAG, "Built-in AEC is not supported on this platform"); in enableBuiltInAEC()
[all …]
DWebRtcAudioManager.java24 import org.webrtc.Logging;
67 Logging.w(TAG, "Overriding default output behavior: setStereoOutput(" + enable + ')'); in setStereoOutput()
74 Logging.w(TAG, "Overriding default input behavior: setStereoInput(" + enable + ')'); in setStereoInput()
131 Logging.d(TAG, "STREAM_RING stream volume: " in run()
135 Logging.d(TAG, "VOICE_CALL stream volume: " in run()
173 Logging.d(TAG, "ctor" + WebRtcAudioUtils.getThreadInfo()); in WebRtcAudioManager()
189 Logging.d(TAG, "init" + WebRtcAudioUtils.getThreadInfo()); in init()
193 Logging.d(TAG, "audio mode is: " in init()
201 Logging.d(TAG, "dispose" + WebRtcAudioUtils.getThreadInfo()); in dispose()
217 Logging.d(TAG, Build.MODEL + " is blacklisted for OpenSL ES usage!"); in isDeviceBlacklistedForOpenSLESUsage()
[all …]
DWebRtcAudioUtils.java27 import org.webrtc.Logging;
86 Logging.w(TAG, "setWebRtcBasedAutomaticGainControl() is deprecated"); in setWebRtcBasedAutomaticGainControl()
93 Logging.w(TAG, "Overriding default behavior; now using WebRTC AEC!"); in useWebRtcBasedAcousticEchoCanceler()
102 Logging.w(TAG, "Overriding default behavior; now using WebRTC NS!"); in useWebRtcBasedNoiseSuppressor()
182 Logging.d(tag, "Android SDK: " + Build.VERSION.SDK_INT + ", " in logDeviceInfo()
208 Logging.d(tag, "Audio State: " in logAudioStateBasic()
234 Logging.d(tag, "Audio State: "); in logAudioStateVolume()
237 Logging.d(tag, " fixed volume=" + fixedVolume); in logAudioStateVolume()
245 Logging.d(tag, info.toString()); in logAudioStateVolume()
266 Logging.d(tag, "Audio Devices: "); in logAudioDeviceInfo()
[all …]
/external/libchrome/ipc/
Dipc_logging.cc44 LogFunctionMap* Logging::log_function_map_;
46 Logging::Logging() in Logging() function in IPC::Logging
79 Logging::~Logging() { in ~Logging()
82 Logging* Logging::GetInstance() { in GetInstance()
83 return base::Singleton<Logging>::get(); in GetInstance()
86 void Logging::SetConsumer(Consumer* consumer) { in SetConsumer()
90 void Logging::Enable() { in Enable()
94 void Logging::Disable() { in Disable()
98 void Logging::OnSendLogs() { in OnSendLogs()
110 void Logging::SetIPCSender(IPC::Sender* sender) { in SetIPCSender()
[all …]
/external/webrtc/sdk/android/src/java/org/webrtc/audio/
DWebRtcAudioTrack.java25 import org.webrtc.Logging;
102 Logging.d(TAG, "AudioTrackThread" + WebRtcAudioUtils.getThreadInfo()); in run()
128 Logging.e(TAG, "AudioTrack.write played invalid number of bytes: " + bytesWritten); in run()
158 Logging.d(TAG, "stopThread"); in stopThread()
177 Logging.d(TAG, "ctor" + WebRtcAudioUtils.getThreadInfo()); in WebRtcAudioTrack()
188 Logging.d(TAG, in initPlayout()
193 Logging.d(TAG, "byteBuffer.capacity: " + byteBuffer.capacity()); in initPlayout()
207 Logging.d(TAG, "minBufferSizeInBytes: " + minBufferSizeInBytes); in initPlayout()
264 Logging.d(TAG, "startPlayout"); in startPlayout()
296 Logging.d(TAG, "stopPlayout"); in stopPlayout()
[all …]
DWebRtcAudioEffects.java20 import org.webrtc.Logging;
70 Logging.d(TAG, "ctor" + WebRtcAudioUtils.getThreadInfo()); in WebRtcAudioEffects()
78 Logging.d(TAG, "setAEC(" + enable + ")"); in setAEC()
80 Logging.w(TAG, "Platform AEC is not supported"); in setAEC()
85 Logging.e(TAG, "Platform AEC state can't be modified while recording"); in setAEC()
97 Logging.d(TAG, "setNS(" + enable + ")"); in setNS()
99 Logging.w(TAG, "Platform NS is not supported"); in setNS()
104 Logging.e(TAG, "Platform NS state can't be modified while recording"); in setNS()
112 Logging.d(TAG, "enable(audioSession=" + audioSession + ")"); in enable()
122 Logging.d(TAG, in enable()
[all …]
DWebRtcAudioRecord.java36 import org.webrtc.Logging;
123 Logging.d(TAG, "AudioRecordThread" + WebRtcAudioUtils.getThreadInfo()); in run()
154 Logging.e(TAG, errorMessage); in run()
168 Logging.e(TAG, "AudioRecord.stop failed: " + e.getMessage()); in run()
175 Logging.d(TAG, "stopThread"); in stopThread()
208 Logging.d(TAG, "ctor" + WebRtcAudioUtils.getThreadInfo()); in WebRtcAudioRecord()
240 Logging.w(TAG, "Audio configuration has not yet been verified"); in isAudioSourceMatchingRecordingSession()
248 Logging.d(TAG, "enableBuiltInAEC(" + enable + ")"); in enableBuiltInAEC()
254 Logging.d(TAG, "enableBuiltInNS(" + enable + ")"); in enableBuiltInNS()
260 Logging.d(TAG, "initRecording(sampleRate=" + sampleRate + ", channels=" + channels + ")"); in initRecording()
[all …]
DVolumeLogger.java17 import org.webrtc.Logging;
39 Logging.d(TAG, "start" + WebRtcAudioUtils.getThreadInfo()); in start()
43 Logging.d(TAG, "audio mode is: " + WebRtcAudioUtils.modeToString(audioManager.getMode())); in start()
64 Logging.d(TAG, in run()
68 Logging.d(TAG, in run()
77 Logging.d(TAG, "stop" + WebRtcAudioUtils.getThreadInfo()); in stop()
/external/webrtc/sdk/android/src/java/org/webrtc/
DCameraCapturer.java43 Logging.d(TAG, "Create session done. Switch state: " + switchState);
77 Logging.w(TAG, "Opening camera failed, passing: " + error);
95 Logging.w(TAG, "Opening camera failed, retry: " + error);
109 Logging.w(TAG, "onCameraOpening while session was open.");
121 Logging.w(TAG, "onCameraError from another session: " + error);
134 Logging.w(TAG, "onCameraDisconnected from another session.");
147 Logging.d(TAG, "onCameraClosed from another session.");
159 Logging.w(TAG, "onFrameCaptured from another session.");
246 Logging.d(TAG, "startCapture: " + width + "x" + height + "@" + framerate); in startCapture()
253 Logging.w(TAG, "Session already open"); in startCapture()
[all …]
DCamera2Session.java119 Logging.d(TAG, "Camera opened."); in onOpened()
137 Logging.d(TAG, "Camera device closed."); in onClosed()
153 Logging.d(TAG, "Camera capture session configured."); in onConfigured()
187 Logging.d(TAG, "Texture frame captured but camera is no longer running."); in onConfigured()
210 Logging.d(TAG, "Camera device successfully started."); in onConfigured()
226 Logging.d(TAG, "Using optical stabilization."); in chooseStabilizationMode()
240 Logging.d(TAG, "Using video stabilization."); in chooseStabilizationMode()
244 Logging.d(TAG, "Stabilization not available."); in chooseStabilizationMode()
254 Logging.d(TAG, "Using continuous video auto-focus."); in chooseFocusMode()
258 Logging.d(TAG, "Auto-focus is not available."); in chooseFocusMode()
[all …]
DAndroidVideoDecoder.java136 Logging.d(TAG, in AndroidVideoDecoder()
163 Logging.d(TAG, in initDecodeInternal()
167 Logging.e(TAG, "initDecodeInternal called while the codec is already running"); in initDecodeInternal()
184 Logging.e(TAG, "Cannot create media decoder " + codecName); in initDecodeInternal()
195 Logging.e(TAG, "initDecode failed", e); in initDecodeInternal()
203 Logging.d(TAG, "initDecodeInternal done"); in initDecodeInternal()
211 Logging.d(TAG, "decode uninitalized, codec: " + (codec != null) + ", callback: " + callback); in decode()
216 Logging.e(TAG, "decode() - no input data"); in decode()
222 Logging.e(TAG, "decode() - input buffer empty"); in decode()
246 Logging.e(TAG, "decode() - key frame required first"); in decode()
[all …]
DHardwareVideoEncoder.java92 Logging.e(TAG, "Interrupted while waiting on busy count", e); in waitForZero()
217 Logging.d(TAG, in initEncode()
231 Logging.e(TAG, "Cannot create media encoder " + codecName); in initEncodeInternal()
256 Logging.w(TAG, "Unknown profile level id: " + profileLevelId); in initEncodeInternal()
259 Logging.d(TAG, "Format: " + format); in initEncodeInternal()
273 Logging.e(TAG, "initEncodeInternal failed", e); in initEncodeInternal()
297 Logging.e(TAG, "Media encoder release timeout"); in release()
301 Logging.e(TAG, "Media encoder release exception", shutdownException); in release()
353 Logging.e(TAG, "Dropped frame, encoder queue full"); in encode()
407 Logging.e(TAG, "encodeTexture failed", e); in encodeTextureBuffer()
[all …]
DNativeLibrary.java19 Logging.d(TAG, "Loading library: " + name); in load()
23 Logging.e(TAG, "Failed to load native library: " + name, e); in load()
40 Logging.d(TAG, "Native library has already been loaded."); in initialize()
43 Logging.d(TAG, "Loading native library: " + libraryName); in initialize()
/external/webrtc/sdk/android/api/org/webrtc/audio/
DJavaAudioDeviceModule.java19 import org.webrtc.Logging;
62 Logging.d(TAG, "Input/Output sample rate overridden to: " + sampleRate); in setSampleRate()
72 Logging.d(TAG, "Input sample rate overridden to: " + inputSampleRate); in setInputSampleRate()
81 Logging.d(TAG, "Output sample rate overridden to: " + outputSampleRate); in setOutputSampleRate()
152 Logging.e(TAG, "HW NS not supported"); in setUseHardwareNoiseSuppressor()
166 Logging.e(TAG, "HW AEC not supported"); in setUseHardwareAcousticEchoCanceler()
194 Logging.d(TAG, "createAudioDeviceModule"); in createAudioDeviceModule()
196 Logging.d(TAG, "HW NS will be used."); in createAudioDeviceModule()
199 Logging.d(TAG, "Overriding default behavior; now using WebRTC NS!"); in createAudioDeviceModule()
201 Logging.d(TAG, "HW NS will not be used."); in createAudioDeviceModule()
[all …]
/external/grpc-grpc/src/ruby/spec/
Dspec_helper.rb43 extend Logging.globally
45 Logging.logger.root.appenders = Logging.appenders.stdout
46 Logging.logger.root.level = :info
47 Logging.logger['GRPC'].level = :info
48 Logging.logger['GRPC::ActiveCall'].level = :info
49 Logging.logger['GRPC::BidiCall'].level = :info
/external/llvm-project/clang/tools/libclang/
DARCMigrate.cpp40 bool Logging = ::getenv("LIBCLANG_LOGGING"); in clang_getRemappings()
43 if (Logging) in clang_getRemappings()
49 if (Logging) { in clang_getRemappings()
63 if (Logging) { in clang_getRemappings()
83 bool Logging = ::getenv("LIBCLANG_LOGGING"); in clang_getRemappingsFromFileList()
88 if (Logging) in clang_getRemappingsFromFileList()
95 if (Logging) in clang_getRemappingsFromFileList()
108 if (Logging) { in clang_getRemappingsFromFileList()
/external/clang/tools/libclang/
DARCMigrate.cpp42 bool Logging = ::getenv("LIBCLANG_LOGGING"); in clang_getRemappings()
45 if (Logging) in clang_getRemappings()
51 if (Logging) { in clang_getRemappings()
65 if (Logging) { in clang_getRemappings()
85 bool Logging = ::getenv("LIBCLANG_LOGGING"); in clang_getRemappingsFromFileList()
90 if (Logging) in clang_getRemappingsFromFileList()
97 if (Logging) in clang_getRemappingsFromFileList()
110 if (Logging) { in clang_getRemappingsFromFileList()

123456789