HomeSort by relevance Sort by last modified time
    Searched refs:msec (Results 1 - 25 of 263) sorted by null

1 2 3 4 5 6 7 8 91011

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
Timeout.java 28 * @param msec
30 public Timeout(long msec) {
31 mExpiredTime = System.currentTimeMillis() + msec;
P2pBroadcastReceiverTest.java 70 * @param msec timeout value.
75 public synchronized WifiP2pDevice waitDeviceFound(String targetAddr, long msec)
78 Timeout t = new Timeout(msec);
97 * @param msec timeout value
102 public synchronized WifiP2pInfo waitConnectionNotice(long msec) throws InterruptedException {
103 Timeout t = new Timeout(msec);
117 * @param msec
121 public synchronized boolean waitPeerConnected(String targetAddr, long msec)
124 Timeout t = new Timeout(msec);
144 * @param msec
    [all...]
ListenerTest.java 61 * @param msec timeout.
65 public boolean check(ListenerArgument arg, long msec) throws InterruptedException {
68 return check(argList, msec);
76 * @param msec timeout.
80 public synchronized boolean check(List<ListenerArgument> argList, long msec)
102 waitCallback(msec);
160 * @param msec
162 private synchronized void waitCallback(long msec) throws InterruptedException {
163 Timeout t = new Timeout(msec);
  /frameworks/base/graphics/java/android/graphics/
Interpolator.java 69 * @param msec The time (in mililiseconds) for this key frame. Based on the
73 public void setKeyFrame(int index, int msec, float[] values) {
74 setKeyFrame(index, msec, values, null);
82 * @param msec The time (in mililiseconds) for this key frame. Based on the
87 public void setKeyFrame(int index, int msec, float[] values, float[] blend) {
97 nativeSetKeyFrame(native_instance, index, msec, values, blend);
118 * Calls timeToValues(msec, values) with the msec set to now (by calling
126 * Given a millisecond time value (msec), return the interpolated values and
131 * @param msec The time (in milliseconds) used to sample into th
    [all...]
  /external/vboot_reference/firmware/lib/
vboot_audio.c 48 static uint64_t VbMsecToTicks(uint16_t msec) {
49 return ticks_per_msec * msec;
141 this_msecs = hdr->notes[i].msec ;
184 notebuf[hdr->count].msec = this_msecs;
260 uint16_t msec = 0; local
267 msec = audio->music_notes[audio->next_note].msec;
268 audio->play_until += VbMsecToTicks(msec);
283 } else if (freq && msec) {
284 VbExBeep(msec, freq)
    [all...]
  /external/vboot_reference/tests/
vboot_api_devmode_tests.c 33 uint16_t msec; member in struct:__anon26002
231 VBDEBUG((" VbExKeyboardRead() - returning %d at %d msec\n",
237 VBDEBUG((" VbExKeyboardRead() - returning %d at %d msec\n",
242 void VbExSleepMs(uint32_t msec) {
243 current_ticks += (uint64_t)msec * TICKS_PER_MSEC;
245 VBDEBUG(("VbExSleepMs(%d) -> %d\n", msec, current_time));
252 VbError_t VbExBeep(uint32_t msec, uint32_t frequency) {
253 VBDEBUG(("VbExBeep(%d, %d) at %d msec\n", msec, frequency, current_time));
256 msec == expected_event[current_event].msec &
    [all...]
vboot_audio_tests.c 85 if ( a[i].msec != b[i].msec || a[i].frequency != b[i].frequency)
155 a->music_notes[use_hdr->count].msec == 28700 &&
162 use_notes[6].msec = 10;
  /external/avahi/avahi-common/
timeval.c 86 struct timeval *avahi_elapse_time(struct timeval *tv, unsigned msec, unsigned jitter) {
91 if (msec)
92 avahi_timeval_add(tv, (AvahiUsec) msec*1000);
  /dalvik/dx/tests/131-perf/
run 78 msec=`expr $nsec / 1000000`
79 echo "Classes/msec $TEST_SIZE $msec"
  /external/vboot_reference/firmware/lib/include/
vboot_audio_private.h 15 uint16_t msec; member in struct:VbDevMusicNote
  /frameworks/base/core/jni/android/graphics/
Interpolator.cpp 24 static void Interpolator_setKeyFrame(JNIEnv* env, jobject clazz, jlong interpHandle, jint index, jint msec, jfloatArray valueArray, jfloatArray blendArray)
37 interp->setKeyFrame(index, msec, scalars, blend);
50 static jint Interpolator_timeToValues(JNIEnv* env, jobject clazz, jlong interpHandle, jint msec, jfloatArray valueArray)
56 result = interp->timeToValues(msec, (SkScalar*)values);
  /external/skia/gm/
SkAnimTimer.h 66 * automatically, so that repeated calls to msec() or secs() will always return the
81 SkMSec msec() const { return fCurrTime - fBaseTime; } function in class:SkAnimTimer
88 return this->msec() * 0.001;
  /toolchain/binutils/binutils-2.25/bfd/
dwarf1.c 274 asection *msec; local
277 msec = bfd_get_section_by_name (stash->abfd, ".line");
278 if (! msec)
281 size = msec->rawsize ? msec->rawsize : msec->size;
284 (stash->abfd, msec, NULL, stash->syms);
472 asection *msec; local
481 msec = bfd_get_section_by_name (abfd, ".debug");
482 if (! msec)
    [all...]
coff-aux.c 112 asection *msec = t->u.def.section; local
115 if (bfd_is_abs_section (msec) && !bfd_is_abs_section (section))
121 else if (bfd_is_abs_section (section) && !bfd_is_abs_section (msec))
  /frameworks/av/include/media/
mediaplayer.h 236 status_t seekTo(int msec);
237 status_t getCurrentPosition(int *msec);
238 status_t getDuration(int *msec);
260 status_t seekTo_l(int msec);
262 status_t getDuration_l(int *msec);
IMediaPlayer.h 68 virtual status_t seekTo(int msec) = 0;
69 virtual status_t getCurrentPosition(int* msec) = 0;
70 virtual status_t getDuration(int* msec) = 0;
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDriver.h 56 virtual status_t seekTo(int msec);
57 virtual status_t getCurrentPosition(int *msec);
58 virtual status_t getDuration(int *msec);
  /hardware/qcom/gps/msm8960/utils/
loc_timer.c 115 int loc_timer_start(unsigned int msec, loc_timer_callback cb_func,
123 if(cb_func == NULL || msec == 0) {
138 t->time_msec = msec;
  /external/icu/icu4c/source/test/intltest/
tzrulets.h 49 int32_t hour=0, int32_t min=0, int32_t sec=0, int32_t msec=0);
  /external/v8/src/base/platform/
semaphore.cc 194 int64_t msec = (end - now).InMilliseconds();
195 if (msec >= static_cast<int64_t>(INFINITE)) {
204 native_handle_, (msec < 0) ? 0 : static_cast<DWORD>(msec));
  /frameworks/base/libs/common_time/
utils.h 33 // Set a timeout which should occur msec milliseconds from now.
35 void setTimeout(int msec);
  /external/blktrace/btt/
q2d.c 38 long msec = (long)(q2d / 0.001); local
40 switch (msec) {
  /frameworks/av/media/libmediaplayerservice/
TestPlayerStub.h 90 virtual status_t seekTo(int msec) {return mPlayer->seekTo(msec);}
  /external/libevent/
poll.c 122 long msec = -1; local
158 msec = evutil_tv_to_msec(tv);
159 if (msec < 0 || msec > INT_MAX)
160 msec = INT_MAX;
165 res = poll(event_set, nfds, msec);
  /frameworks/av/media/libmedia/
mediaplayer.cpp 465 status_t MediaPlayer::getCurrentPosition(int *msec)
472 *msec = mCurrentPosition;
475 return mPlayer->getCurrentPosition(msec);
480 status_t MediaPlayer::getDuration_l(int *msec)
495 if (msec) {
496 *msec = durationMs;
505 status_t MediaPlayer::getDuration(int *msec)
508 return getDuration_l(msec);
511 status_t MediaPlayer::seekTo_l(int msec)
513 ALOGV("seekTo %d", msec);
    [all...]

Completed in 1843 milliseconds

1 2 3 4 5 6 7 8 91011