Home
last modified time | relevance | path

Searched refs:_cancel (Results 1 – 25 of 451) sorted by relevance

12345678910>>...19

/dports/devel/libunwind/libunwind-1.5.0/doc/
H A D_U_dyn_cancel.tex8 \begin{Name}{3}{\_U\_dyn\_cancel}{David Mosberger-Tang}{Programming Library}{\_U\_dyn\_cancel}\_U\_…
15 \Type{void} \Func{\_U\_dyn\_cancel}(\Type{unw\_dyn\_info\_t~*}\Var{di});\\
19 The \Func{\_U\_dyn\_cancel}() routine cancels the registration of the
24 The \Func{\_U\_dyn\_cancel}() routine is guaranteed to execute in
26 \Func{\_U\_dyn\_register}() or \Func{\_U\_dyn\_cancel}()).
31 \Func{\_U\_dyn\_cancel}() is thread-safe but \emph{not} safe to use
/dports/devel/py-rx1/Rx-1.6.1/rx/concurrency/
H A Dscheduleperiodic.py20 self._cancel = SerialDisposable()
23 self._cancel.disposable = self._scheduler.schedule_relative(self._period, self.tick, 0)
27 self._cancel.dispose()
38 self._cancel.disposable = self._scheduler.schedule_relative(self._period, self.tick, 0)
39 return self._cancel
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/UI/WebControls/
H A DLoginCancelEventArgs.cs13 private bool _cancel; field in System.Web.UI.WebControls.LoginCancelEventArgs
19 _cancel = cancel; in LoginCancelEventArgs()
24 return _cancel;
27 _cancel = value;
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/
H A Dconsolecanceleventargs.cs28 private bool _cancel; // Whether to cancel the CancelKeyPress event field in System.ConsoleCancelEventArgs
33 _cancel = false; in ConsoleCancelEventArgs()
39 get { return _cancel; }
41 _cancel = value;
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.ApplicationServices/Security/
H A DValidatePasswordEventArgs.cs22 private bool _cancel; field in System.Web.Security.ValidatePasswordEventArgs
33 _cancel = false; in ValidatePasswordEventArgs()
53 get{ return _cancel; }
54 set{ _cancel = value; }
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/ui/tool/
H A Dselector.cpp38 _cancel(false) in SelectorPoint()
65 _cancel = true; in _eventHandler()
74 _cancel = false; in grabbed()
81 if (_cancel) return; in dragged()
87 if (_cancel) return; in ungrabbed()
102 bool _cancel; member in Inkscape::UI::SelectorPoint
/dports/lang/mono/mono-5.10.1.57/external/rx/Rx/NET/Source/System.Reactive.PlatformServices/Reactive/Concurrency/
H A DNewThreadScheduler.cs133 private readonly object _cancel = new object(); in NewThreadScheduler() field in System.Reactive.Concurrency.NewThreadScheduler.Periodic
156 lock (_cancel) in NewThreadScheduler()
158 if (Monitor.Wait(_cancel, timeout)) in NewThreadScheduler()
171 lock (_cancel) in NewThreadScheduler()
173 Monitor.Pulse(_cancel); in NewThreadScheduler()
/dports/devel/commoncpp/commoncpp2-1.8.1/src/
H A Dthread.cpp203 if(old != th->_cancel) { in exitCancel()
923 switch(_cancel) { in terminate()
1143 _cancel = mode; in setCancel()
1153 _cancel = mode; in setCancel()
1158 _cancel = mode; in setCancel()
1180 _cancel = mode; in setCancel()
1210 if(th && th->_cancel != cancelDisabled && th->_cancel != cancelInitial) in yield()
1251 switch(_cancel) { in testCancel()
1273 if(_cancel != cancelDisabled && _cancel != cancelInitial) in testCancel()
1313 switch(th->_cancel) { in sleep()
[all …]
/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/src/Identity/
H A DAspNetRoleManager.cs18 private readonly CancellationToken _cancel; field in Microsoft.AspNetCore.Identity.AspNetRoleManager
37 _cancel = contextAccessor?.HttpContext?.RequestAborted ?? CancellationToken.None; in AspNetRoleManager()
43 protected override CancellationToken CancellationToken => _cancel;
H A DAspNetUserManager.cs20 private readonly CancellationToken _cancel; field in Microsoft.AspNetCore.Identity.AspNetUserManager
45_cancel = services?.GetService<IHttpContextAccessor>()?.HttpContext?.RequestAborted ?? Cancellatio… in AspNetUserManager()
51 protected override CancellationToken CancellationToken => _cancel;
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Drawing.Common/src/System/Drawing/Printing/
H A DPrintPageEventArgs.Windows.cs14 private bool _cancel; field in System.Drawing.Printing.PrintPageEventArgs
41 get { return _cancel; }
42 set { _cancel = value; }
/dports/comms/py-pyserial/pyserial-3.5/test/
H A Dtest_cancel.py35 def _cancel(self, num_times): member in TestCancelRead
43 threading.Timer(1, self._cancel, ((1,))).start()
80 def _cancel(self, num_times): member in TestCancelWrite
87 threading.Timer(1, self._cancel, ((1,))).start()
/dports/mail/spamcup/spamcup-1.09/
H A Dspamcup.pl344 my $_cancel = 0;
450 $_cancel = 1; # mark to be cancelled
475 $_cancel = 1; # mark to be cancelled
536 if (!$_cancel) { # SUBMIT spam
568 if ($_cancel) {
/dports/lang/mono/mono-5.10.1.57/external/rx/Rx/NET/Source/System.Reactive.Core/Reactive/Internal/
H A DSink.cs16 private IDisposable _cancel; field in System.Reactive.Sink
21 _cancel = cancel; in Sink()
28 var cancel = Interlocked.Exchange(ref _cancel, null); in Dispose()
/dports/emulators/mesen/Mesen-0.9.8-4-g4c701ad6/GUI.NET/Forms/
H A DfrmDownloadProgress.cs19 private bool _cancel = false; field in Mesen.GUI.Forms.frmDownloadProgress
39 _cancel = true; in OnClosing()
77 while(!downloadTask.IsCompleted && !_cancel) { in tmrStart_Tick()
81 if(_cancel) { in tmrStart_Tick()
/dports/lang/mono/mono-5.10.1.57/external/rx/Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/
H A DSelectMany.cs600 private CancellationDisposable _cancel; field in System.Reactive.Linq.ObservableImpl.SelectMany.SelectManyImpl
606 _cancel = new CancellationDisposable(); in Run()
688 if (!_cancel.IsDisposed) in OnCompletedTask()
734 private CancellationDisposable _cancel; field in System.Reactive.Linq.ObservableImpl.SelectMany.Sigma
741 _cancel = new CancellationDisposable(); in Run()
825 if (!_cancel.IsDisposed) in OnCompletedTask()
1526 private CancellationDisposable _cancel; field in System.Reactive.Linq.ObservableImpl.SelectMany.SelectManyImpl
1532 _cancel = new CancellationDisposable(); in Run()
1590 if (!_cancel.IsDisposed) in OnCompletedTask()
1636 private CancellationDisposable _cancel; field in System.Reactive.Linq.ObservableImpl.SelectMany.Sigma
[all …]
/dports/print/system-config-printer/system-config-printer-1.5.12/
H A Dauthconn.py267 if not self._cancel and (e == cups.IPP_NOT_AUTHORIZED or
271 elif not self._cancel and e == cups.IPP_SERVICE_UNAVAILABLE:
287 self._cancel = True
290 if self._cancel and not self._cannot_auth:
297 if not self._cancel:
342 if self._cancel or self._auth_called:
365 self._cancel = False
408 self._cancel = True
414 self._cancel = True
437 if self._cancel:
[all …]
/dports/net/py-saltyrtc.server/saltyrtc.server-5.0.1/saltyrtc/server/
H A Dtask.py175 self._cancel()
202 self._cancel()
225 def _cancel(self) -> None: member in JobQueue
394 self._cancel()
408 self._cancel()
452 self._cancel()
464 def _cancel(self) -> None: member in Tasks
/dports/www/py-planet/planet-1.4.8/planet/api/
H A Dmodels.py34 self._cancel = False
50 if self._cancel:
78 self._body._cancel = True
80 self._cancel = True
104 self._cancel = False
136 if self._cancel:
/dports/editors/ecrire/ecrire-0.3.4/src/bin/ui/
H A Dalerts.c9 static void _cancel(void *data,
52 _cancel(void *data, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED) in _cancel() function
85 evas_object_smart_callback_add(obj, "clicked", _cancel, popup); in ui_alert_need_saving()
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/SourceFiles/history/admin_log/
H A Dhistory_admin_log_section.cpp81 object_ptr<Ui::CrossButton> _cancel; member in AdminLog::FixedBar
120 , _cancel(this, st::historyAdminLogCancelSearch) in FixedBar()
125 _cancel->setClickedCallback([=] { cancelSearch(); }); in FixedBar()
132 _cancel->hide(anim::type::instant); in FixedBar()
154 _cancel->toggle(_searchShown, anim::type::normal); in toggleSearch()
212 auto cancelLeft = filterLeft - _cancel->width(); in resizeGetHeight()
213 _cancel->moveToLeft(cancelLeft, 0); in resizeGetHeight()
253 _cancel->setVisible(false); in setAnimatingMode()
/dports/science/gramps/gramps-5.1.4/gramps/gui/widgets/
H A Dprogressdialog.py135 self._cancel = False
184 return self._cancel
190 self._cancel = True
207 return self._cancel
437 self._cancel = Gtk.Button.new_with_mnemonic(_('_Cancel'))
438 self._cancel.connect("clicked",
440 self._cancel.show()
441 self._hbox.pack_end(self._cancel, False, True, 0)
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/Zend/Cache/Frontend/
H A DPage.php119 protected $_cancel = false; variable in Zend_Cache_Frontend_Page
243 $this->_cancel = false;
298 $this->_cancel = true;
310 if ($this->_cancel) {
/dports/devel/py-uvloop/uvloop-0.16.0/uvloop/handles/
H A Dpoll.pyx106 self.reading_handle._cancel()
124 self.writing_handle._cancel()
132 self.reading_handle._cancel()
146 self.writing_handle._cancel()
158 self.reading_handle._cancel()
162 self.writing_handle._cancel()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/gc/g1/
H A Dg1StringDedupQueue.cpp42 _cancel(false), in G1StringDedupQueue()
58 while (_empty && !_cancel) { in wait_impl()
65 _cancel = true; in cancel_wait_impl()

12345678910>>...19