5 instantiations of CompressedStack
mscorlib (5)
system\security\securitycontext.cs (1)
618sc.CompressedStack = new CompressedStack(null);
system\threading\compressedstack.cs (4)
224cs = new CompressedStack(null); 231cs = new CompressedStack(GetDelayedCompressedStack(ref stackMark, false)); 240cs = new CompressedStack(null); 373return new CompressedStack(this.m_csHandle, this.m_pls);
50 references to CompressedStack
mscorlib (47)
system\reflection\emit\dynamicilgenerator.cs (1)
921internal override CompressedStack GetSecurityContext()
system\reflection\emit\dynamicmethod.cs (2)
66internal CompressedStack m_creationContext; 387m_creationContext = CompressedStack.Capture();
system\runtimehandles.cs (1)
2265internal abstract CompressedStack GetSecurityContext();
system\security\codeaccesssecurityengine.cs (6)
143internal static void CheckSetHelper(CompressedStack cs, 257internal static void CheckHelper(CompressedStack cs, 463CompressedStack cs = CompressedStack.GetCompressedStack(ref stackMark); 497CompressedStack securityContext) 518internal static void GetZoneAndOriginHelper( CompressedStack cs, PermissionSet grantSet, PermissionSet refusedSet, ArrayList zoneList, ArrayList originList )
system\security\permissionlistset.cs (6)
126CompressedStack dynamicCompressedStack = resolver.GetSecurityContext(); 331static internal PermissionListSet CreateCompressedState(CompressedStack cs, CompressedStack innerCS) 341int numDomains = CompressedStack.GetDCSCount(cs.CompressedStackHandle); 344DomainCompressedStack dcs = CompressedStack.GetDomainCompressedStack(cs.CompressedStackHandle, i); 420CompressedStack.GetHomogeneousPLS(pls);
system\security\securitycontext.cs (5)
176private volatile CompressedStack _compressedStack; 205public CompressedStack CompressedStack { get { return IsNull ? null : m_sc.CompressedStack; } } 256internal CompressedStack CompressedStack 492scsw.cssw = CompressedStack.SetCompressedStack(sc.CompressedStack, prevSecurityContext.CompressedStack); 600sc.CompressedStack = CompressedStack.GetCompressedStack(ref stackMark);
system\security\securityruntime.cs (2)
91System.Threading.CompressedStack creationStack = dynamicResolver.GetSecurityContext(); 111System.Threading.CompressedStack creationStack = dynamicResolver.GetSecurityContext();
system\threading\compressedstack.cs (22)
37internal CompressedStack curr_CS; 38internal CompressedStack prev_CS; 103CompressedStack.RestoreAppDomainStack(prev_ADStack); 104CompressedStack.SetCompressedStackThread(prev_CS); 127CompressedStack.DestroyDelayedCompressedStack(handle); 210public static CompressedStack GetCompressedStack() 214return CompressedStack.GetCompressedStack(ref stackMark); 218internal static CompressedStack GetCompressedStack(ref StackCrawlMark stackMark) 220CompressedStack cs; 221CompressedStack innerCS = null; 268public static CompressedStack Capture() 280public static void Run(CompressedStack compressedStack, ContextCallback callback, Object state) 300internal CompressedStack cs; 304internal CompressedStackRunData(CompressedStack cs, ContextCallback cb, Object state) 338internal static CompressedStackSwitcher SetCompressedStack(CompressedStack cs, CompressedStack prevCS) 371public CompressedStack CreateCopy() 378internal static IntPtr SetAppDomainStack(CompressedStack cs) 393internal static CompressedStack GetCompressedStackThread() 400internal static void SetCompressedStackThread(CompressedStack cs) 495internal void CompleteConstruction(CompressedStack innerCS) 534internal extern static bool IsImmediateCompletionCandidate(SafeCompressedStackHandle compressedStack, out CompressedStack innerCS);
system\threading\thread.cs (2)
446public void SetCompressedStack( CompressedStack stack ) 465public CompressedStack GetCompressedStack()
System.Xml (3)
System\Xml\Core\XmlTextReaderImpl.cs (3)
199CompressedStack compressedStack; 605compressedStack = CompressedStack.Capture(); 2830CompressedStack.Run( compressedStack, new ContextCallback( OpenUrlDelegate ), tmpResolver );