HomeSort by relevance Sort by last modified time
    Searched refs:port (Results 1 - 25 of 1872) 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...]
  /prebuilts/gcc/linux-x86/host/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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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)
  /external/openssh/regress/
portnum.sh 4 tid="port number parsing"
7 port=$1
8 verbose "$tid: invalid port $port"
9 if ${SSH} -F $OBJ/ssh_proxy -p $port somehost true 2>/dev/null ; then
10 fail "$tid accepted invalid port $port"
14 port=$1
15 verbose "$tid: valid port $port"
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowIntentFilterAuthorityEntry.java 10 private int port; field in class:ShadowIntentFilterAuthorityEntry
12 public void __constructor__(String host, String port) {
14 if (port == null) {
15 this.port = -1;
17 this.port = Integer.parseInt(port);
28 return port;
  /bionic/libc/kernel/arch-x86/asm/
io_32.h 30 #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); }
31 #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 30 #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); }
31 #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...]
  /prebuilts/ndk/4/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...]
  /prebuilts/ndk/4/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...]
  /prebuilts/ndk/6/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...]
  /prebuilts/ndk/7/platforms/android-14/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...]
  /prebuilts/ndk/7/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...]
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/
io_32.h 30 #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); }
31 #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...]
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/
io_32.h 30 #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); }
31 #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...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/include/exynos/
Exynos_OMX_Macros.h 54 * Port Specific
59 #define CHECK_PORT_BEING_FLUSHED(port) (port->bIsPortFlushed == OMX_TRUE)
60 #define CHECK_PORT_BEING_DISABLED(port) (port->bIsPortDisabled == OMX_TRUE)
61 #define CHECK_PORT_BEING_FLUSHED_OR_DISABLED(port) ((port->bIsPortFlushed == OMX_TRUE) || (port->bIsPortDisabled == OMX_TRUE))
62 #define CHECK_PORT_ENABLED(port) (port->portDefinition.bEnabled == OMX_TRUE
    [all...]
  /external/libsepol/src/
port_record.c 37 ERR(handle, "out of memory, could not create " "port key");
63 const sepol_port_t * port,
68 (handle, port->low, port->high, port->proto, key_ptr) < 0) {
70 ERR(handle, "could not extract key from port %s %d:%d",
71 sepol_port_get_proto_str(port->proto),
72 port->low, port->high);
85 int sepol_port_compare(const sepol_port_t * port, const sepol_port_key_t * key
    [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...]

Completed in 1337 milliseconds

1 2 3 4 5 6 7 8 91011>>