HomeSort by relevance Sort by last modified time
    Searched refs:handler_config (Results 1 - 9 of 9) sorted by null

  /system/webservd/webservd/
server.cc 101 for (auto& handler_config : config_.protocol_handlers)
102 CreateProtocolHandler(&handler_config);
121 for (auto& handler_config : config_.protocol_handlers) {
122 VLOG(1) << "Firewall request: Protocol Handler = " << handler_config.name
123 << ", Port = " << handler_config.port << ", Interface = "
124 << handler_config.interface_name;
126 handler_config.port,
127 handler_config.interface_name,
128 base::Bind(&OnFirewallSuccess, handler_config.interface_name,
129 handler_config.port)
    [all...]
config_unittest.cc 113 for (const auto& handler_config : config.protocol_handlers) {
114 if (handler_config.name == "http") {
115 EXPECT_EQ(80u, handler_config.port);
116 EXPECT_FALSE(handler_config.use_tls);
117 EXPECT_TRUE(handler_config.certificate.empty());
118 EXPECT_TRUE(handler_config.certificate_fingerprint.empty());
119 EXPECT_TRUE(handler_config.private_key.empty());
120 } else if (handler_config.name == "https") {
121 EXPECT_EQ(443u, handler_config.port);
122 EXPECT_TRUE(handler_config.use_tls)
    [all...]
config.cc 59 Config::ProtocolHandler* handler_config,
78 handler_config->port = port;
83 handler_config->use_tls = use_tls;
88 handler_config->interface_name = interface_name;
168 Config::ProtocolHandler handler_config; local
169 handler_config.name = name;
170 if (!LoadHandlerConfig(handler_dict, &handler_config, error)) {
180 config->protocol_handlers.push_back(std::move(handler_config));
main.cc 126 for (auto& handler_config : config.protocol_handlers) {
127 if (!handler_config.interface_name.empty()) {
129 webservd::CreateNetworkInterfaceSocket(handler_config.interface_name);
132 << handler_config.interface_name;
135 handler_config.socket_fd = socket_fd;
server.h 71 void CreateProtocolHandler(Config::ProtocolHandler* handler_config);
  /prebuilts/gdb/darwin-x86/lib/python2.7/logging/
config.py 525 handler_config = handlers[name]
526 level = handler_config.get('level', None)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/logging/
config.py 525 handler_config = handlers[name]
526 level = handler_config.get('level', None)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
config.py 525 handler_config = handlers[name]
526 level = handler_config.get('level', None)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
config.py 525 handler_config = handlers[name]
526 level = handler_config.get('level', None)
    [all...]

Completed in 506 milliseconds