Home
last modified time | relevance | path

Searched refs:ErrorReceived (Results 1 – 25 of 80) sorted by relevance

1234

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.Ports/tests/SerialPort/
H A DErrorEvent.cs79 com1.ErrorReceived += errEventHandler.HandleEvent; in ErrorEvent_RxOver()
159 com1.ErrorReceived += errEventHandler.HandleEvent; in ErrorEvent_RxParity()
198 com1.ErrorReceived += errEventHandler.HandleEvent; in ErrorEvent_Frame()
H A DEvent_Generic.cs54 com1.ErrorReceived += errorEventHandler.HandleEvent; in EventHandlers_CalledSerially()
314 com1.ErrorReceived += errorEventHandler.HandleEvent; in Thread_In_ErrorEvent()
/dports/irc/smuxi/smuxi-1.1/src/Engine-Campfire/Protocols/Campfire/
H A DCampfireEventStream.cs59 public EventHandler<ErrorReceivedEventArgs> ErrorReceived; field in Smuxi.Engine.CampfireEventStream
120 if (ErrorReceived != null) { in DoWork()
121ErrorReceived(this, new ErrorReceivedEventArgs(resp.StatusCode, resp.StatusDescription)); in DoWork()
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/compute/exec/
H A Dsource_node.cc65 [[noreturn]] void ErrorReceived(ExecNode*, Status) override { NoInputs(); } in ErrorReceived() function
118 outputs_[0]->ErrorReceived(this, std::move(status)); in StartProducing()
135 outputs_[0]->ErrorReceived(this, error); in StartProducing()
H A Dunion_node.cc89 void ErrorReceived(ExecNode* input, Status error) override { in ErrorReceived() function in arrow::compute::UnionNode
91 outputs_[0]->ErrorReceived(this, std::move(error)); in ErrorReceived()
H A Dexec_plan.h141 virtual void ErrorReceived(ExecNode* input, Status error) = 0;
263 void ErrorReceived(ExecNode* input, Status error) override;
H A Dexec_plan.cc285 out->ErrorReceived(this, out == outputs_.back() ? std::move(status) : status); in ErrorIfNotOk()
302 void MapNode::ErrorReceived(ExecNode* input, Status error) { in ErrorReceived() function in arrow::compute::MapNode
304 outputs_[0]->ErrorReceived(this, std::move(error)); in ErrorReceived()
/dports/www/firefox-esr/firefox-91.8.0/dom/workers/remoteworkers/
H A DRemoteWorkerControllerChild.cpp55 mObserver->ErrorReceived(NS_ERROR_DOM_ABORT_ERR); in ActorDestroy()
84 mObserver->ErrorReceived(aError); in RecvErrorReceived()
H A DRemoteWorkerControllerParent.h68 void ErrorReceived(const ErrorValue& aValue) override;
H A DPRemoteWorkerController.ipdl30 async ErrorReceived(ErrorValue aError);
/dports/lang/spidermonkey78/firefox-78.9.0/dom/workers/remoteworkers/
H A DRemoteWorkerControllerChild.cpp55 mObserver->ErrorReceived(NS_ERROR_DOM_ABORT_ERR); in ActorDestroy()
84 mObserver->ErrorReceived(aError); in RecvErrorReceived()
H A DRemoteWorkerControllerParent.h62 void ErrorReceived(const ErrorValue& aValue) override;
H A DPRemoteWorkerController.ipdl24 async ErrorReceived(ErrorValue aError);
/dports/www/firefox/firefox-99.0/dom/workers/remoteworkers/
H A DRemoteWorkerControllerChild.cpp55 mObserver->ErrorReceived(NS_ERROR_DOM_ABORT_ERR); in ActorDestroy()
84 mObserver->ErrorReceived(aError); in RecvErrorReceived()
H A DRemoteWorkerControllerParent.h68 void ErrorReceived(const ErrorValue& aValue) override;
H A DPRemoteWorkerController.ipdl31 async ErrorReceived(ErrorValue aError);
/dports/mail/thunderbird/thunderbird-91.8.0/dom/workers/remoteworkers/
H A DRemoteWorkerControllerChild.cpp55 mObserver->ErrorReceived(NS_ERROR_DOM_ABORT_ERR); in ActorDestroy()
84 mObserver->ErrorReceived(aError); in RecvErrorReceived()
H A DRemoteWorkerControllerParent.h68 void ErrorReceived(const ErrorValue& aValue) override;
H A DPRemoteWorkerController.ipdl30 async ErrorReceived(ErrorValue aError);
/dports/audio/strawberry/strawberry-1.0.0/src/scrobbler/
H A Daudioscrobbler.cpp66 … QObject::connect(service, &ScrobblerService::ErrorMessage, this, &AudioScrobbler::ErrorReceived);
212 void AudioScrobbler::ErrorReceived(const QString &error) {
H A Daudioscrobbler.h71 void ErrorReceived(const QString &error);
/dports/databases/arrow/apache-arrow-6.0.1/docs/source/cpp/
H A Dstreaming_execution.rst105 // ErrorReceived is called by an input of this node to report an error.
108 void ErrorReceived(ExecNode* input, Status error) override {
109 outputs_[0]->ErrorReceived(this, error);
113 // It may be called with any ordering relative to InputReceived/ErrorReceived.
152 ``InputReceived``, ``ErrorReceived``, ``InputFinished`` may only be invoked by
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.Ports/src/System/IO/Ports/
H A DSerialStream.cs66 …internal event SerialErrorReceivedEventHandler ErrorReceived; // called when any runtime e… event in System.IO.Ports.SerialStream
1839 if (stream.ErrorReceived != null) in CallErrorEvents()
1842 … stream.ErrorReceived(stream, new SerialErrorReceivedEventArgs(SerialError.TXFull)); in CallErrorEvents()
1845 … stream.ErrorReceived(stream, new SerialErrorReceivedEventArgs(SerialError.RXOver)); in CallErrorEvents()
1848 … stream.ErrorReceived(stream, new SerialErrorReceivedEventArgs(SerialError.Overrun)); in CallErrorEvents()
1851 … stream.ErrorReceived(stream, new SerialErrorReceivedEventArgs(SerialError.RXParity)); in CallErrorEvents()
1854 … stream.ErrorReceived(stream, new SerialErrorReceivedEventArgs(SerialError.Frame)); in CallErrorEvents()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/sys/system/IO/ports/
H A DSerialStream.cs93 …internal event SerialErrorReceivedEventHandler ErrorReceived; // called when any runt… event in System.IO.Ports.SerialStream
1859 if (stream.ErrorReceived != null) { in CallErrorEvents()
1861 … stream.ErrorReceived(stream, new SerialErrorReceivedEventArgs(SerialError.TXFull)); in CallErrorEvents()
1864 … stream.ErrorReceived(stream, new SerialErrorReceivedEventArgs(SerialError.RXOver)); in CallErrorEvents()
1867 … stream.ErrorReceived(stream, new SerialErrorReceivedEventArgs(SerialError.Overrun)); in CallErrorEvents()
1870 … stream.ErrorReceived(stream, new SerialErrorReceivedEventArgs(SerialError.RXParity)); in CallErrorEvents()
1873 … stream.ErrorReceived(stream, new SerialErrorReceivedEventArgs(SerialError.Frame)); in CallErrorEvents()
/dports/www/firefox-esr/firefox-91.8.0/dom/workers/sharedworkers/
H A DSharedWorkerManager.h98 void ErrorReceived(const ErrorValue& aValue) override;

1234