Home
last modified time | relevance | path

Searched refs:newTimestamp (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
H A DBluetoothPacketDecoder.java103 int newTimestamp = highTimestamp | mLowTimestamp; in decodePacket() local
104 if (newTimestamp != currentTimestamp) { in decodePacket()
107 currentTimestamp = newTimestamp; in decodePacket()
/aosp12/packages/apps/Contacts/src/com/android/contacts/util/
H A DDataStatus.java66 final long newTimestamp = getLong(cursor, Data.STATUS_TIMESTAMP, -1); in possibleUpdate() local
67 if (newTimestamp < mTimestamp) return; in possibleUpdate()
69 mTimestamp = newTimestamp; in possibleUpdate()
/aosp12/packages/modules/StatsD/statsd/tests/guardrail/
H A DStatsdStats_test.cpp406 int32_t newTimestamp = 10000; in TEST() local
433 EXPECT_EQ(newTimestamp, configStats->broadcast_sent_time_sec.back()); in TEST()
434 EXPECT_EQ(newTimestamp, configStats->data_drop_time_sec.back()); in TEST()
436 EXPECT_EQ(newTimestamp, configStats->dump_report_stats.back().first); in TEST()
437 EXPECT_EQ(newTimestamp, configStats->activation_time_sec.back()); in TEST()
438 EXPECT_EQ(newTimestamp, configStats->deactivation_time_sec.back()); in TEST()
/aosp12/packages/services/Car/cpp/computepipe/tests/runner/stream_manager/
H A DPixelStreamManagerTest.cpp166 uint64_t newTimestamp = 200; in TEST() local
168 memHandle.setFrameData(newTimestamp, newFrame); in TEST()
170 EXPECT_THAT(memHandle.getTimeStamp(), newTimestamp); in TEST()