HomeSort by relevance Sort by last modified time
    Searched defs:Port (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/url/src/
URLSegments.h 47 Port,
67 // Note that this can get a little funny for the port, query, and fragment
73 // delimited components that is present (the port and query) and one that
84 // *Port: 10 11 <-
97 URLComponent port; member in class:WTF::URLSegments
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
port.cc 28 #include "talk/p2p/base/port.h"
102 // The delay before we begin checking if this port is useless.
127 Port::Port(talk_base::Thread* thread, const std::string& type,
144 LOG_J(LS_INFO, this) << "Port created";
147 Port::~Port() {
163 Connection* Port::GetConnection(const talk_base::SocketAddress& remote_addr) {
171 void Port::AddAddress(const talk_base::SocketAddress& address,
190 void Port::AddConnection(Connection* conn)
    [all...]
port.h 76 class Port : public talk_base::MessageHandler, public sigslot::has_slots<> {
78 Port(talk_base::Thread* thread, const std::string& type,
81 virtual ~Port();
83 // The thread on which this port performs its I/O.
86 // The factory used to create the sockets of this port.
92 // Each port is identified by a name (for debugging purposes).
96 // In order to establish a connection to this Port (so that real data can be
111 // A value in [0,1] that indicates the preference for this port versus other
116 // Identifies the port type.
119 // Identifies network that this port was allocated on
279 Port* port() { return port_; } function in class:cricket::Connection
280 const Port* port() const { return port_; } function in class:cricket::Connection
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_test.cc 144 cmd_line.AppendSwitchASCII("port", StringPrintf("%d", kPort_));
177 static int Port() {
308 SafeBrowsingTestServer::Port());
449 void WaitTillServerReady(const char* host, int port) {
452 host, port, kDBResetPath));
466 net::URLRequestStatus::Status FetchDBToVerify(const char* host, int port,
472 host, port, kDBVerifyPath, test_step));
477 net::URLRequestStatus::Status FetchUrlsToVerify(const char* host, int port,
481 host, port, kUrlVerifyPath, test_step));
488 net::URLRequestStatus::Status VerifyTestComplete(const char* host, int port,
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
base.py 30 """Abstract base class of Port-specific entrypoints for the layout tests
31 test infrastructure (the Port and Driver classes)."""
56 from webkitpy.layout_tests.port import apache_http_server
57 from webkitpy.layout_tests.port import config as port_config
58 from webkitpy.layout_tests.port import http_lock
59 from webkitpy.layout_tests.port import http_server
60 from webkitpy.layout_tests.port import test_files
61 from webkitpy.layout_tests.port import websocket_server
83 class Port(object):
84 """Abstract class for Port-specific hooks for the layout_test package.""
    [all...]
  /packages/apps/Phone/src/com/android/phone/sip/
SipEditor.java 85 Port(R.string.port, R.string.default_port, R.string.default_port),
333 case Port:
341 } else if (key == PreferenceKey.Port) {
342 int port = Integer.parseInt(PreferenceKey.Port.getValue()); local
343 if ((port < 1000) || (port > 65534)) {
424 .setPort(Integer.parseInt(PreferenceKey.Port.getValue()))
  /external/mdnsresponder/mDNSCore/
uDNS.c 104 mDNSexport DNSServer *mDNS_AddDNSServer(mDNS *const m, const domainname *d, const mDNSInterfaceID interface, const mDNSAddr *addr, const mDNSIPPort port, mDNSBool scoped, mDNSu32 timeout)
121 while (*p) // Check if we already have this {interface,address,port,domain} tuple registered
124 mDNSSameAddress(&(*p)->addr, addr) && mDNSSameIPPort((*p)->port, port) && SameDomainName(&(*p)->domain, d))
126 if (!((*p)->flags & DNSServer_FlagDelete)) debugf("Note: DNS Server %#a:%d for domain %##s (%p) registered more than once", addr, mDNSVal16(port), d->c, interface);
148 (*p)->port = port;
184 &q->qDNSServer->addr, mDNSVal16(q->qDNSServer->port), q->qDNSServer->domain.c, q, q->qname.c, DNSTypeName(q->qtype),
223 mDNSVal16(new->port));
236 q->qname.c, DNSTypeName(q->qtype), &q->qDNSServer->addr, mDNSVal16(q->qDNSServer->port), q->qDNSServer->domain.c)
1948 mDNSIPPort port = rr->resrec.rdata->u.srv.port; local
    [all...]
mDNSEmbeddedAPI.h 274 typedef mDNSOpaque16 mDNSIPPort; // An IP port is a two-byte opaque identifier (not an integer)
411 // using a dynamic port number restarts, the clients will not have stale information for more than
487 mDNSIPPort Port;
711 typedef packedstruct { mDNSu16 priority; mDNSu16 weight; mDNSIPPort port; domainname target; } rdataSRV; variable
1068 mDNSIPPort port; member in struct:DNSServer
1489 mDNSIPPort port; member in struct:DomainAuthInfo
1595 mDNSIPPort port; \/\/ Port where this service can be accessed member in struct:__anon9620
    [all...]

Completed in 298 milliseconds