Home
last modified time | relevance | path

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

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/Hosting/
H A DProcessHost.cs291 private ApplicationManager _appManager; field in System.Web.Hosting.ProcessHost
331 _appManager = ApplicationManager.GetApplicationManager(); in ProcessHost()
590 _appManager.CreateObjectInternal( in StartAppDomainProtocolListenerChannel()
735 runtime = (PipelineRuntime)_appManager.CreateObjectInternal( in StartApplication()
766 _appManager.ShutdownApplication(appId); in ShutdownApplication()
798 _appManager.ShutdownAll(); in Shutdown()
824 object resumeState = _appManager.SuspendAllApplications(); in IProcessSuspendListener.Suspend()
828 _appManager.ResumeAllApplications(resumeState); in IProcessSuspendListener.Suspend()
873 result = _appManager.IsIdle(); in IsIdle()
890 _appManager.Ping(callback); in Ping()
[all …]
H A DAppDomainFactory.cs129 private ApplicationManager _appManager; field in System.Web.Hosting.AppManagerAppDomainFactory
133 _appManager = ApplicationManager.GetApplicationManager(); in AppManagerAppDomainFactory()
134 _appManager.Open(); in AppManagerAppDomainFactory()
172 …ISAPIRuntime isapiRuntime = (ISAPIRuntime)_appManager.CreateObjectInternal(appId, typeof(ISAPIRunt… in Create()
190 _appManager.Close(); in Stop()
H A DCacheManager.cs33 private ApplicationManager _appManager; field in System.Web.Hosting.CacheManager
78 _appManager = appManager; in CacheManager()
243 trimmedOrExpired = _appManager.TrimCaches(percent); in CollectInfrequently()
250 if (trimmedOrExpired == 0 || _appManager.ShutdownInProgress) { in CollectInfrequently()
H A DHostingEnvironment.cs102 private ApplicationManager _appManager; field in System.Web.Hosting.HostingEnvironment
248 if (_appManager != null) { in OnAppDomainUnload()
301 _appManager = appManager; in Initialize()
351 if (_appManager != null) { in Initialize()
352 _appManager.HostingEnvironmentActivated(); in Initialize()
436 if (_appManager == null) /// detached app domain in EnforceAppDomainLimit()
448 if (limit > 0 && _appManager.AppDomainsCount >= limit) { in EnforceAppDomainLimit()
451 _appManager.ReduceAppDomainsCount(limit); in EnforceAppDomainLimit()
684 if (_appManager != null) { in RemoveThisAppDomainFromAppManagerTableOnce()
686 _appManager.HostingEnvironmentShutdownInitiated(_appId, this); in RemoveThisAppDomainFromAppManagerTableOnce()
[all …]
/dports/multimedia/lms/lms-3.25.2/src/lms/ui/
H A DLmsApplication.cpp149 , _appManager {appManager}
272 _appManager.unregisterApplication(*this); in finalize()
449 _appManager.registerApplication(*this); in onUserLoggedIn()
450 _appManager.applicationRegistered.connect(this, [this] (LmsApplication& otherApplication) in onUserLoggedIn()
H A DLmsApplication.hpp119 LmsApplicationManager& _appManager; member in UserInterface::LmsApplication