2 instantiations of ThreadPoolBoundHandleOverlapped
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Threading\PreAllocatedOverlapped.Unix.cs (1)
101_overlappedPortableCore = new ThreadPoolBoundHandleOverlapped(callback, state, pinData, this, flowExecutionContext);
src\libraries\System.Private.CoreLib\src\System\Threading\ThreadPoolBoundHandle.Portable.cs (1)
30ThreadPoolBoundHandleOverlapped overlapped = new ThreadPoolBoundHandleOverlapped(callback, state, pinData, preAllocated: null, flowExecutionContext);
10 references to ThreadPoolBoundHandleOverlapped
System.Private.CoreLib (10)
src\libraries\System.Private.CoreLib\src\System\Threading\PreAllocatedOverlapped.Portable.cs (1)
12internal ThreadPoolBoundHandleOverlapped? _overlappedPortableCore;
src\libraries\System.Private.CoreLib\src\System\Threading\ThreadPoolBoundHandle.Portable.cs (7)
30ThreadPoolBoundHandleOverlapped overlapped = new ThreadPoolBoundHandleOverlapped(callback, state, pinData, preAllocated: null, flowExecutionContext); 43ThreadPoolBoundHandleOverlapped overlapped = preAllocated._overlappedPortableCore!; 65ThreadPoolBoundHandleOverlapped wrapper = GetOverlappedWrapper(overlapped); 80ThreadPoolBoundHandleOverlapped wrapper = GetOverlappedWrapper(overlapped); 85private static unsafe ThreadPoolBoundHandleOverlapped GetOverlappedWrapper(NativeOverlapped* overlapped) 87ThreadPoolBoundHandleOverlapped wrapper; 90wrapper = (ThreadPoolBoundHandleOverlapped)Overlapped.Unpack(overlapped);
src\libraries\System.Private.CoreLib\src\System\Threading\ThreadPoolBoundHandleOverlapped.cs (2)
36ThreadPoolBoundHandleOverlapped overlapped = (ThreadPoolBoundHandleOverlapped)Unpack(nativeOverlapped);