Home
last modified time | relevance | path

Searched refs:getCurTime (Results 1 – 12 of 12) sorted by relevance

/frameworks/av/media/tests/benchmark/src/native/muxer/
DMuxer.cpp29 int64_t sTime = mStats->getCurTime(); in initMuxer()
45 int64_t eTime = mStats->getCurTime(); in initMuxer()
57 int64_t sTime = mStats->getCurTime(); in deInitMuxer()
60 int64_t eTime = mStats->getCurTime(); in deInitMuxer()
/frameworks/av/media/tests/benchmark/MediaBenchmarkTest/src/main/java/com/android/media/benchmark/library/
DMuxer.java42 long sTime = mStats.getCurTime(); in setUpMuxer()
46 long eTime = mStats.getCurTime(); in setUpMuxer()
85 long sTime = mStats.getCurTime(); in deInitMuxer()
88 long eTime = mStats.getCurTime(); in deInitMuxer()
DExtractor.java51 long sTime = mStats.getCurTime(); in setUpExtractor()
54 long eTime = mStats.getCurTime(); in setUpExtractor()
133 long sTime = mStats.getCurTime(); in deinitExtractor()
135 long eTime = mStats.getCurTime(); in deinitExtractor()
DDecoder.java164 long sTime = mStats.getCurTime(); in decode()
220 long eTime = mStats.getCurTime(); in decode()
284 long sTime = mStats.getCurTime(); in deInitCodec()
290 long eTime = mStats.getCurTime(); in deInitCodec()
DEncoder.java208 long sTime = mStats.getCurTime(); in encode()
273 long eTime = mStats.getCurTime(); in encode()
427 long sTime = mStats.getCurTime(); in deInitEncoder()
433 long eTime = mStats.getCurTime(); in deInitEncoder()
DStats.java57 public long getCurTime() { return System.nanoTime(); } in getCurTime() method in Stats
/frameworks/av/media/tests/benchmark/src/native/extractor/
DExtractor.cpp30 int64_t sTime = mStats->getCurTime(); in initExtractor()
37 int64_t eTime = mStats->getCurTime(); in initExtractor()
125 int64_t sTime = mStats->getCurTime(); in deInitExtractor()
130 int64_t eTime = mStats->getCurTime(); in deInitExtractor()
/frameworks/av/media/tests/benchmark/src/native/encoder/
DEncoder.cpp169 int64_t sTime = mStats->getCurTime(); in deInitCodec()
172 int64_t eTime = mStats->getCurTime(); in deInitCodec()
221 int64_t sTime = mStats->getCurTime(); in encode()
224 int64_t eTime = mStats->getCurTime(); in encode()
243 sTime = mStats->getCurTime(); in encode()
251 eTime = mStats->getCurTime(); in encode()
DC2Encoder.cpp72 int64_t sTime = mStats->getCurTime(); in createCodec2Component()
86 int64_t eTime = mStats->getCurTime(); in createCodec2Component()
246 int64_t sTime = mStats->getCurTime(); in deInitCodec()
250 int64_t eTime = mStats->getCurTime(); in deInitCodec()
/frameworks/av/media/tests/benchmark/src/native/decoder/
DC2Decoder.cpp55 int64_t sTime = mStats->getCurTime(); in createCodec2Component()
69 int64_t eTime = mStats->getCurTime(); in createCodec2Component()
150 int64_t sTime = mStats->getCurTime(); in deInitCodec()
154 int64_t eTime = mStats->getCurTime(); in deInitCodec()
DDecoder.cpp164 int64_t sTime = mStats->getCurTime(); in decode()
177 int64_t eTime = mStats->getCurTime(); in decode()
238 int64_t sTime = mStats->getCurTime(); in deInitCodec()
241 int64_t eTime = mStats->getCurTime(); in deInitCodec()
/frameworks/av/media/tests/benchmark/src/native/common/
DStats.h72 nsecs_t getCurTime() { return systemTime(CLOCK_MONOTONIC); } in getCurTime() function