HomeSort by relevance Sort by last modified time
    Searched defs:port (Results 1 - 25 of 340) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/quake/quake/src/WinQuake/
vregset.cpp 32 void loutportb (int port, int val)
34 printf ("port, val: %x %x\n", port, val);
45 int port, temp0, temp1, temp2; local
55 port = *pregset++;
56 outportb (port, *pregset++);
60 port = *pregset++;
63 temp2 = inportb (port);
66 outportb (port, temp2);
70 port = *pregset++;
    [all...]
  /external/webkit/WebCore/workers/
SharedWorker.h 50 MessagePort* port() const { return m_port.get(); } function in class:WebCore::SharedWorker
WorkerLocation.cpp 49 return m_url.port() ? m_url.host() + ":" + String::number((static_cast<int>(m_url.port()))) : m_url.host();
57 String WorkerLocation::port() const function in class:WebCore::WorkerLocation
59 return m_url.port() ? String::number(static_cast<int>(m_url.port())) : "";
  /system/core/adb/
console.c 8 int fd, port; local
10 port = adb_get_emulator_console_port();
11 if (port < 0) {
12 if (port == -2)
18 fd = socket_loopback_client( port, SOCK_STREAM );
20 fprintf(stderr, "error: could not connect to TCP port %d\n", port);
  /system/core/toolbox/
smd.c 9 int fd, len, r, port = 0; local
15 port = atoi(argv[0] + 1);
20 sprintf(devname,"/dev/smd%d",port);
  /bionic/libc/inet/
bindresvport.c 41 static short port; local
54 if (port == 0) {
55 port = START_PORT + (getpid() % NUM_PORTS);
58 for (nn = NUM_PORTS; nn > 0; nn--, port++)
60 if (port == END_PORT)
61 port = START_PORT;
63 sin->sin_port = htons(port);
  /external/webkit/WebCore/platform/network/
ProtectionSpace.cpp 50 ProtectionSpace::ProtectionSpace(const String& host, int port, ProtectionSpaceServerType serverType, const String& realm, ProtectionSpaceAuthenticationScheme authenticationScheme)
52 , m_port(port)
65 int ProtectionSpace::port() const function in class:WebCore::ProtectionSpace
110 if (a.port() != b.port())
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/
driver_test.py 35 """Simple test client for the port/Driver interface."""
39 import port namespace
42 def run_tests(port, options, tests):
45 driver = port.start_driver(image_path, None)
47 uri = port.filename_to_uri(os.path.join(port.layout_tests_dir(), t))
76 p = port.get(options.platform, options)
  /external/webkit/WebKitTools/Scripts/webkitpy/steps/
abstractstep.py 39 def _run_script(self, script_name, quiet=False, port=WebKitPort):
41 # FIXME: This should use self.port()
42 self._tool.executive.run_and_throw_if_fail(port.script_path(script_name), quiet)
44 # FIXME: The port should live on the tool.
45 def port(self): member in class:AbstractStep
48 self._port = WebKitPort.port(self._options.port)
  /bionic/libc/netbsd/net/
getservent.c 58 int port; local
70 q = p + 1 + namelen + 3; /* skip name + port + proto */
93 /* copy name + port + setup protocol */
99 port = ((((unsigned char*)p)[0] << 8) |
102 rs->servent.s_port = htons(port);
104 p += 4; /* skip port(2) + proto(1) + aliascount(1) */
  /dalvik/libcore/security/src/main/java/java/security/cert/
LDAPCertStoreParameters.java 26 // Default LDAP server port number
31 // LDAP server port number for this cert store
32 private final int port; field in class:LDAPCertStoreParameters
36 * server name and port.
40 * @param port
41 * the port.
45 public LDAPCertStoreParameters(String serverName, int port) {
46 this.port = port;
57 * The default parameters are server name "localhost" and port 389
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
RequestTargetHost.java 80 int port = ((HttpInetConnection) conn).getRemotePort(); local
82 targethost = new HttpHost(address.getHostName(), port);
  /external/dropbear/
tcp-accept.c 69 unsigned int port = 0; local
73 /* host to connect, port to connect */
75 port = tcpinfo->sendport;
79 /* address that was connected, port that was connected */
81 port = tcpinfo->listenport;
85 buf_putint(ses.writepayload, port);
89 /* originator port */
fake-rfc2553.c 119 addrinfo *malloc_ai(int port, u_long addr, const struct addrinfo *hints)
134 ((struct sockaddr_in *)(ai)->ai_addr)->sin_port = port;
157 long int port; local
160 port = 0;
164 port = strtol(servname, &cp, 10);
165 if (port > 0 && port <= 65535 && *cp == '\0')
166 port = htons(port);
168 port = sp->s_port
    [all...]
  /external/iptables/extensions/
libipt_MASQUERADE.c 18 " --to-ports <port>[-<port>]\n"
19 " Port (range) to map to.\n\n",
44 int port; local
48 port = atoi(arg);
49 if (port <= 0 || port > 65535)
50 exit_error(PARAMETER_PROBLEM, "Port `%s' not valid\n", arg);
54 mr->range[0].min.tcp.port
55 = mr->range[0].max.tcp.port
    [all...]
libipt_REDIRECT.c 18 " --to-ports <port>[-<port>]\n"
19 " Port (range) to map to.\n\n",
44 int port; local
51 port = atoi(arg);
52 if (port == 0 || port > 65535)
53 exit_error(PARAMETER_PROBLEM, "Port `%s' not valid\n", arg);
57 mr->range[0].min.tcp.port
58 = mr->range[0].max.tcp.port
    [all...]
  /external/libxml2/include/libxml/
uri.h 39 int port; /* the port number */ member in struct:_xmlURI
  /external/webkit/WebCore/bindings/js/
JSMessagePortCustom.cpp 48 // If we have a locally entangled port, we can directly mark it as reachable. Ports that are remotely entangled are marked in-use by markActiveObjectsForContext().
107 RefPtr<MessagePort> port = toMessagePort(value); local
108 if (!port) {
112 portArray[i] = port.release();
  /external/webkit/WebCore/page/
Location.cpp 83 // "The hostname property is the concatenation of the host and port properties, separated by a colon."
85 return url.port() ? url.host() + ":" + String::number((static_cast<int>(url.port()))) : url.host();
96 String Location::port() const function in class:WebCore::Location
102 return url.port() ? String::number(static_cast<int>(url.port())) : "";
  /external/webkit/WebKit/chromium/src/
WebSharedWorkerImpl.cpp 87 RefPtr<MessagePort> port = MessagePort::create(*context); local
88 port->entangle(channel.release());
92 workerContext->toSharedWorkerContext()->dispatchEvent(createConnectEvent(port));
  /external/webkit/WebKit/win/
WebSecurityOrigin.cpp 119 HRESULT STDMETHODCALLTYPE WebSecurityOrigin::port( function in class:WebSecurityOrigin
125 *result = m_securityOrigin->port();
  /bionic/libc/kernel/common/linux/
kernelcapi.h 26 unsigned int port; member in struct:kcapi_carddef
  /external/apache-http/src/org/apache/http/cookie/
CookieOrigin.java 46 private final int port; field in class:CookieOrigin
50 public CookieOrigin(final String host, int port, final String path, boolean secure) {
60 if (port < 0) {
61 throw new IllegalArgumentException("Invalid port: " + port);
68 this.port = port;
86 return this.port;
102 buffer.append(Integer.toString(this.port));
  /external/apache-http/src/org/apache/http/impl/cookie/
RFC2965PortAttributeHandler.java 45 * <tt>"Port"</tt> cookie attribute handler for RFC 2965 cookie spec.
54 * Parses the given Port attribute value (e.g. "8000,8001,8002")
57 * @param portValue port attribute value
71 throw new MalformedCookieException ("Invalid Port attribute.");
76 throw new MalformedCookieException ("Invalid Port "
83 * Returns <tt>true</tt> if the given port exists in the given
86 * @param port port of host where cookie was received from or being sent to.
87 * @param ports port list
88 * @return true returns <tt>true</tt> if the given port exists i
131 int port = origin.getPort(); local
154 int port = origin.getPort(); local
    [all...]
  /external/clearsilver/util/
neo_server.h 33 int port; member in struct:_nserver

Completed in 1113 milliseconds

1 2 3 4 5 6 7 8 91011>>