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)
30
ThreadPoolBoundHandleOverlapped 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)
12
internal
ThreadPoolBoundHandleOverlapped
? _overlappedPortableCore;
src\libraries\System.Private.CoreLib\src\System\Threading\ThreadPoolBoundHandle.Portable.cs (7)
30
ThreadPoolBoundHandleOverlapped
overlapped = new ThreadPoolBoundHandleOverlapped(callback, state, pinData, preAllocated: null, flowExecutionContext);
43
ThreadPoolBoundHandleOverlapped
overlapped = preAllocated._overlappedPortableCore!;
65
ThreadPoolBoundHandleOverlapped
wrapper = GetOverlappedWrapper(overlapped);
80
ThreadPoolBoundHandleOverlapped
wrapper = GetOverlappedWrapper(overlapped);
85
private static unsafe
ThreadPoolBoundHandleOverlapped
GetOverlappedWrapper(NativeOverlapped* overlapped)
87
ThreadPoolBoundHandleOverlapped
wrapper;
90
wrapper = (
ThreadPoolBoundHandleOverlapped
)Overlapped.Unpack(overlapped);
src\libraries\System.Private.CoreLib\src\System\Threading\ThreadPoolBoundHandleOverlapped.cs (2)
36
ThreadPoolBoundHandleOverlapped
overlapped = (
ThreadPoolBoundHandleOverlapped
)Unpack(nativeOverlapped);