/third_party/alsa-lib/src/mixer/ |
H A D | mixer.c | 768 * \param timeout maximum time in milliseconds to wait 771 int snd_mixer_wait(snd_mixer_t *mixer, int timeout) in snd_mixer_wait() argument 788 err = poll(pfds, (unsigned int) count, timeout); in snd_mixer_wait()
|
/third_party/backends/backend/pixma/ |
H A D | pixma_common.c | 668 /* Write timeout is too low? */ in pixma_cmd_transaction() 683 Is 8 seconds timeout enough? This affects ALL commands that use in pixma_cmd_transaction() 694 /* 1s timeout in pixma_cmd_transaction() 696 pixma_read() has an internal timeout of 1 sec. */ in pixma_cmd_transaction() 802 s->rec_tmo = 8; /* set receive timeout to 8 seconds */ in pixma_open() 1051 pixma_wait_event (pixma_t * s, int timeout /*ms */ ) in pixma_wait_event() 1056 s->ops->wait_event (s, timeout); in pixma_wait_event()
|
/third_party/FreeBSD/sys/dev/usb/net/ |
H A D | if_axe.c | 168 .timeout = 10000, /* 10 seconds */ 177 .timeout = 0, /* no timeout */
|
/third_party/FreeBSD/sys/dev/usb/input/ |
H A D | uhid.c | 375 .timeout = 1000, /* 1 second */ 384 .timeout = 1000, /* 1 second */
|
/third_party/mesa3d/src/egl/drivers/dri2/ |
H A D | platform_ohos.c | 242 * Waits indefinitely if timeout < 0. in ohos_window_dequeue_buffer() 244 int timeout = -1; in ohos_window_dequeue_buffer() local 245 sync_wait(fence_fd, timeout); in ohos_window_dequeue_buffer() 1008 * SYNC_IOC_WAIT waits forever if timeout < 0 in ohos_display_shared_buffer()
|
/third_party/mesa3d/src/gallium/winsys/radeon/drm/ |
H A D | radeon_drm_cs.c | 809 uint64_t timeout) in radeon_fence_wait() 811 return ws->buffer_wait(ws, (struct pb_buffer*)fence, timeout, in radeon_fence_wait() 807 radeon_fence_wait(struct radeon_winsys *ws, struct pipe_fence_handle *fence, uint64_t timeout) radeon_fence_wait() argument
|
/third_party/mesa3d/src/gallium/winsys/svga/drm/ |
H A D | vmw_screen_svga.c | 436 uint64_t timeout, in vmw_svga_winsys_fence_finish() 441 return vmw_fence_finish(vws, fence, timeout, flag); in vmw_svga_winsys_fence_finish() 434 vmw_svga_winsys_fence_finish(struct svga_winsys_screen *sws, struct pipe_fence_handle *fence, uint64_t timeout, unsigned flag) vmw_svga_winsys_fence_finish() argument
|
/third_party/node/src/ |
H A D | spawn_sync.cc | 489 // which implicitly stops it, so there is no risk that the timeout callback in TryInitializeAndRunLoop() 626 // Stop the timeout timer immediately. in Kill() 826 int64_t timeout = js_timeout->IntegerValue(context).FromJust(); in ParseOptions() local 827 timeout_ = static_cast<uint64_t>(timeout); in ParseOptions()
|
/third_party/node/test/cctest/ |
H A D | test_inspector_socket.cc | 52 Timeout timeout(&loop); \ 53 while ((condition) && !timeout.timed_out) { \
|
/third_party/python/Lib/test/libregrtest/ |
H A D | main.py | 460 if self.ns.timeout: 461 msg += " (timeout: %s)" % format_duration(self.ns.timeout) 736 # on threading._shutdown() call: put a timeout
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | validationES3_autogen.h | 88 GLuint64 timeout); 575 GLuint64 timeout);
|
/third_party/skia/third_party/externals/angle2/src/libGL/ |
H A D | entry_points_gl_3_autogen.h | 223 ANGLE_EXPORT GLenum GL_APIENTRY GL_ClientWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout); 278 ANGLE_EXPORT void GL_APIENTRY GL_WaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout);
|
H A D | entry_points_gl_3_autogen.cpp | 2707 GLenum GL_APIENTRY GL_ClientWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout) in GL_ClientWaitSync() argument 2711 "context = %d, sync = 0x%016" PRIxPTR ", flags = %s, timeout = %llu", CID(context), in GL_ClientWaitSync() 2713 static_cast<unsigned long long>(timeout)); in GL_ClientWaitSync() 2721 sync, flags, timeout)); in GL_ClientWaitSync() 2724 returnValue = context->clientWaitSync(sync, flags, timeout); in GL_ClientWaitSync() 2730 ANGLE_CAPTURE(ClientWaitSync, isCallValid, context, sync, flags, timeout, returnValue); in GL_ClientWaitSync() 3257 void GL_APIENTRY GL_WaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout) in GL_WaitSync() argument 3260 EVENT(context, GLWaitSync, "context = %d, sync = 0x%016" PRIxPTR ", flags = %s, timeout = %llu", in GL_WaitSync() 3263 static_cast<unsigned long long>(timeout)); in GL_WaitSync() 3270 ValidateWaitSync(context, angle::EntryPoint::GLWaitSync, sync, flags, timeout)); in GL_WaitSync() [all...] |
/third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
H A D | egl_ext_stubs.cpp | 26 EGLTimeKHR timeout) in ClientWaitSyncKHR() 33 thread, syncObject->clientWait(display, currentContext, flags, timeout, &syncStatus), in ClientWaitSyncKHR() 22 ClientWaitSyncKHR(Thread *thread, Display *display, Sync *syncObject, EGLint flags, EGLTimeKHR timeout) ClientWaitSyncKHR() argument
|
H A D | egl_stubs.cpp | 94 EGLTime timeout) in ClientWaitSync() 101 thread, syncObject->clientWait(display, currentContext, flags, timeout, &syncStatus), in ClientWaitSync() 90 ClientWaitSync(Thread *thread, Display *display, Sync *syncObject, EGLint flags, EGLTime timeout) ClientWaitSync() argument
|
/third_party/python/Lib/logging/ |
H A D | config.py | 905 self.timeout = 1 915 self.timeout)
|
/third_party/python/Python/ |
H A D | pytime.c | 1362 _PyDeadline_Init(_PyTime_t timeout) in _PyDeadline_Init() argument 1365 return _PyTime_Add(now, timeout); in _PyDeadline_Init()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/p2p/ |
H A D | p2p.h | 167 * peer_config_timeout - Peer configuration timeout (in 10 msec units) 978 * (P2P_SC_SUCCESS) indicating success or -1 to indicate a timeout or a 1225 * @timeout: Timeout for find operation in seconds or 0 for no timeout 1241 int p2p_find(struct p2p_data *p2p, unsigned int timeout, 1273 * @timeout: Listen state duration in milliseconds 1281 int p2p_listen(struct p2p_data *p2p, unsigned int timeout); 1509 * either due to failed WPS provisioning or due to 15 second timeout during
|
/third_party/vk-gl-cts/framework/opengl/simplereference/ |
H A D | sglrContextWrapper.hpp | 267 deUint32 glClientWaitSync (void* sync, deUint32 flags, deUint64 timeout); 268 void glWaitSync (void* sync, deUint32 flags, deUint64 timeout);
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/p2p/ |
H A D | p2p.h | 169 * peer_config_timeout - Peer configuration timeout (in 10 msec units) 1000 * (P2P_SC_SUCCESS) indicating success or -1 to indicate a timeout or a 1250 * @timeout: Timeout for find operation in seconds or 0 for no timeout 1267 int p2p_find(struct p2p_data *p2p, unsigned int timeout, 1300 * @timeout: Listen state duration in milliseconds 1308 int p2p_listen(struct p2p_data *p2p, unsigned int timeout); 1536 * either due to failed WPS provisioning or due to 15 second timeout during
|
/third_party/libfuse/lib/ |
H A D | fuse.c | 1527 struct timespec timeout; in fuse_interrupt() local 1531 timeout.tv_sec = now.tv_sec + 1; in fuse_interrupt() 1532 timeout.tv_nsec = now.tv_usec * 1000; in fuse_interrupt() 1533 pthread_cond_timedwait(&d->cond, &f->lock, &timeout); in fuse_interrupt() 4506 unsigned timeout; in fuse_session_loop_remember() local 4510 timeout = next_clean - now.tv_sec; in fuse_session_loop_remember() 4512 timeout = 0; in fuse_session_loop_remember() 4514 res = poll(&fds, 1, timeout * 1000); in fuse_session_loop_remember() 4530 timeout = fuse_clean_cache(f); in fuse_session_loop_remember() 4532 next_clean = now.tv_sec + timeout; in fuse_session_loop_remember() [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | libVulkan.cpp | 1404 VKAPI_ATTR VkResult VKAPI_CALL vkWaitForFences(VkDevice device, uint32_t fenceCount, const VkFence *pFences, VkBool32 waitAll, uint64_t timeout) in vkWaitForFences() argument 1406 TRACE("(VkDevice device = %p, uint32_t fenceCount = %d, const VkFence* pFences = %p, VkBool32 waitAll = %d, uint64_t timeout = %" PRIu64 ")", in vkWaitForFences() 1407 device, int(fenceCount), pFences, int(waitAll), timeout); in vkWaitForFences() 1409 return vk::Cast(device)->waitForFences(fenceCount, pFences, waitAll, timeout); in vkWaitForFences() 1548 VKAPI_ATTR VkResult VKAPI_CALL vkWaitSemaphores(VkDevice device, const VkSemaphoreWaitInfo *pWaitInfo, uint64_t timeout) in vkWaitSemaphores() argument 1550 TRACE("(VkDevice device = %p, const VkSemaphoreWaitInfo *pWaitInfo = %p, uint64_t timeout = %" PRIu64 ")", in vkWaitSemaphores() 1551 device, pWaitInfo, timeout); in vkWaitSemaphores() 1552 return vk::Cast(device)->waitForSemaphores(pWaitInfo, timeout); in vkWaitSemaphores() 4202 VKAPI_ATTR VkResult VKAPI_CALL vkAcquireNextImageKHR(VkDevice device, VkSwapchainKHR swapchain, uint64_t timeout, VkSemaphore semaphore, VkFence fence, uint32_t *pImageIndex) in vkAcquireNextImageKHR() argument 4204 TRACE("(VkDevice device = %p, VkSwapchainKHR swapchain = %p, uint64_t timeout in vkAcquireNextImageKHR() [all...] |
/foundation/multimedia/player_framework/services/engine/histreamer/player/ |
H A D | hiplayer_impl.cpp | 1218 bool timeout = false; in HandleSeekClosest() local 1219 auto res = seekAgent_->Seek(seekPos, timeout); in HandleSeekClosest() 1226 if (timeout && videoDecoder_ != nullptr) { in HandleSeekClosest() 2747 static constexpr int32_t timeout = 5; in LinkAudioDecoderFilter() local 2748 bool notTimeout = drmConfigCond_.wait_for(lock, std::chrono::seconds(timeout), [this]() { in LinkAudioDecoderFilter() 2756 MEDIA_LOG_E_SHORT("HiPlayerImpl Drmcond wait timeout or has been stopped!"); in LinkAudioDecoderFilter() 2833 static constexpr int32_t timeout = 5; in LinkVideoDecoderFilter() local 2834 bool notTimeout = drmConfigCond_.wait_for(lock, std::chrono::seconds(timeout), [this]() { in LinkVideoDecoderFilter() 2842 MEDIA_LOG_E_SHORT("HiPlayerImpl Drmcond wait timeout or has been stopped!"); in LinkVideoDecoderFilter()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/wsi/ |
H A D | vktWsiSwapchainTests.cpp | 1231 deUint64 timeout) in AcquireNextImageWrapper() 1235 , m_timeout (timeout) in AcquireNextImageWrapper() 1271 deUint64 timeout) in AcquireNextImage2Wrapper() 1278 m_info.timeout = timeout; in AcquireNextImage2Wrapper() 2563 return tcu::TestStatus::fail("Implementation failed to respond well acquiring too many images with 0 timeout"); in acquireTooManyTest() 2599 const deUint64 timeout = 50 * millisecond; // arbitrary realistic non-0 non-infinite timeout in acquireTooManyTimeoutTest() local 2600 const auto result = devHelper.vkd.acquireNextImageKHR(*devHelper.device, *swapchain, timeout, (VkSemaphore)0, **fences[numAcquirableImages], &unused); in acquireTooManyTimeoutTest() 2603 return tcu::TestStatus::fail("Implementation failed to respond well acquiring too many images with timeout"); in acquireTooManyTimeoutTest() 1227 AcquireNextImageWrapper(const DeviceInterface& vkd, VkDevice device, deUint32 deviceMask, VkSwapchainKHR swapchain, deUint64 timeout) AcquireNextImageWrapper() argument 1267 AcquireNextImage2Wrapper(const DeviceInterface& vkd, VkDevice device, deUint32 deviceMask, VkSwapchainKHR swapchain, deUint64 timeout) AcquireNextImage2Wrapper() argument [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/wsi/ |
H A D | vktWsiSwapchainTests.cpp | 1215 deUint64 timeout) in AcquireNextImageWrapper() 1219 , m_timeout (timeout) in AcquireNextImageWrapper() 1255 deUint64 timeout) in AcquireNextImage2Wrapper() 1262 m_info.timeout = timeout; in AcquireNextImage2Wrapper() 2547 return tcu::TestStatus::fail("Implementation failed to respond well acquiring too many images with 0 timeout"); in acquireTooManyTest() 2583 const deUint64 timeout = 50 * millisecond; // arbitrary realistic non-0 non-infinite timeout in acquireTooManyTimeoutTest() local 2584 const auto result = devHelper.vkd.acquireNextImageKHR(*devHelper.device, *swapchain, timeout, (VkSemaphore)0, **fences[numAcquirableImages], &unused); in acquireTooManyTimeoutTest() 2587 return tcu::TestStatus::fail("Implementation failed to respond well acquiring too many images with timeout"); in acquireTooManyTimeoutTest() 1211 AcquireNextImageWrapper(const DeviceInterface& vkd, VkDevice device, deUint32 deviceMask, VkSwapchainKHR swapchain, deUint64 timeout) AcquireNextImageWrapper() argument 1251 AcquireNextImage2Wrapper(const DeviceInterface& vkd, VkDevice device, deUint32 deviceMask, VkSwapchainKHR swapchain, deUint64 timeout) AcquireNextImage2Wrapper() argument [all...] |