/frameworks/base/core/java/android/service/notification/ |
D | StatusBarNotification.java | 65 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/ |
D | TimeStats.cpp | 187 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()
|
D | TimeStats.h | 51 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/ |
D | BubbleDataTest.java | 843 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/ |
D | SurfaceFlinger.h | 559 const int64_t postTime, bool privileged, bool isMainThread = false) 578 int64_t postTime, bool privileged) REQUIRES(mStateLock); 1051 const std::vector<ListenerCallbacks>& listenerCallbacks, int64_t postTime, in TransactionState() 1059 postTime(postTime), in TransactionState() 1068 const int64_t postTime; member
|
D | BufferStateLayer.h | 70 bool setBuffer(const sp<GraphicBuffer>& buffer, nsecs_t postTime, nsecs_t desiredPresentTime,
|
D | BufferStateLayer.cpp | 214 bool BufferStateLayer::setBuffer(const sp<GraphicBuffer>& buffer, nsecs_t postTime, in setBuffer() argument 225 mFlinger->mTimeStats->setPostTime(getSequence(), getFrameNumber(), getName().c_str(), postTime); in setBuffer()
|
D | SurfaceFlinger.cpp | 3599 transaction.postTime, transaction.privileged, in flushTransactionQueues() 3673 const int64_t postTime = systemTime(); in setTransactionState() local 3702 uncacheBuffer, listenerCallbacks, postTime, in setTransactionState() 3709 uncacheBuffer, listenerCallbacks, postTime, privileged); in setTransactionState() 3718 const int64_t postTime, bool privileged, in applyTransactionState() argument 3755 postTime, privileged); in applyTransactionState() 3887 const std::vector<ListenerCallbacks>& listenerCallbacks, int64_t postTime, in setClientStateLocked() argument 4131 if (layer->setBuffer(buffer, postTime, desiredPresentTime, s.cachedBuffer)) { in setClientStateLocked()
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | NotificationManagerServiceTest.java | 433 private StatusBarNotification generateSbn(String pkg, int uid, long postTime, int userId) { in generateSbn() argument 438 nb.build(), new UserHandle(userId), null, postTime); in generateSbn()
|