Home
last modified time | relevance | path

Searched refs:unloadTimer (Results 1 – 8 of 8) sorted by relevance

/dports/www/firefox/firefox-99.0/remote/shared/
H A DNavigate.jsm93 #unloadTimer;
128 this.#unloadTimer = null;
159 if (this.#unloadTimer) {
160 this.#unloadTimer.cancel();
161 this.#unloadTimer = null;
234 this.#unloadTimer = Cc["@mozilla.org/timer;1"].createInstance(
237 this.#unloadTimer.initWithCallback(
262 this.#unloadTimer?.cancel();
263 this.#unloadTimer = null;
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.WorkflowServices/System/ServiceModel/Dispatcher/
H A DWorkflowInstanceLifeTimeManagerExtension.cs343 IOThreadTimer unloadTimer; field in System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.InstanceRecord
385 return this.unloadTimer;
389 this.unloadTimer = value;
/dports/lang/spidermonkey60/firefox-60.9.0/browser/modules/
H A DAsyncTabSwitcher.jsm90 this.unloadTimer = null; // UNLOAD_DELAY nsITimer instance.
162 if (this.unloadTimer) {
163 this.clearTimer(this.unloadTimer);
164 this.unloadTimer = null;
595 if (this.unloadTimer) {
596 this.clearTimer(this.unloadTimer);
612 this.unloadTimer = null;
621 // up the unloadTimer to run onUnloadTimeout if there are still
924 if (this.unloadTimer) {
925 this.clearTimer(this.unloadTimer);
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/browser/modules/
H A DAsyncTabSwitcher.jsm112 this.unloadTimer = null; // UNLOAD_DELAY nsITimer instance.
191 if (this.unloadTimer) {
192 this.clearTimer(this.unloadTimer);
193 this.unloadTimer = null;
690 if (this.unloadTimer) {
691 this.clearTimer(this.unloadTimer);
705 this.unloadTimer = null;
757 this.unloadTimer = this.setTimer(
1056 if (this.unloadTimer) {
1057 this.clearTimer(this.unloadTimer);
[all …]
/dports/www/firefox/firefox-99.0/browser/modules/
H A DAsyncTabSwitcher.jsm112 this.unloadTimer = null; // UNLOAD_DELAY nsITimer instance.
191 if (this.unloadTimer) {
192 this.clearTimer(this.unloadTimer);
193 this.unloadTimer = null;
690 if (this.unloadTimer) {
691 this.clearTimer(this.unloadTimer);
705 this.unloadTimer = null;
757 this.unloadTimer = this.setTimer(
1056 if (this.unloadTimer) {
1057 this.clearTimer(this.unloadTimer);
[all …]
/dports/www/firefox-esr/firefox-91.8.0/browser/modules/
H A DAsyncTabSwitcher.jsm112 this.unloadTimer = null; // UNLOAD_DELAY nsITimer instance.
191 if (this.unloadTimer) {
192 this.clearTimer(this.unloadTimer);
193 this.unloadTimer = null;
690 if (this.unloadTimer) {
691 this.clearTimer(this.unloadTimer);
705 this.unloadTimer = null;
757 this.unloadTimer = this.setTimer(
1056 if (this.unloadTimer) {
1057 this.clearTimer(this.unloadTimer);
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/browser/modules/
H A DAsyncTabSwitcher.jsm112 this.unloadTimer = null; // UNLOAD_DELAY nsITimer instance.
191 if (this.unloadTimer) {
192 this.clearTimer(this.unloadTimer);
193 this.unloadTimer = null;
690 if (this.unloadTimer) {
691 this.clearTimer(this.unloadTimer);
705 this.unloadTimer = null;
757 this.unloadTimer = this.setTimer(
1056 if (this.unloadTimer) {
1057 this.clearTimer(this.unloadTimer);
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Activities/System/ServiceModel/Activities/Dispatcher/
H A DWorkflowServiceInstance.cs5640 IOThreadTimer unloadTimer; field in System.ServiceModel.Activities.Dispatcher.WorkflowServiceInstance.UnloadInstancePolicyHelper
5661 this.unloadTimer = new IOThreadTimer(onTimerCallback, new Action(Unload), true); in UnloadInstancePolicyHelper()
5698 … Fx.Assert(this.unloadTimer != null, "unloadTimer cannot be null if unload is enabled"); in Begin()
5699 SetTimer(this.unloadTimer, this.timeToUnload); in Begin()
5713 if (this.unloadTimer != null) in Cancel()
5715 this.unloadTimer.Cancel(); in Cancel()
5771 … Fx.Assert(this.unloadTimer != null, "unloadTimer cannot be null if unload is enabled"); in HandleEndPersist()
5776 SetTimer(this.unloadTimer, this.timeToUnload - this.timeToPersist); in HandleEndPersist()