/hardware/qcom/display/msm8960/libgenlock/ |
D | genlock.cpp | 68 int lockType, int timeout, in perform_lock_unlock_operation() argument 88 lock.timeout = timeout; in perform_lock_unlock_operation() 277 int timeout) in genlock_lock_buffer() argument 288 if (0 == timeout) { in genlock_lock_buffer() 292 ret = perform_lock_unlock_operation(buffer_handle, kLockType, timeout, 0); in genlock_lock_buffer() 322 genlock_status_t genlock_wait(native_handle_t *buffer_handle, int timeout) { in genlock_wait() argument 336 if (0 == timeout) in genlock_wait() 341 lock.timeout = timeout; in genlock_wait() 360 int timeout) { in genlock_write_to_read() argument 363 if (0 == timeout) { in genlock_write_to_read() [all …]
|
D | genlock.h | 97 int timeout); 114 genlock_status_t genlock_wait(native_handle_t *buffer_handle, int timeout); 124 int timeout);
|
/hardware/qcom/sdm845/display/libhistogram/ |
D | color_sampling_tool.cpp | 48 int timeout = -1; in main() local 52 case 't': timeout = strtol(optarg, NULL, 10); break; in main() 62 if (timeout > 0) { in main() 63 std::cout << "Sampling for " << timeout << " seconds.\n"; in main() 65 request.tv_sec = timeout; in main()
|
/hardware/interfaces/weaver/1.0/vts/functional/ |
D | VtsHalWeaverV1_0TargetTest.cpp | 146 uint32_t timeout; in TEST_F() local 151 timeout = r.timeout; in TEST_F() 157 EXPECT_EQ(timeout, 0u); in TEST_F() 178 uint32_t timeout; in TEST_F() local 183 timeout = r.timeout; in TEST_F() 189 EXPECT_EQ(timeout, 0u); in TEST_F() 261 uint32_t timeout; in TEST_F() local 267 timeout = r.timeout; in TEST_F() 273 EXPECT_EQ(timeout, 0u); in TEST_F() 337 uint32_t timeout; in TEST_F() local [all …]
|
/hardware/interfaces/bluetooth/1.0/default/ |
D | async_fd_watcher.cc | 55 const std::chrono::milliseconds timeout, in ConfigureTimeout() argument 61 timeout_ms_ = timeout; in ConfigureTimeout() 141 struct timeval timeout; in ThreadRoutine() local 144 timeout.tv_sec = timeout_ms_.count() / 1000; in ThreadRoutine() 145 timeout.tv_usec = (timeout_ms_.count() % 1000) * 1000; in ThreadRoutine() 146 timeout_ptr = &timeout; in ThreadRoutine()
|
/hardware/ril/libril/ |
D | ril_event.cpp | 86 dlog(" timeout = %ds + %dus", (int)ev->timeout.tv_sec, (int)ev->timeout.tv_usec); in dump_event() 170 while ((tev != &timer_list) && (timercmp(&now, &tev->timeout, >))) { in processTimeouts() 230 (int)tev->timeout.tv_sec, (int)tev->timeout.tv_usec); in calcNextTimeout() 231 if (timercmp(&tev->timeout, &now, >)) { in calcNextTimeout() 232 timersub(&tev->timeout, &now, tv); in calcNextTimeout() 299 timeradd(&now, tv, &ev->timeout); in ril_timer_add() 302 while (timercmp(&list->timeout, &ev->timeout, < ) in ril_timer_add()
|
D | ril_event.h | 30 struct timeval timeout; member
|
/hardware/interfaces/health/storage/1.0/vts/functional/ |
D | VtsHalHealthStorageV1_0TargetTest.cpp | 94 void waitForResult(std::chrono::duration<R, P> timeout, Result expected) { in waitForResult() argument 96 ASSERT_TRUE(waitLocked(&lock, timeout)) << "timeout after " << toString(timeout); in waitForResult() 138 bool ping(std::chrono::duration<R, P> timeout) { in ping() argument 147 return pingFlag->wait(timeout); in ping()
|
/hardware/interfaces/health/2.0/default/ |
D | healthd_common.cpp | 215 int timeout = awake_poll_interval; in healthd_mainloop() local 224 if (timeout < 0 || (mode_timeout > 0 && mode_timeout < timeout)) timeout = mode_timeout; in healthd_mainloop() 225 nevents = epoll_wait(epollfd, events, eventct, timeout); in healthd_mainloop()
|
/hardware/interfaces/health/storage/1.0/ |
D | IStorage.hal | 33 * specified timeout, the implementation must call IGarbageCollect.finish 36 * If garbage collection does not finish within the specified timeout, 40 * @param timeoutSeconds timeout in seconds. The implementation must 41 * return after the timeout is reached.
|
/hardware/interfaces/broadcastradio/common/vts/utils/ |
D | call-barrier.cpp | 33 bool CallBarrier::waitForCall(std::chrono::milliseconds timeout) { in waitForCall() argument 38 auto status = mCond.wait_for(lk, timeout); in waitForCall()
|
/hardware/interfaces/broadcastradio/common/vts/utils/include/broadcastradio-vts-utils/ |
D | pointer-utils.h | 34 static void clearAndWait(sp<T>& ptr, std::chrono::milliseconds timeout) { in clearAndWait() argument 42 auto limit = steady_clock::now() + timeout; in clearAndWait()
|
D | mock-timeout.h | 142 #define EXPECT_TIMEOUT_CALL_WAIT(obj, Method, timeout) \ argument 147 auto status = (obj).egmock_cond_##Method.wait_for(lk, timeout); \
|
D | call-barrier.h | 46 bool waitForCall(std::chrono::milliseconds timeout);
|
/hardware/interfaces/gatekeeper/1.0/default/ |
D | Gatekeeper.cpp | 76 rsp.timeout = ret; in enroll() 109 rsp.timeout = ret; in verify() 126 rsp.timeout = ret; in deleteUser() 145 rsp.timeout = ret; in deleteAllUsers()
|
/hardware/qcom/display/msm8994/libqdutils/ |
D | idle_invalidator.cpp | 85 bool IdleInvalidator::setIdleTimeout(const uint32_t& timeout) { in setIdleTimeout() argument 87 __FUNCTION__, timeout); in setIdleTimeout() 99 snprintf(strSleepTime, sizeof(strSleepTime), "%d", timeout); in setIdleTimeout()
|
D | idle_invalidator.h | 50 bool setIdleTimeout(const uint32_t& timeout);
|
/hardware/interfaces/gatekeeper/1.0/ |
D | types.hal | 26 ERROR_RETRY_TIMEOUT = -2, // operation should be retried after timeout 37 * retry timeout in ms, if code == ERROR_RETRY_TIMEOUT 40 uint32_t timeout;
|
/hardware/interfaces/camera/device/3.5/default/ |
D | ExternalCameraDeviceSession.cpp | 119 std::chrono::milliseconds timeout = std::chrono::milliseconds(kReqProcTimeoutMs); in waitForBufferRequestDone() local 120 auto st = mRequestDoneCond.wait_for(lk, timeout); in waitForBufferRequestDone() 121 if (st == std::cv_status::timeout) { in waitForBufferRequestDone() 140 std::chrono::milliseconds timeout = std::chrono::milliseconds(kReqWaitTimeoutMs); in waitForNextRequest() local 141 auto st = mRequestCond.wait_for(lk, timeout); in waitForNextRequest() 142 if (st == std::cv_status::timeout) { in waitForNextRequest()
|
/hardware/invensense/65xx/libsensors_iio/ |
D | sensors_mpl.cpp | 95 int batch(int handle, int flags, int64_t period_ns, int64_t timeout); 320 int64_t timeout) in batch() argument 323 return mSensor->batch(handle, flags, period_ns, timeout); in batch() 367 int handle, int flags, int64_t period_ns, int64_t timeout) in poll__batch() argument 370 return ctx->batch(handle, flags, period_ns, timeout); in poll__batch()
|
/hardware/invensense/6515/libsensors_iio/ |
D | sensors_mpl.cpp | 118 int batch(int handle, int flags, int64_t period_ns, int64_t timeout); 358 int64_t timeout) in batch() argument 361 return mSensor->batch(handle, flags, period_ns, timeout); in batch() 429 int handle, int flags, int64_t period_ns, int64_t timeout) in poll__batch() argument 432 return ctx->batch(handle, flags, period_ns, timeout); in poll__batch()
|
/hardware/qcom/sdm845/gps/msm8960/loc_api/libloc_api_50001/ |
D | loc_eng_ni.cpp | 148 …: notif_type: %d, timeout: %d, default_resp: %d", notif->ni_type, notif->timeout, notif->default_r… in loc_eng_ni_request_handler() 159 …loc_eng_ni_data_p->respTimeLeft = 5 + (notif->timeout != 0 ? notif->timeout : LOC_NI_NO_RESPONSE_T… in loc_eng_ni_request_handler()
|
/hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/ |
D | loc_eng_ni.cpp | 148 …: notif_type: %d, timeout: %d, default_resp: %d", notif->ni_type, notif->timeout, notif->default_r… in loc_eng_ni_request_handler() 159 …loc_eng_ni_data_p->respTimeLeft = 5 + (notif->timeout != 0 ? notif->timeout : LOC_NI_NO_RESPONSE_T… in loc_eng_ni_request_handler()
|
/hardware/interfaces/usb/gadget/1.0/ |
D | IUsbGadget.hal | 31 * @param timeout The maximum time (in milliseconds) within which the 36 uint64_t timeout);
|
/hardware/google/pixel/thermal/utils/ |
D | thermal_watcher.cpp | 150 int timeout = (thermal_triggered_ || is_polling_) ? kMinPollIntervalMs : kUeventPollTimeoutMs; in threadLoop() local 151 if (looper_->pollOnce(timeout, &fd, nullptr, nullptr) >= 0) { in threadLoop()
|