Home
last modified time | relevance | path

Searched refs:MemcachedConnection (Results 1 – 4 of 4) sorted by relevance

/third_party/nghttp2/src/
Dshrpx_memcached_connection.cc44 auto mconn = static_cast<MemcachedConnection *>(conn->data); in timeoutcb()
61 auto mconn = static_cast<MemcachedConnection *>(conn->data); in readcb()
73 auto mconn = static_cast<MemcachedConnection *>(conn->data); in writecb()
85 auto mconn = static_cast<MemcachedConnection *>(conn->data); in connectcb()
99 MemcachedConnection::MemcachedConnection(const Address *addr, in MemcachedConnection() function in shrpx::MemcachedConnection
106 do_read_(&MemcachedConnection::noop),
107 do_write_(&MemcachedConnection::noop),
118 MemcachedConnection::~MemcachedConnection() { disconnect(); } in ~MemcachedConnection()
132 void MemcachedConnection::disconnect() { in disconnect()
148 do_read_ = do_write_ = &MemcachedConnection::noop; in disconnect()
[all …]
Dshrpx_memcached_connection.h98 class MemcachedConnection {
100 MemcachedConnection(const Address *addr, struct ev_loop *loop,
103 ~MemcachedConnection();
139 std::function<int(MemcachedConnection &)> do_read_, do_write_;
Dshrpx_memcached_dispatcher.h45 class MemcachedConnection; variable
58 std::unique_ptr<MemcachedConnection> mconn_;
Dshrpx_memcached_dispatcher.cc40 mconn_(std::make_unique<MemcachedConnection>(addr, loop_, ssl_ctx, in MemcachedDispatcher()