Home
last modified time | relevance | path

Searched refs:postTime (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/core/java/android/service/notification/
DStatusBarNotification.java65 private final long postTime; field in StatusBarNotification
72 String overrideGroupKey, long postTime) { in StatusBarNotification() argument
84 this.postTime = postTime; in StatusBarNotification()
96 long postTime) { in StatusBarNotification() argument
108 this.postTime = postTime; in StatusBarNotification()
126 this.postTime = in.readLong(); in StatusBarNotification()
197 out.writeLong(this.postTime); in writeToParcel()
230 no, this.user, this.overrideGroupKey, this.postTime); in cloneLight()
237 this.notification.clone(), this.user, this.overrideGroupKey, this.postTime); in clone()
336 return postTime; in getPostTime()
/frameworks/native/services/surfaceflinger/TimeStats/
DTimeStats.cpp187 const int32_t postToAcquireMs = msBetween(timeRecords[0].frameTime.postTime, in flushAvailableRecordsToStatsLocked()
193 const int32_t postToPresentMs = msBetween(timeRecords[0].frameTime.postTime, in flushAvailableRecordsToStatsLocked()
225 ATRACE_INT64(("TimeStats-Post - " + layerName).c_str(), timeRecords[0].frameTime.postTime); in flushAvailableRecordsToStatsLocked()
257 nsecs_t postTime) { in setPostTime() argument
262 postTime); in setPostTime()
284 .postTime = postTime, in setPostTime()
285 .latchTime = postTime, in setPostTime()
286 .acquireTime = postTime, in setPostTime()
287 .desiredTime = postTime, in setPostTime()
DTimeStats.h51 nsecs_t postTime) = 0;
76 nsecs_t postTime = 0; member
123 nsecs_t postTime) override;
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/
DBubbleDataTest.java843 private void setPostTime(NotificationEntry entry, long postTime) { in setPostTime() argument
844 when(entry.notification.getPostTime()).thenReturn(postTime); in setPostTime()
861 long postTime) { in createBubbleEntry() argument
877 when(sbn.getPostTime()).thenReturn(postTime); in createBubbleEntry()
888 private void sendUpdatedEntryAtTime(NotificationEntry entry, long postTime) { in sendUpdatedEntryAtTime() argument
889 setPostTime(entry, postTime); in sendUpdatedEntryAtTime()
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.h576 const int64_t postTime, bool privileged, bool isMainThread = false)
595 int64_t postTime, bool privileged) REQUIRES(mStateLock);
1070 const std::vector<ListenerCallbacks>& listenerCallbacks, int64_t postTime, in TransactionState()
1078 postTime(postTime), in TransactionState()
1087 const int64_t postTime; member
DBufferStateLayer.h71 bool setBuffer(const sp<GraphicBuffer>& buffer, nsecs_t postTime, nsecs_t desiredPresentTime,
DBufferStateLayer.cpp218 bool BufferStateLayer::setBuffer(const sp<GraphicBuffer>& buffer, nsecs_t postTime, in setBuffer() argument
229 mFlinger->mTimeStats->setPostTime(getSequence(), getFrameNumber(), getName().c_str(), postTime); in setBuffer()
DSurfaceFlinger.cpp3680 transaction.postTime, transaction.privileged, in flushTransactionQueues()
3754 const int64_t postTime = systemTime(); in setTransactionState() local
3783 uncacheBuffer, listenerCallbacks, postTime, in setTransactionState()
3790 uncacheBuffer, listenerCallbacks, postTime, privileged); in setTransactionState()
3799 const int64_t postTime, bool privileged, in applyTransactionState() argument
3836 postTime, privileged); in applyTransactionState()
3969 const std::vector<ListenerCallbacks>& listenerCallbacks, int64_t postTime, in setClientStateLocked() argument
4222 if (layer->setBuffer(buffer, postTime, desiredPresentTime, s.cachedBuffer)) { in setClientStateLocked()
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DNotificationManagerServiceTest.java435 private StatusBarNotification generateSbn(String pkg, int uid, long postTime, int userId) { in generateSbn() argument
440 nb.build(), new UserHandle(userId), null, postTime); in generateSbn()