/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 | 576 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
|
D | BufferStateLayer.h | 71 bool setBuffer(const sp<GraphicBuffer>& buffer, nsecs_t postTime, nsecs_t desiredPresentTime,
|
D | BufferStateLayer.cpp | 218 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()
|
D | SurfaceFlinger.cpp | 3680 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/ |
D | NotificationManagerServiceTest.java | 435 private StatusBarNotification generateSbn(String pkg, int uid, long postTime, int userId) { in generateSbn() argument 440 nb.build(), new UserHandle(userId), null, postTime); in generateSbn()
|