/hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/ |
OMX_Core.h | 506 The application should return from this call within 5 msec to avoid
545 The application should return from this call within 5 msec.
574 The application should return from this call within 5 msec.
650 component will return from this call within 5 msec.
[all...] |
/hardware/ti/omap4xxx/domx/omx_core/inc/ |
OMX_Core.h | 506 The application should return from this call within 5 msec to avoid 545 The application should return from this call within 5 msec. 574 The application should return from this call within 5 msec. 650 component will return from this call within 5 msec. [all...] |
/frameworks/av/include/media/ |
MediaPlayerInterface.h | 144 virtual status_t seekTo(int msec) = 0; 145 virtual status_t getCurrentPosition(int *msec) = 0; 146 virtual status_t getDuration(int *msec) = 0;
|
/frameworks/base/core/java/android/webkit/ |
HTML5Audio.java | 310 private void seek(int msec) { 311 if (mProcessingOnEnd == true && mState == COMPLETE && msec == 0) { 315 mMediaPlayer.seekTo(msec);
|
/cts/suite/audio_quality/test_description/ |
dut_playback_spectrum.xml | 20 <!-- input: peak amplitude, duration in msec, sampling rate, high frequency, output: generated sound-->
|
dut_recording_spectrum.xml | 20 <!-- input: peak amplitude, duration in msec, sampling rate, high frequency, output: generated sound-->
|
/cts/suite/audio_quality/test_description/experimental/ |
dut_playback_spectrum_chirp.xml | 20 <!-- input: peak amplitude, duration in msec, sampling rate, high frequency, output: generated sound-->
|
ref_playback_spectrum.xml | 20 <!-- input: peak amplitude, duration in msec, sampling rate, high frequency, output: generated sound-->
|
ref_playback_spectrum_chirp.xml | 20 <!-- input: peak amplitude, duration in msec, sampling rate, high frequency, output: generated sound-->
|
/external/netperf/ |
hist.h | 20 0 - 9 in increments of 1 msec
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/ |
DisplayLog.java | 97 long msec = event.sec * 1000L; local 98 c.setTimeInMillis(msec); 151 long msec = event.sec * 1000L; local 152 c.setTimeInMillis(msec);
|
DisplaySync.java | 137 long msec = event.sec * 1000L + (event.nsec / 1000000L); local 138 mDatasetsSyncTickle[auth].addOrUpdate(new FixedMillisecond(msec), -1); 290 long msec = event.sec * 1000L + (event.nsec / 1000000L); local 291 mDatasetError.addOrUpdate(new FixedMillisecond(msec), -1);
|
/dalvik/vm/ |
Sync.cpp | 553 static void absoluteTime(s8 msec, s4 nsec, struct timespec *ts) 567 endSec = ts->tv_sec + msec / 1000; 573 ts->tv_nsec = (ts->tv_nsec + (msec % 1000) * 1000000) + nsec; 583 s8 msec, s4 nsec) 587 absoluteTime(msec, nsec, &ts); 620 static void waitMonitor(Thread* self, Monitor* mon, s8 msec, s4 nsec, 641 if (msec < 0 || nsec < 0 || nsec > 999999) { 649 if (msec == 0 && nsec == 0) { 652 absoluteTime(msec, nsec, &ts); 1070 void dvmObjectWait(Thread* self, Object *obj, s8 msec, s4 nsec [all...] |
/external/chromium/base/threading/ |
thread_unittest.cc | 35 explicit SleepSome(int msec) : msec_(msec) {
|
/external/kernel-headers/original/linux/ |
kd.h | 137 int delay; /* in msec; <= 0: don't change */ 138 int period; /* in msec; <= 0: don't change */
|
/external/skia/src/animator/ |
SkAnimateBase.cpp | 20 SK_MEMBER(begin, MSec), 22 SK_MEMBER(dur, MSec),
|
/external/sonivox/arm-fm-22k/lib_src/ |
eas_otadata.h | 61 EAS_I32 time; /* current time in 256ths of a msec */ 62 EAS_U32 tick; /* length of 32nd note in 256th of a msec */
|
eas_rtttldata.h | 55 EAS_I32 time; /* current time in 256ths of a msec */ 56 EAS_I32 tick; /* length of 32nd note in 256th of a msec */
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
eas_otadata.h | 61 EAS_I32 time; /* current time in 256ths of a msec */ 62 EAS_U32 tick; /* length of 32nd note in 256th of a msec */
|
eas_rtttldata.h | 55 EAS_I32 time; /* current time in 256ths of a msec */ 56 EAS_I32 tick; /* length of 32nd note in 256th of a msec */
|
/external/sonivox/arm-wt-22k/lib_src/ |
eas_otadata.h | 61 EAS_I32 time; /* current time in 256ths of a msec */ 62 EAS_U32 tick; /* length of 32nd note in 256th of a msec */
|
eas_rtttldata.h | 55 EAS_I32 time; /* current time in 256ths of a msec */ 56 EAS_I32 tick; /* length of 32nd note in 256th of a msec */
|
/frameworks/wilhelm/src/android/ |
android_AudioSfDecoder.h | 63 virtual void getPositionMsec(int* msec); //msec != NULL, ANDROID_UNKNOWN_TIME if unknown
|
android_GenericMediaPlayer.cpp | 283 // msec != NULL 285 // *msec == 288 void GenericMediaPlayer::getPositionMsec(int* msec) { 293 if (player == 0 || player->getCurrentPosition(msec) != NO_ERROR) { 294 *msec = ANDROID_UNKNOWN_TIME; 564 int msec = 0; local 565 if (OK == mPlayer->getDuration(&msec)) { 567 mDurationMsec = msec;
|
/frameworks/wilhelm/tests/examples/ |
slesTestDecodeToBuffQueue.cpp | 152 SLmillisecond msec; local 153 result = (*caller)->GetPosition(caller, &msec); 157 fprintf(stdout, "SL_PLAYEVENT_HEADATEND current position=%u ms\n", msec); 162 fprintf(stdout, "SL_PLAYEVENT_HEADATNEWPOS current position=%u ms\n", msec); 166 fprintf(stdout, "SL_PLAYEVENT_HEADATMARKER current position=%u ms\n", msec); 181 SLmillisecond msec; local 182 SLresult result = (*pCntxt->playItf)->GetPosition(pCntxt->playItf, &msec); 184 printf("DecPlayCallback called (iteration %d): current position=%u ms\n", counter, msec);
|