Searched refs:GetTimestamp (Results 1 – 7 of 7) sorted by relevance
/system/extras/profcollectd/libprofcollectd/ |
D | simpleperf_etm_provider.cpp | 35 std::string GetTimestamp() { in GetTimestamp() function 70 const std::string timestamp = GetTimestamp(); in Trace()
|
/system/connectivity/wifilogd/tests/ |
D | command_processor_unittest.cpp | 133 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()
|
D | mock_os.h | 36 MOCK_CONST_METHOD1(GetTimestamp, Timestamp(clockid_t clock_id));
|
D | os_unittest.cpp | 123 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/ |
D | command_processor.cpp | 191 .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()
|
D | os.h | 70 virtual Timestamp GetTimestamp(clockid_t clock_id) const;
|
D | os.cpp | 52 Os::Timestamp Os::GetTimestamp(clockid_t clock_id) const { in GetTimestamp() function in android::wifilogd::Os
|