Home
last modified time | relevance | path

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

/aosp12/system/logging/logd/
H A DLogReaderThread.cpp41 start_time_(start_time), in LogReaderThread()
87 start_time_.tv_sec = 0; in ThreadFunction()
88 start_time_.tv_nsec = 0; in ThreadFunction()
118 if ((!pid_ || pid_ == pid) && (start_time_ == log_time::EPOCH || start_time_ <= realtime)) { in FilterFirstPass()
142 if (start_time_ != log_time::EPOCH && realtime <= start_time_) { in FilterSecondPass()
H A DLogReaderThread.h106 log_time start_time_; variable
/aosp12/frameworks/av/media/libmedia/include/media/
H A DEventMetric.h150 :start_time_(systemTime()), metric_(metric) { in EventTimer()
155 metric_->Record(ns2us(systemTime() - start_time_), attribute_); in ~EventTimer()
167 nsecs_t start_time_;
/aosp12/system/bt/gd/os/
H A Dalarm_benchmark.cc61 …ration_since_start = std::chrono::duration_cast<std::chrono::milliseconds>(end_time - start_time_); in AlarmSleepAndCountDelayedTime()
80 std::chrono::time_point<std::chrono::steady_clock> start_time_; member in BM_ReactableAlarm
118 start_time_ = std::chrono::steady_clock::now(); in BENCHMARK_DEFINE_F()
/aosp12/system/core/fs_mgr/
H A Dfile_wait.cpp88 std::chrono::time_point<std::chrono::steady_clock> start_time_; member in android::fs_mgr::OneShotInotify
97 start_time_(std::chrono::steady_clock::now()), in OneShotInotify()
209 auto remaining = (std::chrono::steady_clock::now() - start_time_); in RemainingMs()
/aosp12/art/runtime/
H A Dthread_pool.cc173 start_time_(0), in ThreadPool()
240 start_time_ = NanoTime(); in StartWorkers()
272 total_wait_time_ += wait_end - std::max(wait_start, start_time_); in GetTask()
H A Dthread_pool.h204 uint64_t start_time_ GUARDED_BY(task_queue_lock_);
H A Dtrace.cc560 start_time_(MicroTime()), clock_overhead_ns_(GetClockOverheadNanoSeconds()), in Trace()
574 Append8LE(buf_.get() + 8, start_time_); in Trace()
628 uint64_t elapsed = MicroTime() - start_time_; in FinishTracing()
808 *wall_clock_diff = MicroTime() - start_time_; in ReadClocks()
H A Dtrace.h338 const uint64_t start_time_; variable
/aosp12/system/core/fs_mgr/libsnapshot/
H A Dsnapshot_stats.cpp76 start_time_ = std::chrono::steady_clock::now(); in Start()
169 report_, std::chrono::steady_clock::now() - start_time_); in Finish()
/aosp12/hardware/interfaces/bluetooth/1.0/default/
H A Dvendor_interface.cc148 FirmwareStartupTimer() : start_time_(std::chrono::steady_clock::now()) {} in FirmwareStartupTimer()
152 std::chrono::steady_clock::now() - start_time_; in ~FirmwareStartupTimer()
159 std::chrono::steady_clock::time_point start_time_; member in android::hardware::bluetooth::V1_0::implementation::FirmwareStartupTimer
/aosp12/system/core/fs_mgr/libsnapshot/include/libsnapshot/
H A Dsnapshot_stats.h96 std::chrono::time_point<std::chrono::steady_clock> start_time_; variable
/aosp12/art/runtime/gc/collector/
H A Dgarbage_collector.cc266 : start_time_(NanoTime()), collector_(collector), with_reporting_(with_reporting) { in ScopedPause()
278 collector_->RegisterPause(NanoTime() - start_time_); in ~ScopedPause()
H A Dgarbage_collector.h58 const uint64_t start_time_;
/aosp12/hardware/interfaces/bluetooth/1.0/vts/functional/
H A DVtsHalBluetoothV1_0TargetTest.cpp120 : task_(task), start_time_(std::chrono::steady_clock::now()) {} in ThroughputLogger()
125 std::chrono::steady_clock::now() - start_time_; in ~ThroughputLogger()
138 std::chrono::steady_clock::time_point start_time_; member in ThroughputLogger
/aosp12/frameworks/av/drm/libmediadrm/tests/
H A DEventMetric_test.cpp107 this->start_time_ = systemTime() - time_delta_ns; in MockEventTimer()
/aosp12/hardware/interfaces/bluetooth/1.1/vts/functional/
H A DVtsHalBluetoothV1_1TargetTest.cpp121 : task_(task), start_time_(std::chrono::steady_clock::now()) {} in ThroughputLogger()
126 std::chrono::steady_clock::now() - start_time_; in ~ThroughputLogger()
139 std::chrono::steady_clock::time_point start_time_; member in ThroughputLogger
/aosp12/frameworks/native/cmds/dumpstate/
H A Ddumpstate.h541 uint64_t start_time_; variable
H A Ddumpstate.cpp727 Dumpstate::ConsentCallback::ConsentCallback() : result_(UNAVAILABLE), start_time_(Nanotime()) { in ConsentCallback()
768 return (Nanotime() - start_time_) / NANOS_PER_MILLI; in getElapsedTimeMs()
/aosp12/art/odrefresh/
H A Dodrefresh.cc254 const time_t start_time_; member in art::odrefresh::OnDeviceRefresh
260 start_time_{time(nullptr)} {
279 time_t GetExecutionTimeUsed() const { return time(nullptr) - start_time_; } in GetExecutionTimeUsed()