/arkcompiler/ets_runtime/ecmascript/ |
D | log.h | 121 stream_ << str; in HiLog() 128 OHOS::HiviewDFX::HiLog::Debug(LABEL, "%{public}s", stream_.str().c_str()); in ~HiLog() 130 OHOS::HiviewDFX::HiLog::Info(LABEL, "%{public}s", stream_.str().c_str()); in ~HiLog() 132 OHOS::HiviewDFX::HiLog::Warn(LABEL, "%{public}s", stream_.str().c_str()); in ~HiLog() 134 OHOS::HiviewDFX::HiLog::Error(LABEL, "%{public}s", stream_.str().c_str()); in ~HiLog() 136 OHOS::HiviewDFX::HiLog::Fatal(LABEL, "%{public}s", stream_.str().c_str()); in ~HiLog() 143 stream_ << input; 144 return stream_; 148 std::ostringstream stream_; 157 stream_ << str; in AndroidLog() [all …]
|
D | log.cpp | 249 __android_log_write(ANDROID_LOG_VERBOSE, tag, stream_.str().c_str()); in ~AndroidLog() 255 __android_log_write(ANDROID_LOG_DEBUG, tag, stream_.str().c_str()); in ~AndroidLog() 261 __android_log_write(ANDROID_LOG_INFO, tag, stream_.str().c_str()); in ~AndroidLog() 267 __android_log_write(ANDROID_LOG_WARN, tag, stream_.str().c_str()); in ~AndroidLog() 273 __android_log_write(ANDROID_LOG_ERROR, tag, stream_.str().c_str()); in ~AndroidLog() 279 __android_log_write(ANDROID_LOG_FATAL, tag, stream_.str().c_str()); in ~AndroidLog()
|
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/ |
D | heap_snapshot_json_serializer.h | 39 : stream_(stream), chunkSize_(stream->GetSize()), chunk_(chunkSize_), current_(0) in StreamWriter() 74 stream_->EndOfStream(); in End() 80 stream_->WriteChunk(chunk_.data(), current_); in WriteChunk() 84 Stream *stream_ {nullptr};
|
D | heap_tracker.cpp | 28 if (stream_ != nullptr) { in Run() 29 snapshot_->PushHeapStat(stream_); in Run()
|
D | heap_tracker.h | 34 : timeInterval_(timeInterval), snapshot_(snapshot), stream_(stream) in HeapTrackerSample() 67 Stream *stream_ {nullptr};
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | logger.cpp | 137 stream_ << ": " << os::Error(errno).ToString(); in ~Message() 140 Logger::Log(level_, component_, stream_.str()); in ~Message() 332 stream_ << prefix << str << std::endl << std::flush; in LogLineInternal() 338 stream_ << prefix << str << '\n'; in LogLineInternal() 345 stream_ << prefix << str; in LogLineInternal() 348 OHOS::HiviewDFX::HiLog::Debug(LABEL, "%{public}s", stream_.str().c_str()); in LogLineInternal() 351 OHOS::HiviewDFX::HiLog::Info(LABEL, "%{public}s", stream_.str().c_str()); in LogLineInternal() 354 OHOS::HiviewDFX::HiLog::Error(LABEL, "%{public}s", stream_.str().c_str()); in LogLineInternal() 357 OHOS::HiviewDFX::HiLog::Fatal(LABEL, "%{public}s", stream_.str().c_str()); in LogLineInternal() 360 OHOS::HiviewDFX::HiLog::Warn(LABEL, "%{public}s", stream_.str().c_str()); in LogLineInternal() [all …]
|
D | logger.h | 121 return stream_; in GetStream() 128 std::ostringstream stream_; variable 339 : Logger(level, component_mask), stream_(std::forward<std::ofstream>(stream)) in FileLogger() 352 std::ofstream stream_; 361 …: Logger(level, component_mask, Logger::Level::WARNING), stream_(std::forward<std::ofstream>(strea… in FastFileLogger() 374 std::ofstream stream_; 393 std::ostringstream stream_;
|
/arkcompiler/toolchain/tooling/agent/ |
D | heapprofiler_impl.cpp | 326 …bool result = panda::DFXJSNApi::StartHeapTracking(vm_, INTERVAL, true, &stream_, traceAllocation, … in StartTrackingHeapObjects() 352 panda::DFXJSNApi::UpdateHeapTracking(heapProfilerImpl->vm_, &(heapProfilerImpl->stream_)); in HeapTrackingCallback() 361 result = panda::DFXJSNApi::StopHeapTracking(vm_, &stream_, &progress, false); in StopTrackingHeapObjects() 363 result = panda::DFXJSNApi::StopHeapTracking(vm_, &stream_, nullptr, false); in StopTrackingHeapObjects() 377 … panda::DFXJSNApi::DumpHeapSnapshot(vm_, 0, &stream_, &progress, true, false, captureNumericValue); in TakeHeapSnapshot() 379 … panda::DFXJSNApi::DumpHeapSnapshot(vm_, 0, &stream_, nullptr, true, false, captureNumericValue); in TakeHeapSnapshot()
|
D | heapprofiler_impl.h | 39 : vm_(vm), frontend_(channel), stream_(&frontend_) {} in HeapProfilerImpl() 173 HeapProfilerStream stream_; variable
|