Home
last modified time | relevance | path

Searched refs:_pending (Results 1 – 25 of 379) sorted by relevance

12345678910>>...16

/dports/graphics/panomatic/panomatic-0.9.4/zthread/src/
H A DStatus.h40 volatile unsigned short _pending;
64 Status() : _pending(INVALID), _mask(ANYTHING) { } in Status()
94 return ((_pending & _mask) & mask) != INVALID; in pending()
116 _pending |= interest; in push()
131 _pending &= ~interest; in clear()
151 if(((_pending & _mask) & SIGNALED) != 0) { in next()
155 _pending &= ~(SIGNALED|TIMEDOUT); in next()
158 } else if(((_pending & _mask) & TIMEDOUT) != 0) { in next()
160 _pending &= ~TIMEDOUT; in next()
163 } else if(((_pending & _mask) & INTERRUPTED) != 0) { in next()
[all …]
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/radiant/undo/
H A DStack.h23 Operation* _pending; variable
28 _pending(NULL) in UndoStack()
82 if (_pending != NULL) { in start()
83 delete _pending; in start() local
86 _pending = new Operation(command); in start()
91 if (_pending != NULL) { in finish()
92 delete _pending; in finish() local
93 _pending = NULL; in finish()
106 if (_pending != NULL) { in save()
108 _stack.push_back(_pending); in save()
[all …]
/dports/devel/php-ice37/ice-3.7.2/cpp/test/Ice/ami/
H A DTestI.cpp114 else if(_pending) in startDispatchAsync()
116 _pending(); in startDispatchAsync()
132 else if(_pending) in startDispatch_async()
136 _pending = cb; in startDispatch_async()
151 _pending(); in finishDispatch()
152 _pending = nullptr; in finishDispatch()
155 _pending = 0; in finishDispatch()
165 if(_pending) in shutdown()
168 _pending(); in shutdown()
169 _pending = nullptr; in shutdown()
[all …]
/dports/devel/ice37/ice-3.7.2/cpp/test/Ice/ami/
H A DTestI.cpp114 else if(_pending) in startDispatchAsync()
116 _pending(); in startDispatchAsync()
132 else if(_pending) in startDispatch_async()
136 _pending = cb; in startDispatch_async()
151 _pending(); in finishDispatch()
152 _pending = nullptr; in finishDispatch()
155 _pending = 0; in finishDispatch()
165 if(_pending) in shutdown()
168 _pending(); in shutdown()
169 _pending = nullptr; in shutdown()
[all …]
/dports/devel/py-ice37/ice-3.7.2/cpp/test/Ice/ami/
H A DTestI.cpp114 else if(_pending) in startDispatchAsync()
116 _pending(); in startDispatchAsync()
132 else if(_pending) in startDispatch_async()
136 _pending = cb; in startDispatch_async()
151 _pending(); in finishDispatch()
152 _pending = nullptr; in finishDispatch()
155 _pending = 0; in finishDispatch()
165 if(_pending) in shutdown()
168 _pending(); in shutdown()
169 _pending = nullptr; in shutdown()
[all …]
/dports/devel/ice37/ice-3.7.2/python/test/Ice/ami/
H A DTestI.py11 self._pending = None
57 elif self._pending:
58 self._pending.set_result(None)
59 self._pending = Ice.Future()
60 return self._pending
66 … elif self._pending: # Pending might not be set yet if startDispatch is dispatch out-of-order
67 self._pending.set_result(None)
68 self._pending = None
73 if self._pending:
74 self._pending.set_result(None)
[all …]
/dports/devel/php-ice37/ice-3.7.2/python/test/Ice/ami/
H A DTestI.py11 self._pending = None
57 elif self._pending:
58 self._pending.set_result(None)
59 self._pending = Ice.Future()
60 return self._pending
66 … elif self._pending: # Pending might not be set yet if startDispatch is dispatch out-of-order
67 self._pending.set_result(None)
68 self._pending = None
73 if self._pending:
74 self._pending.set_result(None)
[all …]
/dports/devel/py-ice37/ice-3.7.2/python/test/Ice/ami/
H A DTestI.py11 self._pending = None
57 elif self._pending:
58 self._pending.set_result(None)
59 self._pending = Ice.Future()
60 return self._pending
66 … elif self._pending: # Pending might not be set yet if startDispatch is dispatch out-of-order
67 self._pending.set_result(None)
68 self._pending = None
73 if self._pending:
74 self._pending.set_result(None)
[all …]
/dports/devel/poco/poco-1.10.1-all/Net/src/
H A DQuotedPrintableEncoder.cpp28 _pending(-1), in QuotedPrintableEncoderBuf()
49 if (_pending != -1) in writeToDevice()
51 if (_pending == '\r' && c == '\n') in writeToDevice()
52 writeRaw((char) _pending); in writeToDevice()
54 writeEncoded((char) _pending); in writeToDevice()
56 writeRaw((char) _pending); in writeToDevice()
57 _pending = -1; in writeToDevice()
61 _pending = charToInt(c); in writeToDevice()
62 return _pending; in writeToDevice()
/dports/x11-toolkits/py-Pmw/Pmw-2.0.1/Pmw/Pmw_1_3_3/lib/
H A DPmwNoteBook.py45 self._pending = {}
46 self._pending['size'] = 1
47 self._pending['borderColor'] = 1
48 self._pending['topPage'] = None
50 self._pending['tabs'] = 1
189 self._pending['tabs'] = 1
242 self._pending['tabs'] = 1
358 self._pending['borderColor'] = 1
366 self._pending['size'] = 1
503 self._pending.has_key('tabs') or self._pending.has_key('size')):
[all …]
/dports/x11-toolkits/py-Pmw/Pmw-2.0.1/Pmw/Pmw_2_0_1/lib/
H A DPmwNoteBook.py44 self._pending = {}
45 self._pending['size'] = 1
46 self._pending['borderColor'] = 1
47 self._pending['topPage'] = None
49 self._pending['tabs'] = 1
189 self._pending['tabs'] = 1
242 self._pending['tabs'] = 1
253 if 'topPage' in self._pending:
365 self._pending['size'] = 1
505 'tabs' in self._pending or 'size' in self._pending):
[all …]
/dports/devel/php-ice37/ice-3.7.2/java-compat/test/src/main/java/test/Ice/ami/
H A DTestI.java174 else if(_pending != null) in startDispatch_async()
176 _pending.ice_response(); in startDispatch_async()
178 _pending = cb; in startDispatch_async()
189 …else if(_pending != null) // Pending might not be set yet if startDispatch is dispatch out-of-order in finishDispatch()
191 _pending.ice_response(); in finishDispatch()
192 _pending = null; in finishDispatch()
201 if(_pending != null) in shutdown()
203 _pending.ice_response(); in shutdown()
204 _pending = null; in shutdown()
211 private AMD_TestIntf_startDispatch _pending = null; field in TestI
/dports/devel/ice37/ice-3.7.2/java-compat/test/src/main/java/test/Ice/ami/
H A DTestI.java174 else if(_pending != null) in startDispatch_async()
176 _pending.ice_response(); in startDispatch_async()
178 _pending = cb; in startDispatch_async()
189 …else if(_pending != null) // Pending might not be set yet if startDispatch is dispatch out-of-order in finishDispatch()
191 _pending.ice_response(); in finishDispatch()
192 _pending = null; in finishDispatch()
201 if(_pending != null) in shutdown()
203 _pending.ice_response(); in shutdown()
204 _pending = null; in shutdown()
211 private AMD_TestIntf_startDispatch _pending = null; field in TestI
/dports/devel/py-ice37/ice-3.7.2/java-compat/test/src/main/java/test/Ice/ami/
H A DTestI.java174 else if(_pending != null) in startDispatch_async()
176 _pending.ice_response(); in startDispatch_async()
178 _pending = cb; in startDispatch_async()
189 …else if(_pending != null) // Pending might not be set yet if startDispatch is dispatch out-of-order in finishDispatch()
191 _pending.ice_response(); in finishDispatch()
192 _pending = null; in finishDispatch()
201 if(_pending != null) in shutdown()
203 _pending.ice_response(); in shutdown()
204 _pending = null; in shutdown()
211 private AMD_TestIntf_startDispatch _pending = null; field in TestI
/dports/devel/php-ice37/ice-3.7.2/csharp/test/Ice/ami/
H A DTestI.cs103 if(_pending != null)
105 _pending.SetResult(null);
106 _pending = null;
183 else if(_pending != null)
185 _pending.SetResult(null);
187 _pending = new TaskCompletionSource<object>();
188 return _pending.Task;
201 …else if(_pending != null) // Pending might not be set yet if startDispatch is dispatch out-of-order
203 _pending.SetResult(null);
204 _pending = null;
[all …]
/dports/devel/ice37/ice-3.7.2/csharp/test/Ice/ami/
H A DTestI.cs103 if(_pending != null) in shutdown()
105 _pending.SetResult(null); in shutdown()
106 _pending = null; in shutdown()
183 else if(_pending != null) in startDispatchAsync()
185 _pending.SetResult(null); in startDispatchAsync()
187 _pending = new TaskCompletionSource<object>(); in startDispatchAsync()
188 return _pending.Task; in startDispatchAsync()
201 …else if(_pending != null) // Pending might not be set yet if startDispatch is dispatch out-of-order in finishDispatch()
203 _pending.SetResult(null); in finishDispatch()
204 _pending = null; in finishDispatch()
[all …]
/dports/devel/py-ice37/ice-3.7.2/csharp/test/Ice/ami/
H A DTestI.cs103 if(_pending != null) in shutdown()
105 _pending.SetResult(null); in shutdown()
106 _pending = null; in shutdown()
183 else if(_pending != null) in startDispatchAsync()
185 _pending.SetResult(null); in startDispatchAsync()
187 _pending = new TaskCompletionSource<object>(); in startDispatchAsync()
188 return _pending.Task; in startDispatchAsync()
201 …else if(_pending != null) // Pending might not be set yet if startDispatch is dispatch out-of-order in finishDispatch()
203 _pending.SetResult(null); in finishDispatch()
204 _pending = null; in finishDispatch()
[all …]
/dports/games/openrct2/OpenRCT2-0.3.5.1/src/openrct2/core/
H A DJobPool.cpp48 _pending.emplace_back(workFn, completionFn); in AddTask()
58 …_condComplete.wait(lock, [this]() { return (_pending.empty() && _processing == 0) || !_completed.e… in Join()
86 if (_completed.empty() && _pending.empty() && _processing == 0) in Join()
95 return _pending.size(); in CountPending()
104 _condPending.wait(lock, [this]() { return _shouldStop || !_pending.empty(); }); in ProcessQueue()
106 if (!_pending.empty()) in ProcessQueue()
110 auto taskData = _pending.front(); in ProcessQueue()
111 _pending.pop_front(); in ProcessQueue()
/dports/devel/hadoop2/jetty-6.1.14/modules/util/src/main/java/org/mortbay/util/ajax/
H A DWaitingContinuation.java24 boolean _pending=false; field in WaitingContinuation
50 _pending=false; in reset()
65 _pending=true; in suspend()
86 _pending=false; in suspend()
97 return _pending; in isPending()
126 if (_pending && mutex!=_mutex) in setMutex()
137 (_pending?",pending":"")+ in toString()
/dports/devel/hadoop/jetty-6.1.14/modules/util/src/main/java/org/mortbay/util/ajax/
H A DWaitingContinuation.java24 boolean _pending=false; field in WaitingContinuation
50 _pending=false; in reset()
65 _pending=true; in suspend()
86 _pending=false; in suspend()
97 return _pending; in isPending()
126 if (_pending && mutex!=_mutex) in setMutex()
137 (_pending?",pending":"")+ in toString()
/dports/graphics/panomatic/panomatic-0.9.4/zthread/src/macos/
H A DMonitor.cxx31 Monitor::Monitor() : _owner(0), _waiting(false), _pending(false) { in Monitor()
121 if(status == kMPTimeoutErr && _pending) { in wait()
128 _pending = false; in wait()
157 if(_waiting && !_pending) { in interrupt()
159 _pending = true; in interrupt()
204 if(_waiting && !_pending) { in notify()
206 _pending = true; in notify()
238 if(_waiting && !_pending) { in cancel()
240 _pending = true; in cancel()
/dports/devel/p5-MCE-Shared/MCE-Shared-1.874/lib/MCE/Shared/
H A DQueue.pm221 my $_pending = @{ $_Q->{_datq} };
228 $_cnt = $_pending if $_pending < $_cnt;
256 my $_pending = @{ $_Q->{_datq} };
264 $_cnt = $_pending if $_pending < $_cnt;
278 my $_pending = @{ $_Q->{_datq} };
287 ? $_pending ? $_pending : undef
288 : $_pending;
627 $_cnt, $_id, $_has_data, $_pending, $_t
670 $_pending = @{ $_Q->{_datq} };
677 $_cnt = $_pending if $_pending < $_cnt;
[all …]
/dports/devel/py-twisted/Twisted-22.1.0/src/twisted/_threads/
H A D_memory.py32 self._pending = pending()
41 self._pending.append(work)
48 self._pending.append(NoMoreWork)
62 if not worker._pending:
64 if worker._pending[0] is NoMoreWork:
66 worker._pending.pop(0)()
/dports/devel/ice37/ice-3.7.2/java/test/src/main/java/test/Ice/ami/
H A DTestI.java187 else if(_pending != null) in startDispatchAsync()
189 _pending.complete(null); in startDispatchAsync()
191 _pending = new CompletableFuture<>(); in startDispatchAsync()
192 return _pending; in startDispatchAsync()
203 …else if(_pending != null) // Pending might not be set yet if startDispatch is dispatch out-of-order in finishDispatch()
205 _pending.complete(null); in finishDispatch()
206 _pending = null; in finishDispatch()
215 if(_pending != null) in shutdown()
217 _pending.complete(null); in shutdown()
218 _pending = null; in shutdown()
[all …]
/dports/devel/php-ice37/ice-3.7.2/java/test/src/main/java/test/Ice/ami/
H A DTestI.java187 else if(_pending != null) in startDispatchAsync()
189 _pending.complete(null); in startDispatchAsync()
191 _pending = new CompletableFuture<>(); in startDispatchAsync()
192 return _pending; in startDispatchAsync()
203 …else if(_pending != null) // Pending might not be set yet if startDispatch is dispatch out-of-order in finishDispatch()
205 _pending.complete(null); in finishDispatch()
206 _pending = null; in finishDispatch()
215 if(_pending != null) in shutdown()
217 _pending.complete(null); in shutdown()
218 _pending = null; in shutdown()
[all …]

12345678910>>...16