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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/dom/
MessageChannel.idl 31 readonly attribute MessagePort port1;
MessageChannel.cpp 36 static void createChannel(MessagePort* port1, MessagePort* port2)
47 port1->entangle(channel2.release());
MessageChannel.h 45 MessagePort* port1() const { return m_port1.get(); } function in class:WebCore::MessageChannel
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8MessageChannelCustom.cpp 55 V8HiddenPropertyName::setNamedHiddenReference(wrapper, "port1", toV8(obj->port1(), info.Holder(), info.GetIsolate()));
  /external/chromium_org/third_party/WebKit/Source/core/workers/
SharedWorker.cpp 65 worker->m_port = channel->port1();
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
emu8000.h 69 unsigned long port1; /* Port usually base+0 */ member in struct:snd_emu8000
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
emu8000.h 69 unsigned long port1; /* Port usually base+0 */ member in struct:snd_emu8000
  /external/chromium/chrome/browser/extensions/
extension_message_service.h 62 static void AllocatePortIdPair(int* port1, int* port2);
extension_message_service.cc 30 // Port1 is always even, port2 is always odd.
99 void ExtensionMessageService::AllocatePortIdPair(int* port1, int* port2) {
113 *port1 = port1_id;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
serial.h 132 int port1; member in struct:serial_multiport_struct
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
serial.h 132 int port1; member in struct:serial_multiport_struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
serial.h 132 int port1; member in struct:serial_multiport_struct
  /external/ipsec-tools/src/racoon/
sockmisc.c 141 u_short port1, port2; local
162 port1 = ((struct sockaddr_in *)addr1)->sin_port;
164 if (!(port1 == IPSEC_PORT_ANY ||
166 port1 == port2))
175 port1 = ((struct sockaddr_in6 *)addr1)->sin6_port;
177 if (!(port1 == IPSEC_PORT_ANY ||
179 port1 == port2))
206 u_short port1, port2; local
227 port1 = ((struct sockaddr_in *)addr1)->sin_port;
229 if (port1 != port2
    [all...]
  /external/libpcap/
nametoaddr.c 225 pcap_nametoportrange(const char *name, int *port1, int *port2, int *proto)
242 if (pcap_nametoport(cpy, port1, proto) == 0) {
256 *port1 = p1;
gencode.c 4973 int port1, port2; local
    [all...]
  /external/chromium_org/chrome/third_party/chromevox/chromevox/injected/
api.js 89 channel_.port1.close();
96 channel_.port1.onmessage = function(event) {
126 channel_.port1.postMessage(JSON.stringify(message));
279 channel_.port1.postMessage(JSON.stringify(message));
331 channel_.port1.postMessage(JSON.stringify(message));
357 channel_.port1.postMessage(JSON.stringify(message));
414 channel_.port1.postMessage(JSON.stringify(message));
534 channel_.port1.postMessage(JSON.stringify(message));
571 channel_.port1.postMessage(JSON.stringify(msg));
mathjax.js 49 channel_.port1.onmessage = function(evt) {
63 channel_.port1.postMessage({'cmd': cmd, 'id': callbackId, 'args': args});
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
port_unittest.cc 355 Port* port1 = CreateUdpPort(kLocalAddr1); local
357 TestConnectivity("udp", port1, "udp", port2, true, true, true, true);
360 Port* port1 = CreateUdpPort(kLocalAddr1); local
363 TestConnectivity("udp", port1, StunName(ntype), port2,
368 Port* port1 = CreateUdpPort(kLocalAddr1); local
370 TestConnectivity("udp", port1, RelayName(rtype, proto), port2,
375 Port* port1 = CreateStunPort(kLocalAddr1, &nat_socket_factory1_); local
377 TestConnectivity(StunName(ntype), port1, "udp", port2, local
382 Port* port1 = CreateStunPort(kLocalAddr1, &nat_socket_factory1_); local
385 TestConnectivity(StunName(ntype1), port1, StunName(ntype2), port2 local
1020 UDPPort* port1 = CreateUdpPort(kLocalAddr1); local
1133 TCPPort* port1 = CreateTcpPort(kLocalAddr1); local
2134 UDPPort* port1 = CreateUdpPort(kLocalAddr1); local
2206 UDPPort* port1 = CreateUdpPort(kLocalAddr1); local
    [all...]
  /external/qemu/hw/
usb-hub.c 167 static void usb_hub_attach(USBPort *port1, USBDevice *dev)
169 USBHubState *s = port1->opaque;
170 USBHubPort *port = &s->ports[port1->index];
174 usb_attach(port1, NULL);
usb-ohci.c 330 static void ohci_attach(USBPort *port1, USBDevice *dev)
332 OHCIState *s = port1->opaque;
333 OHCIPort *port = &s->rhport[port1->index];
338 usb_attach(port1, NULL);
356 dprintf("usb-ohci: Attached port %d\n", port1->index);
374 dprintf("usb-ohci: Detached port %d\n", port1->index);
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/messaging/
message_service.h 109 static void AllocatePortIdPair(int* port1, int* port2);
message_service.cc 53 // Port1 is always even, port2 is always odd.
137 void MessageService::AllocatePortIdPair(int* port1, int* port2) {
159 *port1 = port1_id;
  /external/chromium_org/mojo/public/bindings/sample/
sample_service_unittests.cc 268 mojo::ScopedMessagePipeHandle port0, port1; local
269 mojo::CreateMessagePipe(&port0, &port1);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
android_unittest.py 253 port1 = android.AndroidPort(MockSystemHost(executive=mock_executive),
257 self.assertEqual(0, port1.driver_cmd_line().count('--create-stdin-fifo'))
  /external/kernel-headers/original/linux/
serial_core.h 387 int uart_match_port(struct uart_port *port1, struct uart_port *port2);

Completed in 839 milliseconds

1 2