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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Tools/Scripts/webkitpy/common/config/
irc.py 30 port=6667 variable
  /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/Tools/Scripts/webkitpy/layout_tests/port/
port_testcase.py 29 """Unit testing base class for Port implementations."""
48 """Tests the WebKit port implementation."""
50 """Override to return the class object of the port to be tested,
51 or None if a valid port object cannot be constructed on the specified
57 when we can create a full, valid port object."""
65 port = self.make_port()
66 if not port:
70 self.assertEqual(port.default_worker_model(), 'processes')
72 self.assertEqual(port.default_worker_model(), 'threads')
75 port = self.make_port(
    [all...]
chromium_gpu_unittest.py 32 from webkitpy.layout_tests.port import factory
55 # test that we got the right port
61 port = chromium_gpu.get(platform=platform, port_name=input_name,
64 port = chromium_gpu.get(port_name=port_name, options=mock_options)
65 self.assertTrue(port._options.accelerated_compositing)
66 self.assertTrue(port._options.accelerated_2d_canvas)
67 self.assertEqual(port.default_child_processes(), 1)
68 self.assertEqual(port._options.builder_name, 'foo - GPU')
70 self.assertTrue(port.name().startswith(port_name))
73 paths = port.baseline_search_path(
    [all...]
base_unittest.py 49 output = "OUTPUT %s %s %s" % (base.Port._WDIFF_DEL, base.Port._WDIFF_ADD, base.Port._WDIFF_END)
50 html = base.Port()._format_wdiff_output_as_html(output)
55 port = base.Port()
56 port._path_to_wdiff = lambda: "/path/to/wdiff"
57 command = port._wdiff_command("/actual/path", "/expected/path")
76 port = base.Port(executive=executive_mock.MockExecutive2(exception=OSError)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
io.h 27 port numbers in the range [FROM,FROM+NUM-1]. Otherwise, turn I/O
37 access any I/O port is granted. This call requires root
44 inb (unsigned short int port)
48 __asm__ __volatile__ ("inb %w1,%0":"=a" (_v):"Nd" (port));
53 inb_p (unsigned short int port)
57 __asm__ __volatile__ ("inb %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port));
62 inw (unsigned short int port)
66 __asm__ __volatile__ ("inw %w1,%0":"=a" (_v):"Nd" (port));
71 inw_p (unsigned short int port)
75 __asm__ __volatile__ ("inw %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port));
    [all...]
  /libcore/luni/src/main/java/java/net/
InetSocketAddress.java 24 * This class represents a socket endpoint described by a IP address and a port
34 private final int port; field in class:InetSocketAddress
43 this.port = -1;
47 * Creates a socket endpoint with the given port number {@code port} and
48 * no specified address. The range for valid port numbers is between 0 and
51 * @param port
52 * the specified port number to which this socket is bound.
54 public InetSocketAddress(int port) {
55 this((InetAddress) null, port);
    [all...]
  /external/grub/netboot/
linux-asm-io.h 19 * the two short jumps: using outb's to a nonexistent port seems
22 * On the other hand, I'd like to be sure of a non-existent port:
69 extern void __out##s(unsigned x value, unsigned short port); \
70 extern inline void __out##s(unsigned x value, unsigned short port) {
76 __OUT1(s,x) __OUT2(s,s1,"w") : : "a" (value), "d" (port)); } \
77 __OUT1(s##c,x) __OUT2(s,s1,"") : : "a" (value), "id" (port)); } \
78 __OUT1(s##_p,x) __OUT2(s,s1,"w") : : "a" (value), "d" (port)); SLOW_DOWN_IO; } \
79 __OUT1(s##c_p,x) __OUT2(s,s1,"") : : "a" (value), "id" (port)); SLOW_DOWN_IO; }
82 extern unsigned x __in##s(unsigned short port); \
83 extern inline unsigned x __in##s(unsigned short port) { unsigned x _v
    [all...]
  /external/chromium/net/tools/fetch/
http_server.cc 8 HttpServer::HttpServer(std::string ip, int port)
9 : ALLOW_THIS_IN_INITIALIZER_LIST(session_(new HttpSession(ip, port))) {
  /external/kernel-headers/original/asm-arm/
ide.h 29 #define __ide_mm_insw(port,addr,len) readsw(port,addr,len)
30 #define __ide_mm_insl(port,addr,len) readsl(port,addr,len)
31 #define __ide_mm_outsw(port,addr,len) writesw(port,addr,len)
32 #define __ide_mm_outsl(port,addr,len) writesl(port,addr,len)
  /bionic/libc/kernel/arch-x86/asm/
io_32.h 25 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(value, port); } static inline unsigned type in##bwl(int port) { return in##bwl##_local(port); }
26 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type (…)
    [all...]
  /development/ndk/platforms/android-9/arch-x86/include/asm/
io_32.h 25 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(value, port); } static inline unsigned type in##bwl(int port) { return in##bwl##_local(port); }
26 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type (…)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/
io_32.h 25 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(value, port); } static inline unsigned type in##bwl(int port) { return in##bwl##_local(port); }
26 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type (…)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/
io_32.h 25 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(value, port); } static inline unsigned type in##bwl(int port) { return in##bwl##_local(port); }
26 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type (…)
    [all...]
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/asm/
io_32.h 25 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(value, port); } static inline unsigned type in##bwl(int port) { return in##bwl##_local(port); }
26 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type (…)
    [all...]
  /external/nist-sip/java/gov/nist/core/
HostPort.java 33 * Holds the hostname:port.
52 /** port field
55 protected int port; field in class:HostPort
62 port = -1; // marker for not set.
77 if (port != -1)
78 buffer.append(COLON).append(port);
92 return port == that.port && host.equals(that.host);
102 /** get the port field
106 return port;
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpServerSocket.java 32 private int port = -1; field in class:Support_HttpServerSocket
42 if (port == -1) {
64 public void setPort(int port) {
65 this.port = port;
69 instance = new ServerSocket(port);
  /libcore/luni/src/main/java/javax/net/
DefaultServerSocketFactory.java 32 public ServerSocket createServerSocket(int port) throws IOException {
33 return new ServerSocket(port);
37 public ServerSocket createServerSocket(int port, int backlog) throws IOException {
38 return new ServerSocket(port, backlog);
42 public ServerSocket createServerSocket(int port, int backlog, InetAddress iAddress)
44 return new ServerSocket(port, backlog, iAddress);
DefaultSocketFactory.java 39 public Socket createSocket(String host, int port) throws IOException, UnknownHostException {
40 return new Socket(host, port);
44 public Socket createSocket(String host, int port, InetAddress localHost, int localPort)
46 return new Socket(host, port, localHost, localPort);
50 public Socket createSocket(InetAddress host, int port) throws IOException {
51 return new Socket(host, port);
55 public Socket createSocket(InetAddress address, int port, InetAddress localAddress,
57 return new Socket(address, port, localAddress, localPort);
  /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);
  /external/bluetooth/bluez/serial/
port.c 59 #include "port.h"
111 struct serial_port *port = l->data; local
115 if (port->uuid && !strcasecmp(port->uuid, pattern))
116 return port;
118 if (endptr && *endptr == '\0' && port->channel == channel)
119 return port;
121 if (port->dev && !strcmp(port->dev, pattern))
122 return port;
215 struct serial_port *port = user_data; local
261 struct serial_port *port = user_data; local
303 struct serial_port *port = user_data; local
362 struct serial_port *port = user_data; local
455 struct serial_port *port; local
473 struct serial_port *port; local
518 struct serial_port *port; local
583 struct serial_port *port; local
    [all...]
  /bionic/libc/kernel/arch-sh/asm/hd64465/
gpio.h 17 #define HD64465_GPIO_PORTPIN(port,pin) (((port)-'A')<<3|(pin))
  /development/tools/emulator/opengl/shared/OpenglCodecCommon/
UnixStream.h 24 virtual int listen(unsigned short port);
26 virtual int connect(unsigned short port);
  /external/iptables/include/net/netfilter/
nf_conntrack_tuple.h 38 __be16 port; member in struct:nf_conntrack_man_proto::__anon6626
41 __be16 port; member in struct:nf_conntrack_man_proto::__anon6627
47 __be16 port; member in struct:nf_conntrack_man_proto::__anon6629
50 __be16 port; member in struct:nf_conntrack_man_proto::__anon6630
79 __be16 port; member in struct:nf_conntrack_tuple::__anon6632::__anon6633::__anon6634
82 __be16 port; member in struct:nf_conntrack_tuple::__anon6632::__anon6633::__anon6635
88 __be16 port; member in struct:nf_conntrack_tuple::__anon6632::__anon6633::__anon6637
91 __be16 port; member in struct:nf_conntrack_tuple::__anon6632::__anon6633::__anon6638
  /external/nist-sip/java/gov/nist/core/net/
DefaultNetworkLayer.java 69 public ServerSocket createServerSocket(int port, int backlog,
71 return new ServerSocket(port, backlog, bindAddress);
74 public Socket createSocket(InetAddress address, int port)
76 return new Socket(address, port);
83 public DatagramSocket createDatagramSocket(int port, InetAddress laddr)
88 MulticastSocket ds = new MulticastSocket( port );
94 } else return new DatagramSocket(port, laddr);
98 public SSLServerSocket createSSLServerSocket(int port, int backlog,
101 port, backlog, bindAddress);
105 public SSLSocket createSSLSocket(InetAddress address, int port)
    [all...]

Completed in 537 milliseconds

1 2 3 4 5 6 7 8 91011>>