Searched refs:timestampNs (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/location/lib/java/com/android/location/provider/
H A DActivityRecognitionEvent.java27 public ActivityRecognitionEvent(String activity, int eventType, long timestampNs) { argument
30 mTimestampNs = timestampNs;
/frameworks/base/core/java/android/hardware/location/
H A DActivityRecognitionEvent.java32 public ActivityRecognitionEvent(String activity, int eventType, long timestampNs) { argument
35 mTimestampNs = timestampNs;
56 long timestampNs = source.readLong();
58 return new ActivityRecognitionEvent(activity, eventType, timestampNs);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
H A DMediaEncoderFilter.java338 public boolean skipFrameAndModifyTimestamp(long timestampNs) { argument
341 mLastTimeLapseFrameRealTimestampNs = timestampNs;
342 mTimestampNs = timestampNs;
352 if (mNumFramesEncoded >= 2 && timestampNs <
362 // - Artificially modify timestampNs to be one frame time (1/framerate) ahead
364 if (mLogVerbose) Log.v(TAG, "timelapse: encoding frame, Timestamp t = " + timestampNs +
367 mLastTimeLapseFrameRealTimestampNs = timestampNs;
/frameworks/base/core/java/com/android/internal/app/
H A DIBatteryStats.aidl89 void noteMobileRadioPowerState(int powerState, long timestampNs);
117 void noteWifiRadioPowerState(int powerState, long timestampNs);
/frameworks/av/include/ndk/
H A DNdkMediaCodec.h165 AMediaCodec *mData, size_t idx, int64_t timestampNs);
/frameworks/av/media/ndk/
H A DNdkMediaCodec.cpp357 AMediaCodec *mData, size_t idx, int64_t timestampNs) {
358 ALOGV("render @ %" PRId64, timestampNs);
359 return translate_error(mData->mCodec->renderOutputBufferAndRelease(idx, timestampNs));
356 AMediaCodec_releaseOutputBufferAtTime( AMediaCodec *mData, size_t idx, int64_t timestampNs) argument
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.h94 size_t index, bool render, bool updatePTS, int64_t timestampNs);
H A Dandroid_media_ImageWriter.cpp431 jlong timestampNs, jint left, jint top, jint right, jint bottom) {
456 ALOGV("timestamp to be queued: %" PRId64, timestampNs);
457 res = native_window_set_buffers_timestamp(anw.get(), timestampNs);
496 jlong nativeBuffer, jint imageFormat, jlong timestampNs, jint left, jint top,
549 ALOGV("timestamp to be queued: %" PRId64, timestampNs);
550 res = native_window_set_buffers_timestamp(anw.get(), timestampNs);
430 ImageWriter_queueImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jobject image, jlong timestampNs, jint left, jint top, jint right, jint bottom) argument
495 ImageWriter_attachAndQueueImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jlong nativeBuffer, jint imageFormat, jlong timestampNs, jint left, jint top, jint right, jint bottom) argument
H A Dandroid_media_MediaCodec.cpp362 size_t index, bool render, bool updatePTS, int64_t timestampNs) {
364 return mCodec->renderOutputBufferAndRelease(index, timestampNs);
1418 jint index, jboolean render, jboolean updatePTS, jlong timestampNs) {
1428 status_t err = codec->releaseOutputBuffer(index, render, updatePTS, timestampNs);
361 releaseOutputBuffer( size_t index, bool render, bool updatePTS, int64_t timestampNs) argument
1416 android_media_MediaCodec_releaseOutputBuffer( JNIEnv *env, jobject thiz, jint index, jboolean render, jboolean updatePTS, jlong timestampNs) argument
/frameworks/base/media/java/android/media/
H A DImageReader.java716 public void setTimestamp(long timestampNs) { argument
718 mTimestamp = timestampNs;
H A DImageWriter.java796 long timestampNs, int left, int top, int right, int bottom);
799 long imageNativeBuffer, int imageFormat, long timestampNs, int left,
795 nativeQueueInputImage(long nativeCtx, Image image, long timestampNs, int left, int top, int right, int bottom) argument
798 nativeAttachAndQueueImage(long nativeCtx, long imageNativeBuffer, int imageFormat, long timestampNs, int left, int top, int right, int bottom) argument
/frameworks/av/include/media/stagefright/
H A DMediaCodec.h136 status_t renderOutputBufferAndRelease(size_t index, int64_t timestampNs);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.cpp913 int64_t timestampNs; local
914 CHECK(msg->findInt64("timestampNs", &timestampNs));
915 err = mCodec->renderOutputBufferAndRelease(bufferIx, timestampNs);
/frameworks/base/services/core/java/com/android/server/am/
H A DBatteryStatsService.java521 public void noteMobileRadioPowerState(int powerState, long timestampNs) { argument
524 mStats.noteMobileRadioPowerState(powerState, timestampNs);
/frameworks/av/media/libstagefright/
H A DACodec.cpp5261 int64_t timestampNs = 0; local
5262 if (!msg->findInt64("timestampNs", &timestampNs)) {
5264 if (info->mData->meta()->findInt64("timeUs", &timestampNs)) {
5265 ALOGV("using buffer PTS of %lld", (long long)timestampNs);
5266 timestampNs *= 1000;
5271 err = native_window_set_buffers_timestamp(mCodec->mNativeWindow.get(), timestampNs);
H A DMediaCodec.cpp758 status_t MediaCodec::renderOutputBufferAndRelease(size_t index, int64_t timestampNs) { argument
762 msg->setInt64("timestampNs", timestampNs);
2512 if (!msg->findInt64("timestampNs", &renderTimeNs)) {
2517 info->mNotify->setInt64("timestampNs", renderTimeNs);
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java3160 public void noteMobileRadioPowerState(int powerState, long timestampNs) { argument
3172 realElapsedRealtimeMs = timestampNs / (1000*1000);
3757 public void noteWifiRadioPowerState(int powerState, long timestampNs) { argument

Completed in 8693 milliseconds