Searched defs:timestamps (Results 1 - 11 of 11) sorted by relevance

/frameworks/native/libs/ui/
H A DFrameStats.cpp39 nsecs_t* timestamps = reinterpret_cast<nsecs_t*>(buffer); local
43 memcpy(timestamps, &refreshPeriodNano, timestampSize);
44 timestamps += 1;
46 memcpy(timestamps, desiredPresentTimesNano.array(), frameCount * timestampSize);
47 timestamps += frameCount;
49 memcpy(timestamps, actualPresentTimesNano.array(), frameCount * timestampSize);
50 timestamps += frameCount;
52 memcpy(timestamps, frameReadyTimesNano.array(), frameCount * timestampSize);
64 nsecs_t const* timestamps = reinterpret_cast<nsecs_t const*>(buffer); local
67 memcpy(&refreshPeriodNano, timestamps, timestampSiz
[all...]
/frameworks/av/camera/
H A DICameraRecordingProxyListener.cpp68 const std::vector<nsecs_t>& timestamps,
74 uint32_t n = timestamps.size();
76 ALOGE("%s: size of timestamps(%zu) and handles(%zu) mismatch!",
77 __FUNCTION__, timestamps.size(), handles.size());
81 for (auto ts : timestamps) {
144 std::vector<nsecs_t> timestamps; local
146 timestamps.reserve(n);
149 res = data.readInt64(&timestamps[i]);
167 recordingFrameHandleCallbackTimestampBatch(timestamps, handles);
67 recordingFrameHandleCallbackTimestampBatch( const std::vector<nsecs_t>& timestamps, const std::vector<native_handle_t*>& handles) argument
H A DICameraClient.cpp97 const std::vector<nsecs_t>& timestamps,
102 uint32_t n = timestamps.size();
104 ALOGE("%s: size of timestamps(%zu) and handles(%zu) mismatch!",
105 __FUNCTION__, timestamps.size(), handles.size());
109 for (auto ts : timestamps) {
190 std::vector<nsecs_t> timestamps; local
192 timestamps.reserve(n);
195 res = data.readInt64(&timestamps[i]);
213 recordingFrameHandleCallbackTimestampBatch(timestamps, handles);
96 recordingFrameHandleCallbackTimestampBatch( const std::vector<nsecs_t>& timestamps, const std::vector<native_handle_t*>& handles) argument
H A DCamera.cpp430 const std::vector<nsecs_t>& timestamps,
442 proxylistener->recordingFrameHandleCallbackTimestampBatch(timestamps, handles);
453 listener->postRecordingFrameHandleTimestampBatch(timestamps, handles);
429 recordingFrameHandleCallbackTimestampBatch( const std::vector<nsecs_t>& timestamps, const std::vector<native_handle_t*>& handles) argument
/frameworks/base/core/java/android/gesture/
H A DGestureStroke.java41 private final long[] timestamps; field in class:GestureStroke
78 timestamps = times;
91 timestamps = times.clone();
96 return new GestureStroke(boundingBox, length, points, timestamps);
202 final long[] times = timestamps;
/frameworks/base/core/java/com/android/server/
H A DBootReceiver.java203 HashMap<String, Long> timestamps = readTimestamps();
217 addFileWithFootersToDropBox(db, timestamps, headers, lastKmsgFooter,
219 addFileWithFootersToDropBox(db, timestamps, headers, lastKmsgFooter,
221 addFileToDropBox(db, timestamps, headers, "/cache/recovery/log", -LOG_SIZE,
223 addFileToDropBox(db, timestamps, headers, "/cache/recovery/last_kmsg",
225 addAuditErrorsToDropBox(db, timestamps, headers, -LOG_SIZE, "SYSTEM_AUDIT");
233 addFsckErrorsToDropBoxAndLogFsStat(db, timestamps, headers, -LOG_SIZE, "SYSTEM_FSCK");
239 addFileToDropBox(db, timestamps, headers, tombstoneFiles[i].getPath(),
244 writeTimestamps(timestamps);
251 HashMap<String, Long> timestamps
268 addFileToDropBox( DropBoxManager db, HashMap<String, Long> timestamps, String headers, String filename, int maxSize, String tag) argument
274 addFileWithFootersToDropBox( DropBoxManager db, HashMap<String, Long> timestamps, String headers, String footers, String filename, int maxSize, String tag) argument
295 addAuditErrorsToDropBox(DropBoxManager db, HashMap<String, Long> timestamps, String headers, int maxSize, String tag) argument
327 addFsckErrorsToDropBoxAndLogFsStat(DropBoxManager db, HashMap<String, Long> timestamps, String headers, int maxSize, String tag) argument
569 writeTimestamps(HashMap<String, Long> timestamps) argument
[all...]
/frameworks/support/compat/api24/android/support/v4/app/
H A DNotificationCompatApi24.java152 List<Long> timestamps, List<CharSequence> senders, List<String> dataMimeTypes,
158 texts.get(i), timestamps.get(i), senders.get(i));
150 addMessagingStyle(NotificationBuilderWithBuilderAccessor b, CharSequence userDisplayName, CharSequence conversationTitle, List<CharSequence> texts, List<Long> timestamps, List<CharSequence> senders, List<String> dataMimeTypes, List<Uri> dataUris) argument
/frameworks/av/media/libnbaio/
H A DNBLog.cpp1003 std::priority_queue<MergeItem, std::vector<MergeItem>, std::greater<MergeItem>> timestamps; local
1008 timestamps.emplace(ts, i);
1012 while (!timestamps.empty()) {
1014 int index = timestamps.top().index;
1018 timestamps.pop();
1021 timestamps.emplace(ts, index);
/frameworks/av/media/libstagefright/
H A DCameraSource.cpp62 const std::vector<nsecs_t>& timestamps,
118 const std::vector<nsecs_t>& timestamps,
122 int n = timestamps.size();
125 modifiedTimestamps[i] = timestamps[i] / 1000;
117 postRecordingFrameHandleTimestampBatch( const std::vector<nsecs_t>& timestamps, const std::vector<native_handle_t*>& handles) argument
/frameworks/av/services/camera/libcameraservice/api1/
H A DCameraClient.cpp914 std::vector<nsecs_t> timestamps; local
916 timestamps.reserve(n);
939 timestamps.push_back(msg.timestamp);
942 c->recordingFrameHandleCallbackTimestampBatch(timestamps, handles);
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp2085 EGLuint64KHR frameId, EGLint numTimestamps, const EGLint *timestamps,
2117 switch (timestamps[i]) {
2084 eglGetFrameTimestampsANDROID(EGLDisplay dpy, EGLSurface surface, EGLuint64KHR frameId, EGLint numTimestamps, const EGLint *timestamps, EGLnsecsANDROID *values) argument

Completed in 2856 milliseconds