/third_party/rust/crates/rustix/src/backend/linux_raw/io/ |
H A D | epoll.rs | 38 //! let mut event_list = epoll::EventVec::with_capacity(4); 40 //! epoll.wait(&mut event_list, -1)?; 41 //! for (_event_flags, target) in &event_list { 218 event_list: &mut EventVec<'context, Context>, in wait() 224 event_list.events.set_len(0); in wait() 227 event_list.events[..].as_mut_ptr().cast(), in wait() 228 event_list.events.capacity(), in wait() 231 event_list.events.set_len(nfds); in wait() 232 event_list.context = &self.context; in wait()
|
/third_party/rust/crates/rustix/src/backend/libc/io/ |
H A D | epoll.rs | 38 //! let mut event_list = epoll::EventVec::with_capacity(4); 40 //! epoll.wait(&mut event_list, -1)?; 41 //! for (_event_flags, target) in &event_list { 227 event_list: &mut EventVec<'context, Context>, in wait() 233 event_list.events.set_len(0); in wait() 236 event_list.events.as_mut_ptr().cast::<c::epoll_event>(), in wait() 237 event_list.events.capacity().try_into().unwrap_or(i32::MAX), in wait() 240 event_list.events.set_len(nfds as usize); in wait() 241 event_list.context = &self.context; in wait()
|
/third_party/rust/crates/rustix/tests/io/ |
H A D | epoll.rs | 44 let mut event_list = epoll::EventVec::with_capacity(4); in server() variables 46 epoll.wait(&mut event_list, -1).unwrap(); in server() 47 for (_event_flags, target) in &event_list { in server()
|
/third_party/eudev/src/udev/ |
H A D | udevd.c | 75 static UDEV_LIST(event_list); 498 udev_list_node_append(&event->node, &event_list); in event_queue_insert() 521 udev_list_node_foreach(loop, &event_list) { in is_devpath_busy() 590 udev_list_node_foreach(loop, &event_list) { in event_queue_start() 607 udev_list_node_foreach_safe(loop, tmp, &event_list) { in event_queue_cleanup() 686 if (!udev_list_node_is_empty(&event_list)) { in event_queue_update() 1280 udev_list_node_init(&event_list); in main() 1389 if (udev_list_node_is_empty(&event_list) && hashmap_isempty(workers)) in main() 1394 } else if (udev_list_node_is_empty(&event_list) && hashmap_isempty(workers)) { in main() 1420 if (udev_list_node_is_empty(&event_list)) { in main() [all...] |
/third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
H A D | cl_stubs.cpp | 632 cl_int WaitForEvents(cl_uint num_events, const cl_event *event_list) in WaitForEvents() argument 634 return (*event_list)->cast<Event>().getContext().waitForEvents(num_events, event_list); in WaitForEvents() 1147 const cl_event *event_list) in EnqueueWaitForEvents() 1149 return command_queue->cast<CommandQueue>().enqueueWaitForEvents(num_events, event_list); in EnqueueWaitForEvents() 1145 EnqueueWaitForEvents(cl_command_queue command_queue, cl_uint num_events, const cl_event *event_list) EnqueueWaitForEvents() argument
|
H A D | entry_points_cl_autogen.cpp | 661 cl_int CL_API_CALL clWaitForEvents(cl_uint num_events, const cl_event *event_list) in clWaitForEvents() argument 663 CL_EVENT(WaitForEvents, "num_events = %u, event_list = 0x%016" PRIxPTR "", num_events, in clWaitForEvents() 664 (uintptr_t)event_list); in clWaitForEvents() 666 ANGLE_CL_VALIDATE_ERROR(WaitForEvents, num_events, event_list); in clWaitForEvents() 668 return WaitForEvents(num_events, event_list); in clWaitForEvents() 1239 const cl_event *event_list) in clEnqueueWaitForEvents() 1242 "command_queue = 0x%016" PRIxPTR ", num_events = %u, event_list = 0x%016" PRIxPTR "", in clEnqueueWaitForEvents() 1243 (uintptr_t)command_queue, num_events, (uintptr_t)event_list); in clEnqueueWaitForEvents() 1245 ANGLE_CL_VALIDATE_ERROR(EnqueueWaitForEvents, command_queue, num_events, event_list); in clEnqueueWaitForEvents() 1247 return EnqueueWaitForEvents(command_queue, num_events, event_list); in clEnqueueWaitForEvents() 1237 clEnqueueWaitForEvents(cl_command_queue command_queue, cl_uint num_events, const cl_event *event_list) clEnqueueWaitForEvents() argument [all...] |
H A D | cl_stubs_autogen.h | 265 cl_int WaitForEvents(cl_uint num_events, const cl_event *event_list); 558 const cl_event *event_list);
|
H A D | entry_points_cl_autogen.h | 156 cl_int CL_API_CALL clWaitForEvents(cl_uint num_events, const cl_event *event_list); 319 const cl_event *event_list);
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | validationCL.cpp | 1459 cl_int ValidateWaitForEvents(cl_uint num_events, const cl_event *event_list) in ValidateWaitForEvents() argument 1461 // CL_INVALID_VALUE if num_events is zero or event_list is NULL. in ValidateWaitForEvents() 1462 if (num_events == 0u || event_list == nullptr) in ValidateWaitForEvents() 1470 // CL_INVALID_EVENT if event objects specified in event_list are not valid event objects. in ValidateWaitForEvents() 1471 if (!Event::IsValid(*event_list)) in ValidateWaitForEvents() 1476 // CL_INVALID_CONTEXT if events specified in event_list do not belong to the same context. in ValidateWaitForEvents() 1477 const Context *eventContext = &(*event_list++)->cast<Event>().getContext(); in ValidateWaitForEvents() 2243 const cl_event *event_list) in ValidateEnqueueWaitForEvents() 2256 // CL_INVALID_VALUE if num_events is 0 or event_list is NULL. in ValidateEnqueueWaitForEvents() 2257 if (num_events == 0u || event_list in ValidateEnqueueWaitForEvents() 2241 ValidateEnqueueWaitForEvents(cl_command_queue command_queue, cl_uint num_events, const cl_event *event_list) ValidateEnqueueWaitForEvents() argument [all...] |
H A D | validationCL_autogen.h | 147 cl_int ValidateWaitForEvents(cl_uint num_events, const cl_event *event_list); 306 const cl_event *event_list);
|
/third_party/skia/third_party/externals/angle2/src/libOpenCL/ |
H A D | libOpenCL_autogen.cpp | 310 cl_int CL_API_CALL clWaitForEvents(cl_uint num_events, const cl_event *event_list) in clWaitForEvents() argument 312 return cl::GetDispatch().clWaitForEvents(num_events, event_list); in clWaitForEvents() 600 const cl_event *event_list) in clEnqueueWaitForEvents() 602 return cl::GetDispatch().clEnqueueWaitForEvents(command_queue, num_events, event_list); in clEnqueueWaitForEvents() 598 clEnqueueWaitForEvents(cl_command_queue command_queue, cl_uint num_events, const cl_event *event_list) clEnqueueWaitForEvents() argument
|
/third_party/opencl-headers/CL/ |
H A D | cl_function_types.h | 329 const cl_event* event_list); 613 const cl_event* event_list);
|
H A D | cl_icd.h | 424 cl_uint num_events, const cl_event *event_list) CL_API_SUFFIX__VERSION_1_0; 729 const cl_event *event_list) CL_API_SUFFIX__VERSION_1_1_DEPRECATED;
|
H A D | cl.h | 1448 const cl_event * event_list) CL_API_SUFFIX__VERSION_1_0; 1900 const cl_event * event_list) CL_API_SUFFIX__VERSION_1_1_DEPRECATED;
|
/third_party/python/Lib/asyncio/ |
H A D | base_events.py | 513 def _process_events(self, event_list): 1884 event_list = self._selector.select(timeout) 1885 self._process_events(event_list) 1887 event_list = None
|
H A D | selector_events.py | 733 def _process_events(self, event_list): 734 for key, mask in event_list:
|
H A D | proactor_events.py | 880 def _process_events(self, event_list):
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | utils.py | 497 def _process_events(self, event_list):
|
H A D | test_base_events.py | 887 def proc_events(event_list): 889 if event_sentinel in event_list:
|
/third_party/opencl-headers/src/ |
H A D | opencl_wrapper.cpp | 642 cl_int clWaitForEvents(cl_uint num_events, const cl_event *event_list) in clWaitForEvents() argument 647 return func(num_events, event_list); in clWaitForEvents()
|
/third_party/skia/third_party/externals/angle2/include/CL/ |
H A D | cl_icd.h | 424 cl_uint num_events, const cl_event *event_list) CL_API_SUFFIX__VERSION_1_0; 729 const cl_event *event_list) CL_API_SUFFIX__VERSION_1_1_DEPRECATED;
|
H A D | cl.h | 1441 const cl_event * event_list) CL_API_SUFFIX__VERSION_1_0; 1893 const cl_event * event_list) CL_API_SUFFIX__VERSION_1_1_DEPRECATED;
|
/third_party/mesa3d/include/CL/ |
H A D | cl_icd.h | 424 cl_uint num_events, const cl_event *event_list) CL_API_SUFFIX__VERSION_1_0; 729 const cl_event *event_list) CL_EXT_SUFFIX__VERSION_1_1_DEPRECATED;
|
H A D | cl.h | 1439 const cl_event * event_list) CL_API_SUFFIX__VERSION_1_0; 1891 const cl_event * event_list) CL_EXT_SUFFIX__VERSION_1_1_DEPRECATED;
|