Searched refs:ms (Results 1 - 14 of 14) sorted by relevance

/hardware/interfaces/broadcastradio/1.1/tests/
H A DWorkerThread_test.cpp50 100ms);
52 sleep_for(150ms);
56 ASSERT_EQ_WITH_TOLERANCE(delta, 100ms, 50ms);
64 thread.schedule([&]() { executed2 = true; }, 100ms);
65 thread.schedule([&]() { executed1 = true; }, 25ms);
67 sleep_for(50ms);
69 sleep_for(100ms);
85 50ms);
92 400ms);
[all...]
/hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-test/src/
H A Dcam_semaphore_tests.cpp27 //10 ms is about standard timer resolution for most non-RTOS.
30 static inline void timespec_add_ms(timespec& ts, size_t ms) { argument
31 ts.tv_sec += ms / 1000;
32 ts.tv_nsec += (ms % 1000) * 1000000;
/hardware/qcom/display/msm8996/sdm/include/utils/
H A Dlocker.h142 int WaitFinite(int ms) { argument
146 ts.tv_sec = tv.tv_sec + ms/1000;
147 ts.tv_nsec = tv.tv_usec*1000 + (ms%1000)*1000000;
/hardware/qcom/display/msm8998/sdm/include/utils/
H A Dlocker.h142 int WaitFinite(int ms) { argument
146 ts.tv_sec = tv.tv_sec + ms/1000;
147 ts.tv_nsec = tv.tv_usec*1000 + (ms%1000)*1000000;
/hardware/qcom/display/sdm845/sdm/include/utils/
H A Dlocker.h142 int WaitFinite(int ms) { argument
146 ts.tv_sec = tv.tv_sec + ms/1000;
147 ts.tv_nsec = tv.tv_usec*1000 + (ms%1000)*1000000;
/hardware/interfaces/tests/multithread/1.0/default/
H A DMultithread.h36 static constexpr auto kTimeoutDuration = 100ms;
/hardware/libhardware/tests/input/evdev/
H A DInputHub_test.cpp86 // Call wake() after 100ms.
87 auto f = delay_async(100ms, [&]() { EXPECT_EQ(OK, mInputHub->wake()); });
107 // Create a new file in tempDir after 100ms.
110 auto f = delay_async(100ms,
148 auto f = delay_async(100ms, [&]() { deviceFile.reset(); });
171 auto inputDelayMs = 100ms;
229 auto f = delay_async(100ms,
/hardware/akm/AK8975_FS/libsensors/
H A DKionixSensor.cpp127 int ms; local
136 ms = delay_ns / 1000000;
137 if (ioctl(dev_fd, KIONIX_IOCTL_UPDATE_ODR, &ms)) {
/hardware/qcom/camera/msm8998/usbcamcore/src/
H A DQCameraMjpegDecode.cpp130 static int mjpegd_cond_timedwait(pthread_cond_t *p_cond, pthread_mutex_t *p_mutex, uint32_t ms);
485 ALOGI("%s: decoder_test: decoding aborted successfully after %d ms", __func__, diff);
491 "decode time: %d ms", __func__, diff);
497 ALOGI("%s: decode time: %d ms (%d frame(s), total=%dms, avg=%dms/frame)",
681 int mjpegd_cond_timedwait(pthread_cond_t *p_cond, pthread_mutex_t *p_mutex, uint32_t ms) argument
687 if (ms >= 1000) {
688 ts.tv_sec += (ms/1000);
689 ts.tv_nsec += ((ms%1000) * 1000000);
691 ts.tv_nsec += (ms * 1000000);
/hardware/interfaces/broadcastradio/1.1/default/
H A DTuner.cpp48 milliseconds config = 50ms;
49 milliseconds scan = 200ms;
50 milliseconds step = 100ms;
51 milliseconds tune = 150ms;
/hardware/qcom/camera/msm8998/QCamera2/stack/mm-lib2d-interface/src/
H A Dmm_lib2d.c74 pthread_mutex_t *p_mutex, int32_t ms);
/hardware/interfaces/broadcastradio/1.1/vts/functional/
H A DVtsHalBroadcastradioV1_1TargetTest.cpp130 constexpr auto step = 10ms;
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
H A Dbcmutils.h380 extern void bcm_mdelay(uint ms);
/hardware/broadcom/wlan/bcmdhd/dhdutil/
H A Dbcmutils.c1089 bcm_mdelay(uint ms) argument
1093 for (i = 0; i < ms; i++) {

Completed in 387 milliseconds