Home
last modified time | relevance | path

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

/frameworks/opt/net/ims/tests/src/com/android/ims/rcs/uce/presence/pidfparser/pidf/
DTupleTest.java112 String nowTime = Instant.now().toString(); in testSerializing() local
113 Timestamp timestamp = new Timestamp(nowTime); in testSerializing()
134 String verificationTimestamp = "<timestamp>" + nowTime + "</timestamp>"; in testSerializing()
156 final String nowTime = Instant.now().toString(); in testParsing() local
176 .append("<timestamp>").append(nowTime).append("</timestamp></tuple>"); in testParsing()
225 assertEquals(nowTime, PidfParserUtils.getTupleTimestamp(tuple)); in testParsing()
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DGraphRunner.java429 long nowTime = SystemClock.elapsedRealtime(); in scheduleFilter() local
431 "-> Schedule time (" + filter + ") = " + (nowTime - scheduleTime) + " ms."); in scheduleFilter()
/frameworks/av/media/libmediatranscoding/
DTranscodingSessionController.cpp479 auto nowTime = std::chrono::steady_clock::now(); in setState() local
482 std::chrono::duration_cast<std::chrono::microseconds>(nowTime - stateEnterTime); in setState()
500 stateEnterTime = nowTime; in setState()
/frameworks/base/core/java/android/view/
DViewRootImpl.java3925 long nowTime = System.currentTimeMillis(); in trackFPS() local
3927 mFpsStartTime = mFpsPrevTime = nowTime; in trackFPS()
3932 long frameTime = nowTime - mFpsPrevTime; in trackFPS()
3933 long totalTime = nowTime - mFpsStartTime; in trackFPS()
3935 mFpsPrevTime = nowTime; in trackFPS()
3939 mFpsStartTime = nowTime; in trackFPS()
/frameworks/base/services/core/java/com/android/server/pm/
DUserManagerService.java5318 private static void dumpTimeAgo(PrintWriter pw, StringBuilder sb, long nowTime, long time) { in dumpTimeAgo() argument
5323 TimeUtils.formatDuration(nowTime - time, sb); in dumpTimeAgo()