Home
last modified time | relevance | path

Searched refs:wait_result (Results 1 – 6 of 6) sorted by relevance

/third_party/flutter/skia/third_party/externals/sdl/visualtest/src/windows/
Dwindows_process.c195 DWORD wait_result; in SDL_QuitProcess() local
215 wait_result = WaitForSingleObject(pinfo->pi.hProcess, 1000); in SDL_QuitProcess()
216 if(wait_result == WAIT_FAILED) in SDL_QuitProcess()
221 if(wait_result != WAIT_OBJECT_0) in SDL_QuitProcess()
241 DWORD exit_status, wait_result; in SDL_KillProcess() local
263 wait_result = WaitForSingleObject(pinfo->pi.hProcess, INFINITE); in SDL_KillProcess()
264 if(wait_result == WAIT_FAILED) in SDL_KillProcess()
/third_party/protobuf/src/google/protobuf/compiler/
Dsubprocess.cc186 DWORD wait_result = in Communicate() local
190 if (wait_result >= WAIT_OBJECT_0 && in Communicate()
191 wait_result < WAIT_OBJECT_0 + handle_count) { in Communicate()
192 signaled_handle = handles[wait_result - WAIT_OBJECT_0]; in Communicate()
193 } else if (wait_result == WAIT_FAILED) { in Communicate()
198 << wait_result; in Communicate()
238 DWORD wait_result = WaitForSingleObject(child_handle_, INFINITE); in Communicate() local
240 if (wait_result == WAIT_FAILED) { in Communicate()
243 } else if (wait_result != WAIT_OBJECT_0) { in Communicate()
245 << wait_result; in Communicate()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cSyncTests.cpp152 …glw::GLenum wait_result = gl.clientWaitSync(sync, GL_SYNC_FLUSH_COMMANDS_BIT, TEST_SYNC_WAIT_TIMEO… in iterate() local
158 if (GL_TIMEOUT_EXPIRED == wait_result) in iterate()
169 else if ((GL_CONDITION_SATISFIED == wait_result) || (GL_ALREADY_SIGNALED == wait_result)) in iterate()
/third_party/flutter/skia/third_party/externals/sdl/src/thread/stdcpp/
DSDL_syscond.cpp139 auto wait_result = cond->cpp_cond.wait_for( in SDL_CondWaitTimeout() local
144 if (wait_result == std::cv_status::timeout) { in SDL_CondWaitTimeout()
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/
Dvulkan_surface_producer.cc46 VkResult wait_result = VK_CALL_LOG_ERROR( in ~VulkanSurfaceProducer() local
48 FML_DCHECK(wait_result == VK_SUCCESS); in ~VulkanSurfaceProducer()
/third_party/mesa3d/src/freedreno/vulkan/
Dtu_query.c489 VkResult wait_result = wait_for_available(device, pool, query); in get_query_pool_results() local
490 if (wait_result != VK_SUCCESS) in get_query_pool_results()
491 return wait_result; in get_query_pool_results()