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/av/media/libstagefright/include/
H A DSoftwareRenderer.h36 const void *data, size_t size, int64_t 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/av/include/ndk/
H A DNdkMediaCodec.h164 AMediaCodec *mData, size_t idx, int64_t timestampNs);
/frameworks/av/media/libstagefright/colorconversion/
H A DSoftwareRenderer.cpp183 const void *data, size_t /*size*/, int64_t timestampNs,
279 timestampNs)) != 0) {
182 render( const void *data, size_t , int64_t timestampNs, void* , const sp<AMessage>& format) argument
/frameworks/base/core/java/com/android/internal/app/
H A DIBatteryStats.aidl80 void noteMobileRadioPowerState(int powerState, long timestampNs);
/frameworks/av/media/ndk/
H A DNdkMediaCodec.cpp349 AMediaCodec *mData, size_t idx, int64_t timestampNs) {
350 ALOGV("render @ %" PRId64, timestampNs);
351 return translate_error(mData->mCodec->renderOutputBufferAndRelease(idx, timestampNs));
348 AMediaCodec_releaseOutputBufferAtTime( AMediaCodec *mData, size_t idx, int64_t timestampNs) argument
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.h87 size_t index, bool render, bool updatePTS, int64_t timestampNs);
H A Dandroid_media_MediaCodec.cpp316 size_t index, bool render, bool updatePTS, int64_t timestampNs) {
318 return mCodec->renderOutputBufferAndRelease(index, timestampNs);
1168 jint index, jboolean render, jboolean updatePTS, jlong timestampNs) {
1178 status_t err = codec->releaseOutputBuffer(index, render, updatePTS, timestampNs);
315 releaseOutputBuffer( size_t index, bool render, bool updatePTS, int64_t timestampNs) argument
1166 android_media_MediaCodec_releaseOutputBuffer( JNIEnv *env, jobject thiz, jint index, jboolean render, jboolean updatePTS, jlong timestampNs) argument
/frameworks/av/media/libstagefright/
H A DMediaCodec.cpp470 status_t MediaCodec::renderOutputBufferAndRelease(size_t index, int64_t timestampNs) { argument
474 msg->setInt64("timestampNs", timestampNs);
1982 int64_t timestampNs = 0; local
1983 if (msg->findInt64("timestampNs", &timestampNs)) {
1984 info->mNotify->setInt64("timestampNs", timestampNs);
1991 if (info->mData->meta()->findInt64("timeUs", &timestampNs)) {
1992 ALOGV("using buffer PTS of %" PRId64, timestampNs);
[all...]
H A DACodec.cpp4322 int64_t timestampNs = 0; local
4323 if (!msg->findInt64("timestampNs", &timestampNs)) {
4329 if (info->mData->meta()->findInt64("timeUs", &timestampNs)) {
4330 ALOGV("using buffer PTS of %" PRId64, timestampNs);
4331 timestampNs *= 1000;
4337 err = native_window_set_buffers_timestamp(mCodec->mNativeWindow.get(), timestampNs);
H A DAwesomePlayer.cpp119 void render(const void *data, size_t size, int64_t timestampNs) { argument
120 mTarget->render(data, size, timestampNs, NULL, mFormat);
/frameworks/av/include/media/stagefright/
H A DMediaCodec.h119 status_t renderOutputBufferAndRelease(size_t index, int64_t timestampNs);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.cpp512 int64_t timestampNs; local
513 CHECK(msg->findInt64("timestampNs", &timestampNs));
514 err = mCodec->renderOutputBufferAndRelease(bufferIx, timestampNs);
/frameworks/base/services/core/java/com/android/server/am/
H A DBatteryStatsService.java352 public void noteMobileRadioPowerState(int powerState, long timestampNs) { argument
355 mStats.noteMobileRadioPowerState(powerState, timestampNs);
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java3112 public void noteMobileRadioPowerState(int powerState, long timestampNs) { argument
3124 realElapsedRealtimeMs = timestampNs / (1000*1000);

Completed in 4892 milliseconds