Home
last modified time | relevance | path

Searched refs:GetTimestamp (Results 1 – 7 of 7) sorted by relevance

/system/extras/profcollectd/libprofcollectd/
Dsimpleperf_etm_provider.cpp35 std::string GetTimestamp() { in GetTimestamp() function
70 const std::string timestamp = GetTimestamp(); in Trace()
/system/connectivity/wifilogd/tests/
Dcommand_processor_unittest.cpp133 EXPECT_CALL(*os_, GetTimestamp(CLOCK_MONOTONIC)); in SendAsciiMessageWithAdjustments()
134 EXPECT_CALL(*os_, GetTimestamp(CLOCK_BOOTTIME)); in SendAsciiMessageWithAdjustments()
135 EXPECT_CALL(*os_, GetTimestamp(CLOCK_REALTIME)); in SendAsciiMessageWithAdjustments()
247 EXPECT_CALL(*os_, GetTimestamp(CLOCK_MONOTONIC)) in TEST_F()
249 EXPECT_CALL(*os_, GetTimestamp(CLOCK_BOOTTIME)) in TEST_F()
251 EXPECT_CALL(*os_, GetTimestamp(CLOCK_REALTIME)) in TEST_F()
452 EXPECT_CALL(*os_, GetTimestamp(_)).Times(AnyNumber()); in TEST_F()
Dmock_os.h36 MOCK_CONST_METHOD1(GetTimestamp, Timestamp(clockid_t clock_id));
Dos_unittest.cpp123 const Os::Timestamp received = os_->GetTimestamp(CLOCK_REALTIME); in TEST_F()
317 EXPECT_DEATH(os_->GetTimestamp(CLOCK_REALTIME), "Check failed"); in TEST_F()
322 EXPECT_DEATH(os_->GetTimestamp(CLOCK_REALTIME), "Unexpected error"); in TEST_F()
/system/connectivity/wifilogd/
Dcommand_processor.cpp191 .set_since_boot_awake_only(os_->GetTimestamp(CLOCK_MONOTONIC)) in CopyCommandToLog()
192 .set_since_boot_with_sleep(os_->GetTimestamp(CLOCK_BOOTTIME)) in CopyCommandToLog()
193 .set_since_epoch(os_->GetTimestamp(CLOCK_REALTIME)); in CopyCommandToLog()
Dos.h70 virtual Timestamp GetTimestamp(clockid_t clock_id) const;
Dos.cpp52 Os::Timestamp Os::GetTimestamp(clockid_t clock_id) const { in GetTimestamp() function in android::wifilogd::Os