Searched defs:timestamp (Results 51 - 75 of 117) sorted by relevance

12345

/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DCameraDeviceState.java77 void onCaptureStarted(RequestHolder holder, long timestamp); argument
137 * @param timestamp The timestamp of the capture start in nanoseconds.
143 public synchronized boolean setCaptureStart(final RequestHolder request, long timestamp, argument
146 doStateTransition(STATE_CAPTURING, timestamp, captureError);
210 doStateTransition(newState, /*timestamp*/0, NO_CAPTURE_ERROR);
213 private void doStateTransition(int newState, final long timestamp, final int error) { argument
309 mCurrentListener.onCaptureStarted(mCurrentRequest, timestamp);
H A DCameraDeviceUserShim.java236 public void onCaptureStarted(final CaptureResultExtras resultExtras, final long timestamp) { argument
238 /*arg1*/ (int) (timestamp & 0xFFFFFFFFL),
239 /*arg2*/ (int) ( (timestamp >> 32) & 0xFFFFFFFFL),
285 long timestamp = msg.arg2 & 0xFFFFFFFFL;
286 timestamp = (timestamp << 32) | (msg.arg1 & 0xFFFFFFFFL);
288 mCallbacks.onCaptureStarted(resultExtras, timestamp);
H A DCaptureCollector.java123 public void setJpegTimestamp(long timestamp) { argument
139 mTimestamp = timestamp;
182 public void setPreviewTimestamp(long timestamp) { argument
198 mTimestamp = timestamp;
418 * @param timestamp the timestamp of the request will be written out to here, in ns
425 MutableLong timestamp)
431 while (!removeRequestIfCompleted(holder, /*out*/timestamp)) {
443 private boolean removeRequestIfCompleted(RequestHolder holder, MutableLong timestamp) { argument
447 timestamp
424 waitForRequestCompleted(RequestHolder holder, long timeout, TimeUnit unit, MutableLong timestamp) argument
463 jpegCaptured(long timestamp) argument
521 previewCaptured(long timestamp) argument
[all...]
/frameworks/base/core/java/android/hardware/location/
H A DActivityRecognitionHardware.java51 public long timestamp; field in class:ActivityRecognitionHardware.Event
149 new ActivityRecognitionEvent(activityName, event.type, event.timestamp);
H A DGeofenceHardware.java232 * <li> The timestamp when the geofence transition occured.
507 long timestamp, int monitoringType) {
510 c.onGeofenceTransition(geofenceId, transition, location, timestamp,
506 onGeofenceTransition(int geofenceId, int transition, Location location, long timestamp, int monitoringType) argument
/frameworks/base/core/jni/
H A Dandroid_view_DisplayEventReceiver.cpp66 void dispatchVsync(nsecs_t timestamp, int32_t id, uint32_t count);
67 void dispatchHotplug(nsecs_t timestamp, int32_t id, bool connected);
145 ALOGV("receiver %p ~ Vsync pulse: timestamp=%lld, id=%d, count=%d",
168 *outTimestamp = ev.header.timestamp;
173 dispatchHotplug(ev.header.timestamp, ev.header.id, ev.hotplug.connected);
187 void NativeDisplayEventReceiver::dispatchVsync(nsecs_t timestamp, int32_t id, uint32_t count) { argument
192 gDisplayEventReceiverClassInfo.dispatchVsync, timestamp, id, count);
198 void NativeDisplayEventReceiver::dispatchHotplug(nsecs_t timestamp, int32_t id, bool connected) { argument
203 gDisplayEventReceiverClassInfo.dispatchHotplug, timestamp, id, connected);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGLEnvironment.java141 public void setSurfaceTimestamp(long timestamp) { argument
142 if (!nativeSetSurfaceTimestamp(timestamp)) {
143 throw new RuntimeException("Could not set timestamp for current surface!");
183 private native boolean nativeSetSurfaceTimestamp(long timestamp); argument
H A DFrame.java121 public void setTimestamp(long timestamp) { argument
122 mTimestamp = timestamp;
/frameworks/base/media/mca/filterfw/jni/
H A Djni_gl_environment.cpp373 jlong timestamp) {
375 int64_t timestamp_native = timestamp;
371 Java_android_filterfw_core_GLEnvironment_nativeSetSurfaceTimestamp(JNIEnv* env, jobject thiz, jlong timestamp) argument
/frameworks/base/media/mca/filterfw/native/core/
H A Dgl_env.cpp245 bool GLEnv::SetSurfaceTimestamp(int64_t timestamp) { argument
252 native_window_set_buffers_timestamp(window, timestamp);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
H A DCameraDeviceBinderTest.java115 public void onCaptureStarted(CaptureResultExtras resultExtras, long timestamp) argument
413 long timestamp = 0; // All timestamps should be larger than 0.
415 Log.v(TAG, "next t: " + nextTimestamp + " current t: " + timestamp);
416 assertTrue("Captures are out of order", timestamp < nextTimestamp);
417 timestamp = nextTimestamp;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrame.java55 /** Special timestamp value indicating that no time-stamp was set. */
80 * Set the frame's timestamp in nanoseconds.
82 * @param timestamp the timestamp of this frame in nanoseconds.
84 public final void setTimestamp(long timestamp) { argument
85 mBackingStore.setTimestamp(timestamp);
89 * @return the frame's timestamp in nanoseconds.
96 * @return the frame's timestamp in milliseconds.
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerEntry.java115 private void setTimestamp(String timestamp) { argument
116 mTimestamp = timestamp;
209 String timestamp = cursor.getString(cursor.getColumnIndex(TIMESTAMP));
213 entry.setTimestamp(timestamp);
/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java62 * timestamp in microseconds (since boot) when
65 public long timestamp; field in class:ScanResult
235 this.timestamp = tsf;
249 this.timestamp = tsf;
263 timestamp = source.timestamp;
298 append(", timestamp: ").
299 append(timestamp);
329 dest.writeLong(timestamp);
/frameworks/native/services/surfaceflinger/
H A DEventThread.cpp57 mVSyncEvent[i].header.timestamp = 0;
148 void EventThread::onVSyncEvent(nsecs_t timestamp) { argument
152 mVSyncEvent[0].header.timestamp = timestamp;
166 event.header.timestamp = systemTime();
215 nsecs_t timestamp = 0; local
217 timestamp = mVSyncEvent[i].header.timestamp;
218 if (timestamp) {
221 mVSyncEvent[i].header.timestamp
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DInboundSmsTracker.java69 * @param timestamp the message timestamp
74 InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, argument
77 mTimestamp = timestamp;
96 * @param timestamp the message timestamp
105 public InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, argument
109 mTimestamp = timestamp;
231 StringBuilder builder = new StringBuilder("SmsTracker{timestamp=");
/frameworks/rs/
H A DrsAllocation.h71 int64_t timestamp; member in struct:android::renderscript::Allocation::Hal::State
/frameworks/av/media/libstagefright/
H A DOMXClient.cpp126 OMX_U32 flags, OMX_TICKS timestamp);
374 OMX_U32 flags, OMX_TICKS timestamp) {
376 node, buffer, range_offset, range_length, flags, timestamp);
370 emptyBuffer( node_id node, buffer_id buffer, OMX_U32 range_offset, OMX_U32 range_length, OMX_U32 flags, OMX_TICKS timestamp) argument
H A DCameraSource.cpp54 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
92 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) {
96 source->dataCallbackTimestamp(timestamp/1000, msgType, dataPtr);
855 ALOGV("dataCallbackTimestamp: timestamp %" PRId64 " us", timestampUs);
870 // May need to skip frame or modify timestamp. Currently implemented
912 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) {
913 mSource->dataCallbackTimestamp(timestamp / 1000, msgType, dataPtr);
91 postDataTimestamp( nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
911 dataCallbackTimestamp( nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DStreamingProcessor.cpp673 nsecs_t timestamp; local
705 timestamp = imgBuffer.mTimestamp;
760 __FUNCTION__, mId, timestamp);
782 l.mRemoteCallback->dataCallbackTimestamp(timestamp,
/frameworks/base/core/java/android/hardware/
H A DSystemSensorManager.java344 long timestamp);
381 long timestamp) {
395 t.timestamp = timestamp;
448 long timestamp) {
461 t.timestamp = timestamp;
343 dispatchSensorEvent(int handle, float[] values, int accuracy, long timestamp) argument
380 dispatchSensorEvent(int handle, float[] values, int inAccuracy, long timestamp) argument
447 dispatchSensorEvent(int handle, float[] values, int accuracy, long timestamp) argument
/frameworks/native/include/android/
H A Dsensor.h155 int64_t timestamp; member in struct:ASensorEvent
/frameworks/native/libs/gui/tests/
H A DIGraphicBufferProducer_test.cpp127 timestamp = QUEUE_BUFFER_INPUT_TIMESTAMP;
138 timestamp,
147 QueueBufferInputBuilder& setTimestamp(int64_t timestamp) { argument
148 this->timestamp = timestamp;
183 int64_t timestamp; member in struct:android::IGraphicBufferProducerTest::QueueBufferInputBuilder
/frameworks/native/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
H A DGL2CameraEye.java191 long timestamp = mSurface.getTimestamp();
192 doPhysics(timestamp);
339 private void doPhysics(long timestamp) { argument
345 mLastTime = timestamp;
347 float deltaT = (timestamp - mLastTime)/1000000000.f; // To seconds
355 mLastTime = timestamp;
/frameworks/av/media/libmedia/
H A DIOMX.cpp462 OMX_U32 flags, OMX_TICKS timestamp) {
470 data.writeInt64(timestamp);
921 OMX_TICKS timestamp = data.readInt64(); local
926 flags, timestamp));
458 emptyBuffer( node_id node, buffer_id buffer, OMX_U32 range_offset, OMX_U32 range_length, OMX_U32 flags, OMX_TICKS timestamp) argument

Completed in 4072 milliseconds

12345