Searched defs:timestamp (Results 26 - 50 of 117) sorted by relevance

12345

/frameworks/base/core/java/android/hardware/camera2/
H A DCameraCaptureSession.java480 * with the actual timestamp for the start of exposure. This timestamp
481 * matches the timestamp that will be included in
482 * {@link CaptureResult#SENSOR_TIMESTAMP the result timestamp field},
498 * @param timestamp the timestamp at start of capture, in nanoseconds.
504 CaptureRequest request, long timestamp, long frameNumber) {
506 onCaptureStarted(session, request, timestamp);
514 CaptureRequest request, long timestamp) {
503 onCaptureStarted(CameraCaptureSession session, CaptureRequest request, long timestamp, long frameNumber) argument
513 onCaptureStarted(CameraCaptureSession session, CaptureRequest request, long timestamp) argument
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCallbackProxies.java101 CaptureRequest request, long timestamp, long frameNumber) {
102 mProxy.invoke("onCaptureStarted", camera, request, timestamp, frameNumber);
100 onCaptureStarted(CameraDevice camera, CaptureRequest request, long timestamp, long frameNumber) argument
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DLegacyResultMapper.java58 * @param timestamp the timestamp to use for this result in nanoseconds.
63 LegacyRequest legacyRequest, long timestamp) {
87 // sensor.timestamp
88 result.set(SENSOR_TIMESTAMP, timestamp);
93 " timestamp = " + timestamp);
252 // sensor.timestamp varies every frame; mapping is done in #cachedConvertResultMetadata
62 cachedConvertResultMetadata( LegacyRequest legacyRequest, long timestamp) argument
H A DPerfMeasurement.java126 * timestamp gpu_duration cpu_duration
136 dump.write("timestamp gpu_duration cpu_duration\n");
194 // Discard timestamp and CPU measurement since GPU measurement failed
205 * Add a timestamp to a timing measurement. These are queued up and matched to completed
208 public void addTimestamp(long timestamp) { argument
209 mTimestampQueue.add(timestamp);
/frameworks/base/location/java/android/location/
H A DGpsStatus.java127 void onNmeaReceived(long timestamp, String nmea); argument
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
H A DCameraBinderTest.java261 public void onCaptureStarted(CaptureResultExtras resultExtras, long timestamp) argument
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiActivityEnergyInfo.java34 private final long timestamp; field in class:WifiActivityEnergyInfo
48 timestamp = System.currentTimeMillis();
54 + " timestamp=" + timestamp
127 * @return timestamp(wall clock) of record creation
130 return timestamp;
/frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
H A DBlockingCaptureCallback.java126 long timestamp, long frameNumber) {
127 if (mProxy != null) mProxy.onCaptureStarted(session, request, timestamp, frameNumber);
125 onCaptureStarted(CameraCaptureSession session, CaptureRequest request, long timestamp, long frameNumber) argument
/frameworks/native/include/gui/
H A DIGraphicBufferProducer.h268 // timestamp - a monotonically increasing value in nanoseconds
269 // isAutoTimestamp - if the timestamp was synthesized at queue time
278 inline QueueBufferInput(int64_t timestamp, bool isAutoTimestamp, argument
281 : timestamp(timestamp), isAutoTimestamp(isAutoTimestamp), crop(crop),
288 *outTimestamp = timestamp;
307 int64_t timestamp; member in struct:android::IGraphicBufferProducer::QueueBufferInput
/frameworks/native/libs/ui/
H A DFence.cpp118 uint64_t timestamp = 0; local
120 if (pinfo->timestamp_ns > timestamp) {
121 timestamp = pinfo->timestamp_ns;
126 return nsecs_t(timestamp);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaInboundSmsHandler.java278 long timestamp) {
321 InboundSmsTracker tracker = new InboundSmsTracker(userData, timestamp, destinationPort,
277 processCdmaWapPdu(byte[] pdu, int referenceNumber, String address, long timestamp) argument
/frameworks/av/camera/
H A DCamera.cpp316 void Camera::dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
327 proxylistener->dataCallbackTimestamp(timestamp, msgType, dataPtr);
338 listener->postDataTimestamp(timestamp, msgType, dataPtr);
/frameworks/av/media/libmedia/
H A DIAudioTrack.cpp178 virtual status_t getTimestamp(AudioTimestamp& timestamp) { argument
185 timestamp.mPosition = reply.readInt32();
186 timestamp.mTime.tv_sec = reply.readInt32();
187 timestamp.mTime.tv_nsec = reply.readInt32();
275 AudioTimestamp timestamp; local
276 status_t status = getTimestamp(timestamp);
279 reply->writeInt32(timestamp.mPosition);
280 reply->writeInt32(timestamp.mTime.tv_sec);
281 reply->writeInt32(timestamp.mTime.tv_nsec);
/frameworks/av/media/libnbaio/
H A DMonoPipe.cpp226 status_t MonoPipe::getNextWriteTimestamp(int64_t *timestamp) argument
230 ALOG_ASSERT(NULL != timestamp);
235 observeFrontAndNRPTS(&front, timestamp);
237 if (AudioBufferProvider::kInvalidPTS != *timestamp) {
238 // If we have a valid read-pointer and next read timestamp pair, then
240 // frames are in the buffer, and offset the timestamp by that amt. Then
242 // the next read timestamp plus the current amount of data in the
245 *timestamp = offsetTimestampByAudioFrames(*timestamp, pendingFrames);
334 status_t MonoPipe::getTimestamp(AudioTimestamp& timestamp) argument
[all...]
H A DNBLog.cpp343 String8 timestamp, body; local
347 // TODO timestamp empty here, only other choice to wait for the first timestamp event in the
348 // log to push it out. Consider keeping the timestamp/body between calls to readAt().
349 dumpLine(timestamp, body);
357 timestamp.appendFormat("[%*s]", (int) width + 4, "");
402 dumpLine(timestamp, body);
405 timestamp.clear();
407 timestamp.appendFormat("[%d.%03d to .%.03d by .%.03d to .%.03d]",
415 timestamp
438 dumpLine(const String8& timestamp, String8& body) argument
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
H A DSoftMPEG4.cpp214 // so use fake timestamp instead
215 uint32_t timestamp = 0xFFFFFFFF; local
218 timestamp = mPvTime;
229 mHandle, &bitstream, &timestamp, &tmp,
246 outHeader->nTimeStamp = mPvToOmxTimeMap.valueFor(timestamp);
247 mPvToOmxTimeMap.removeItem(timestamp);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
H A Dmp4dec_api.h109 uint32 timestamp; member in struct:tagVopHeaderInfo
155 Bool PVDecSetReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
156 Bool PVDecSetEnhReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
157 OSCL_IMPORT_REF Bool PVDecodeVideoFrame(VideoDecControls *decCtrl, uint8 *bitstream[], uint32 *timestamp, int32 *buffer_size, uint use_ext_timestamp[], uint8* currYUV);
158 Bool PVDecodeVopHeader(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 buffer_size[], VopHeaderInfo *header_info, uint use_ext_timestamp[], uint8 *currYUV);
/frameworks/av/media/libstagefright/omx/
H A DGraphicBufferSource.cpp335 ALOGV("OUT timestamp: %lld -> %lld",
342 ALOGW("giving up limiting timestamp gap (pts = %lld)",
611 /* Cap timestamp gap between adjacent frames to specified max
622 // Drop the frame if it's going backward in time. Bad timestamp
634 ALOGV("IN timestamp: %lld -> %lld",
717 uint64_t timestamp = 0; // does this matter? local
721 timestamp);
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DCaptureSequencer.cpp121 void CaptureSequencer::onCaptureAvailable(nsecs_t timestamp, argument
126 mCaptureTimestamp = timestamp;
601 ALOGE("No timestamp field in capture frame!");
H A DZslProcessor.cpp83 nsecs_t timestamp = entry.data.i64[0]; local
84 (void)timestamp;
85 ALOGVV("Got preview frame for timestamp %" PRId64, timestamp);
480 ALOGVV(" Acquired buffer, timestamp %" PRId64, queueHead.buffer.mTimestamp);
511 ALOGE("%s: Can't find timestamp in frame!",
H A DZslProcessor3.cpp106 nsecs_t timestamp = entry.data.i64[0]; local
108 ALOGE("%s: metadata doesn't have timestamp, skip this result", __FUNCTION__);
119 ALOGVV("Got preview metadata for frame %d with timestamp %" PRId64, frameNumber, timestamp);
124 if (timestamp <= mLatestClearedBufferTimestamp) return;
526 * Find the smallest timestamp we know about so far
544 ALOGE("%s: Can't find timestamp in frame!",
605 ALOGVV("%s: Saw timestamp %" PRId64, __FUNCTION__, frameTimestamp);
625 ALOGV("%s: Candidate timestamp %" PRId64 " (idx %zu), empty frames: %zu",
650 // TODO: Verify that the buffer is in our queue by looking at timestamp
[all...]
/frameworks/av/services/camera/libcameraservice/common/
H A DCamera2ClientBase.cpp242 nsecs_t timestamp) {
244 (void)timestamp;
247 __FUNCTION__, resultExtras.requestId, timestamp);
241 notifyShutter(const CaptureResultExtras& resultExtras, nsecs_t timestamp) argument
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3OutputStream.cpp131 nsecs_t timestamp) {
134 status_t res = returnAnyBufferLocked(buffer, timestamp, /*output*/true);
140 mLastTimestamp = timestamp;
147 nsecs_t timestamp,
173 res = native_window_set_buffers_timestamp(mConsumer.get(), timestamp);
175 ALOGE("%s: Stream %d: Error setting timestamp: %s (%d)",
129 returnBufferLocked( const camera3_stream_buffer &buffer, nsecs_t timestamp) argument
145 returnBufferCheckedLocked( const camera3_stream_buffer &buffer, nsecs_t timestamp, bool output, sp<Fence> *releaseFenceOut) argument
H A DCamera3Stream.cpp275 nsecs_t timestamp) {
287 status_t res = returnBufferLocked(buffer, timestamp);
274 returnBuffer(const camera3_stream_buffer &buffer, nsecs_t timestamp) argument
H A DCamera3ZslStream.cpp43 TimestampFinder(nsecs_t timestamp) : mTimestamp(timestamp) {} argument
70 // Best result: timestamp is identical
86 // Order i1,i2 so that always i1.timestamp < i2.timestamp
92 // Second best: closest (lower) timestamp
99 // Worst: closest (higher) timestamp
188 nsecs_t timestamp,
196 timestamp,
262 status_t res = returnAnyBufferLocked(buffer, /*timestamp*/
186 returnBufferCheckedLocked( const camera3_stream_buffer &buffer, nsecs_t timestamp, bool output, sp<Fence> *releaseFenceOut) argument
283 enqueueInputBufferByTimestamp( nsecs_t timestamp, nsecs_t* actualTimestamp) argument
[all...]

Completed in 245 milliseconds

12345