OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ProtocolHandler
(Results
1 - 4
of
4
) sorted by null
/system/webservd/libwebserv/
protocol_handler.h
32
//
ProtocolHandler
allows consumers to add request handlers on a given protocol.
33
// When the
ProtocolHandler
is connected, allows users to read port and protocol
35
class LIBWEBSERV_EXPORT
ProtocolHandler
{
37
ProtocolHandler
() = default;
38
virtual ~
ProtocolHandler
() = default;
40
// Returns true if the protocol handler object is backed by a
ProtocolHandler
85
// The handler registration information is stored inside
ProtocolHandler
and
109
DISALLOW_COPY_AND_ASSIGN(
ProtocolHandler
);
/external/autotest/client/common_lib/cros/tendo/
webserver_config.py
13
ProtocolHandler
= collections.namedtuple('
ProtocolHandler
',
18
"""Construct
ProtocolHandler
objects for a number of handlers.
31
ProtocolHandler
(name='%s%d' % (handler_name_prefix, i),
66
@param protocol_handlers: list of
ProtocolHandler
objects.
/system/webservd/webservd/
config.cc
59
Config::
ProtocolHandler
* handler_config,
95
Config::
ProtocolHandler
::~
ProtocolHandler
() {
168
Config::
ProtocolHandler
handler_config;
protocol_handler.cc
49
auto handler = reinterpret_cast<
ProtocolHandler
*>(cls);
87
ProtocolHandler
::
ProtocolHandler
(const std::string& name,
93
ProtocolHandler
::~
ProtocolHandler
() {
97
std::string
ProtocolHandler
::AddRequestHandler(
107
bool
ProtocolHandler
::RemoveRequestHandler(const std::string& handler_id) {
111
std::string
ProtocolHandler
::FindRequestHandler(
155
bool
ProtocolHandler
::Start(Config::
ProtocolHandler
* config)
[
all
...]
Completed in 112 milliseconds