Home
last modified time | relevance | path

Searched refs:DispatcherBase (Results 1 – 9 of 9) sorted by relevance

/third_party/node/tools/inspector_protocol/lib/
DDispatcherBase_cpp.template7 //#include "DispatcherBase.h"
63 const char DispatcherBase::kInvalidParamsString[] = "Invalid parameters";
65 DispatcherBase::WeakPtr::WeakPtr(DispatcherBase* dispatcher) : m_dispatcher(dispatcher) { }
67 DispatcherBase::WeakPtr::~WeakPtr()
73 DispatcherBase::Callback::Callback(std::unique_ptr<DispatcherBase::WeakPtr> backendImpl, int callId…
79 DispatcherBase::Callback::~Callback() = default;
81 void DispatcherBase::Callback::dispose()
86 void DispatcherBase::Callback::sendIfActive(std::unique_ptr<protocol::DictionaryValue> partialMessa…
94 void DispatcherBase::Callback::fallThroughIfActive()
102 DispatcherBase::DispatcherBase(FrontendChannel* frontendChannel)
[all …]
DDispatcherBase_h.template54 class {{config.lib.export_macro}} DispatcherBase {
55 PROTOCOL_DISALLOW_COPY(DispatcherBase);
60 explicit WeakPtr(DispatcherBase*);
62 DispatcherBase* get() { return m_dispatcher; }
66 DispatcherBase* m_dispatcher;
86 explicit DispatcherBase(FrontendChannel*);
87 virtual ~DispatcherBase();
110 void registerBackend(const String& name, std::unique_ptr<protocol::DispatcherBase>);
119 protocol::DispatcherBase* findDispatcher(const String& method);
122 std::unordered_map<String, std::unique_ptr<protocol::DispatcherBase>> m_dispatchers;
/third_party/node/deps/undici/src/lib/
Ddispatcher-base.js17 class DispatcherBase extends Dispatcher { class
192 module.exports = DispatcherBase
Dagent.js5 const DispatcherBase = require('./dispatcher-base') constant
27 class Agent extends DispatcherBase {
Dproxy-agent.js7 const DispatcherBase = require('./dispatcher-base') constant
41 class ProxyAgent extends DispatcherBase {
Dpool-base.js3 const DispatcherBase = require('./dispatcher-base') constant
21 class PoolBase extends DispatcherBase {
Dclient.js14 const DispatcherBase = require('./dispatcher-base') constant
129 class Client extends DispatcherBase {
/third_party/node/tools/inspector_protocol/templates/
DTypeBuilder_cpp.template218 class DispatcherImpl : public protocol::DispatcherBase {
221 : DispatcherBase(frontendChannel)
270 …e}}CallbackImpl : public Backend::{{command_name_title}}Callback, public DispatcherBase::Callback {
272 …{{command_name_title}}CallbackImpl(std::unique_ptr<DispatcherBase::WeakPtr> backendImpl, int callI…
273 : DispatcherBase::Callback(std::move(backendImpl), callId, method, message) { }
348 std::unique_ptr<DispatcherBase::WeakPtr> weak = weakPtr();
388 std::unique_ptr<DispatcherBase::WeakPtr> weak = weakPtr();
/third_party/node/deps/undici/
Dundici.js5667 var DispatcherBase = class extends Dispatcher { class
5810 module2.exports = DispatcherBase;
5907 var DispatcherBase = require_dispatcher_base();
5923 var PoolBase = class extends DispatcherBase {
7150 var DispatcherBase = require_dispatcher_base();
7251 var Client = class extends DispatcherBase {
8950 var DispatcherBase = require_dispatcher_base();
8967 var Agent = class extends DispatcherBase {