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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/content/test/data/workers/
messageport_worker.js 2 var port = event.ports[0];
3 port.postMessage("Worker connected.");
4 port.onmessage = function(event2) {
5 port.postMessage("Worker got a port.");
6 var anotherport = event2.data.port;
9 anotherport.postMessage("Worker got a message via the passed port.");
  /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/chromium_org/net/tools/fetch/
http_server.cc 7 HttpServer::HttpServer(std::string ip, int port)
8 : 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...]
  /frameworks/base/packages/services/Proxy/com/android/net/
IProxyPortListener.aidl 21 oneway void setProxyPort(int port);
  /external/chromium_org/base/mac/
scoped_mach_port.cc 10 ScopedMachPort::ScopedMachPort(mach_port_t port) : port_(port) {
17 void ScopedMachPort::reset(mach_port_t port) {
21 port_ = port;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/config/
irc.py 27 port = 6667 variable
  /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;
  /external/chromium_org/mojo/system/
message_pipe.cc 30 unsigned MessagePipe::GetPeerPort(unsigned port) {
31 DCHECK(port == 0 || port == 1);
32 return port ^ 1;
35 void MessagePipe::CancelAllWaiters(unsigned port) {
36 DCHECK(port == 0 || port == 1);
39 DCHECK(endpoints_[port].get());
40 endpoints_[port]->CancelAllWaiters();
43 void MessagePipe::Close(unsigned port) {
    [all...]
  /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...]
  /prebuilts/ndk/9/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...]

Completed in 916 milliseconds

1 2 3 4 5 6 7 8 91011>>