Home
last modified time | relevance | path

Searched refs:profiler_ (Results 1 – 5 of 5) sorted by relevance

/hardware/google/camera/common/hal/utils/profiling/
Dtracked_profiler.cc37 profiler_->SetUseCase(name); in SetUseCase()
110 profiler_, EventTypeToString(incoming), id, [this, incoming]() { in AcceptNextState()
124 profiler_->Start(kFirstFrame, Profiler::kInvalidRequestId); in AcceptFirstFrameStart()
125 profiler_->Start(kHalTotal, Profiler::kInvalidRequestId); in AcceptFirstFrameStart()
135 profiler_->End(kFirstFrame, Profiler::kInvalidRequestId); in AcceptFirstFrameEnd()
136 profiler_->End(kHalTotal, Profiler::kInvalidRequestId); in AcceptFirstFrameEnd()
144 if (profiler_ != nullptr) { in DeleteProfilerLocked()
145 profiler_->End(kOverall, Profiler::kInvalidRequestId); in DeleteProfilerLocked()
146 profiler_ = nullptr; // Deletes the camera_latency_profiler, causing it in DeleteProfilerLocked()
164 if (profiler_ != nullptr) { in IdleStartLocked()
[all …]
Dtracked_profiler.h41 profiler_(profiler), in TrackedProfiler()
63 std::shared_ptr<Profiler> profiler_ = nullptr; variable
Daidl_profiler.cc350 : profiler_(profiler), in AidlScopedProfiler()
354 profiler_->Start(name_, id_); in AidlScopedProfiler()
355 profiler_->Start(kHalTotal, Profiler::kInvalidRequestId); in AidlScopedProfiler()
359 profiler_->End(kHalTotal, Profiler::kInvalidRequestId); in ~AidlScopedProfiler()
360 profiler_->End(name_, id_); in ~AidlScopedProfiler()
Daidl_profiler.h39 std::shared_ptr<google::camera_common::Profiler> profiler_;
/hardware/google/camera/common/profiler/
Dprofiler.h234 : profiler_(profiler), in ScopedProfiler()
237 profiler_->Start(target_, request_id_); in ScopedProfiler()
241 : profiler_(profiler), target_(std::move(target)) { in ScopedProfiler()
243 profiler_->Start(target_, request_id_); in ScopedProfiler()
248 profiler_ = Profiler::Create(option); in ScopedProfiler()
250 profiler_->Start(target_, request_id_); in ScopedProfiler()
254 profiler_->End(target_, request_id_); in ~ScopedProfiler()
258 std::shared_ptr<Profiler> profiler_;